/* Font Sizes */
/* Standard Specification is for 1000px screen width !! */ 
* {
    box-sizing: border-box;
	/*margin: 0;*/
}

html,body {
	height: 100%;
    font-size: 15px;	/*standardise to 1em=16px */
    line-height: 1.2; 	/* multiple of the font size standard line-height */
}

body{
	width:100%;
	margin:0;
	/*color:#fff;*/
	font-family:'SmytheSans-Thin', sans-serif;
    -ms-text-size-adjust: 100%; /* 2 */
    -webkit-text-size-adjust: 100%; /* 2 */
	/*background-color:#E8FFFB;*/
	-webkit-font-smoothing:antialiased;
	-moz-osx-font-smoothing:grayscale;
}
	
h1 { font-size: 150%;
    line-height: 1.2;
    text-align: center;
	/*font-variant:small-caps;*/
	font-weight:bold;
	margin: 0 0;
	padding: 10px 0px;
	}

h2 { font-size: 130%;
    line-height: 1.2;
    text-align: center;
	/*font-variant:small-caps;*/
	font-weight:bold;
	margin: 0 0;
	padding: 10px 0px;
	}
	
h3 { font-size: 100%;
	line-height: 1.2;
    text-align: center;
	/*font-variant:small-caps;*/
	font-weight:bold;
	margin: 0 0;
	padding: 5px 0px;
	}
	
.clear{
clear: both;
display:block;
}

.AdminMaxCellSize
{
	max-height:200px;
	overflow:hidden;
}

@media only screen and (min-width:768px){
	body {
		font-size:16px;
	}
}


