﻿
/* Must be at the top of your stylesheet*/
html {
-webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
-webkit-text-size-adjust: 100%;
-ms-text-size-adjust: 100%;
}


/* Basics */
/*========*/

/* forces the vertical scrollbar for a consistent page width */
html {
	overflow-y:scroll; 
}

/* allows LT IE9 to style HTML5 elements */
article,aside,details,figcaption,figure,
footer,header,hgroup,menu,nav,section { 
    display:block;
}

/* use em for font sizing to cater for different mobile screen densities */

body {
	font-size:0.9em;
	font-family: "Malgun Gothic", "Lucida Sans", Arial, sans-serif;
	color:#000000; 
	}

/* unvisited link */
a:link {
    color: #000066;
}

/* visited link */
a:visited {
    color: #000066;
}

/* mouse over link */
a:hover {
    color: #5c628a;
}

nav {
	height:auto;
}

img {
	border:0;
}

table {
    
    border-spacing: 6px;
}

/*=========================================================*/
/* Mobile-first: the default styles are for mobile devices */
/*=========================================================*/


section p {
	margin:1em 0;
	line-height:140%;
}

section h1, section h2, section h3 {
	margin:1em 0;
	font-family: "Lucida Sans", Calibri, Arial, sans-serif;
}

section ol {
	margin-left:25px;
	line-height:150%;
}

section ul {
	margin-left:10px;
	line-height:150%;
}

header h1 {
	margin-top:0.3em;
	margin-left:0px;
	font-family: "Tekton Pro", "Malgun Gothic", "Lucida Sans", sans-serif;
	padding-top:5px;
	font-size:2.5em;
}

footer {
	font-size:0.8em;
}

nav a {
	display:inline-block;
	margin-bottom:8px;
	margin-right:5px;
	border:1px black;
	padding:2px;
	font-size:100%;
	color:#000066;
	text-decoration:none;
}

nav a:hover {
	color:#5c628a;
}


h1 {
	font-size:1.5em;
}


/* Mobile (Landscape) */
@media only screen and (min-width: 480px) and (max-width: 767px) {


}

/* Tablet (Portrait) and upwards */
@media only screen and (min-width: 768px) {

section ul, section ol {
	margin-left:30px;
}

header h1 {
	margin-left:20px;
}

nav a {
	color:#000066;
	text-decoration:none;
	padding-right:15px;
	font-size:90%;
	display:inline;
	border:0;
	background-color:transparent;
	line-height:2.2em;
}

nav a.active {
	color:#000066;
	font-weight:bold;
}

nav a:hover {
	color:#5c628a;
}



}
