body {
	margin:0;
	padding:0;
	min-height: 100%;
	width:100%;
	background:#efefee;
	min-width:600px;		/* Minimum width of layout - remove line if not required */
					/* The min-width property does not work in old versions of Internet Explorer */
	font-size:80%;
	font-family:Tahoma, Geneva, sans-serif;
	padding-bottom:60px;
}
#container {
	height: 100%;
	min-height: 100%;
	position:relative;
}
a {
	color:#0c1c57;
	text-decoration:none;
}
a:link {
	color: #000044;
	text-decoration:none;
}
a:visited {
	color: #000044;
	text-decoration: none;
}
a:hover {
	color: #c75f3e;
	text-decoration: none;
}
h1, h2, h3 {
	font-weight:bold;
	margin:.8em 0 .2em 0;
	padding:0;
}
h1 {
	font-size: 18px;
	line-height: 140%;
}
h2 {
	font-size: 16px;
}
h3 {
	font-size: 11px;
	font-weight: bold;
	margin:.8em 0 .2em 0;
	line-height: 100%;
}
h4, h5 {
	font-size: 11px;
	margin:.8em 0 .2em 0;
	line-height: 100%;
}
p {
	font-family:Tahoma, Geneva, sans-serif;
	line-height: 140%;
	margin:.4em 0 .8em 0;
	padding:0;
}
img {
	margin:5px 0 5px;
	border:0;
}
.corners {
	-moz-border-radius: 10px;
	border-radius: 10px;
}
ul {
	list-style: disc;
	padding: 0 0 0 15px;
}
#header {
	float:left;
	width:100%;
	padding:20px 0;
	margin:0;
	background-color:#fff;
}
#colmask {
	position:relative;	/* This fixes the IE7 overflow hidden bug and stops the layout jumping out of place */
	clear:both;
	float:left;
	width:100%;			/* width of whole page */
	overflow:hidden;
 	background-color:#fff;/* Left column background colour */
}
#colmid {
	float:left;
	width:200%;
	position:relative;
	left:200px;
	background:#fff;    	/* Centre column background colour */
}
#colright {
	float:left;
	width:100%;
	position:relative;
	left:50%;
	margin-left:-400px;
    background-color:#fff;	/* Right column background colour */
}
#col1wrap {
	float:right;
	width:50%;
	position:relative;
	right:100%;
}
#col1pad {
	margin:0 15px 0 415px;
	overflow:hidden;
}
#col1 {
	padding:0 0 40px 0;
	width:100%;
	overflow:hidden;
}
#col1 img {
	margin:10px 0 20px;
}
#col2 {
	float:left;
	width:180px;
	position:relative;
	margin-left:-50%;
	left:210px;
	overflow:hidden;
	margin-top: 10px;
}
#col3 {
	float:left;
	width:180px;
	position:relative;
	left:10px;
	overflow:hidden;
	margin-top: 10px;
}
#footer {
	margin:0;
	clear:both;
	float:left;
	width:100%;
	height:90px;
	background-image:url(img/footerBg.jpg);
	background-repeat: repeat-x;
}
#footer p {
	text-shadow:1px 1px 0 white; 
	padding:.5em 15px;
	margin:0;
	text-align: center;
}

/* ------------------------------------------Navigation Bar-------------------------------------------- */

/* Main menu settings */
#centeredmenu {
	clear:both;
	float:left;
	margin:0;
	padding:0;
	width:100%;
	font-family:Tahoma, Geneva, sans-serif; /* Menu font */ 
	font-size:90%; /* Menu text size */
	z-index:1000; /* This makes the dropdown menus appear above the page content below */
	position:relative;
	background-color: #000066;
	background-image: url(img/navBg.jpg);
	background-repeat: repeat;
}

/* Top menu items */
#centeredmenu ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:50%;
}
#centeredmenu ul li {
	margin:0;
	padding:0;
	float:left;
	position:relative;
	left:50%;
	}
#centeredmenu ul li.first {
	border-left:1px solid #2e4994;
	}
#centeredmenu ul li.last {
	border-right:1px solid #0c1c57;
}
#centeredmenu ul li a {
	display:block;
	margin:0;
	padding:.6em .5em .4em;
	font-size:1em;
	line-height:1.8em;
	text-decoration:none;
	color:#fff;
	font-weight:bold;
	border-left:1px solid #0c1c57;
	border-right:1px solid #2e4994;

}
#centeredmenu ul li.active a {
	color:#fff;
	background:#000;
}
#centeredmenu ul li a:hover {
	background:#36f; /* Top menu items background colour */
	color:#fff;
}
#centeredmenu ul li:hover a,
#centeredmenu ul li.hover a { /* This line is required for IE 6 and below */
	color:#fff;
	background-image: url(img/navBgHover.jpg);
	background-repeat: repeat-x;
}

/*------------------------------------------ Submenu items -------------------------------------------------*/

#centeredmenu ul ul {
	display:none; /* Sub menus are hidden by default */
	position:absolute;
	top:2.8em;
	left:0;
	float:left;
	right:auto; /*resets the right:50% on the parent ul */
	width:12em; /* width of the drop-down menus */
}
#centeredmenu ul ul li {
	left:auto;  /*resets the left:50% on the parent li */
	margin:0; /* Reset the 1px margin from the top menu */
	clear:left;
	float:left;
	width:100%;
}
#centeredmenu ul ul li a,
#centeredmenu ul li.active li a,
#centeredmenu ul li:hover ul li a,
#centeredmenu ul li.hover ul li a { /* This line is required for IE 6 and below */
	font-size:1em;
	font-weight:normal; /* resets the bold set for the top level menu items */
	background:#2e4994;
	color:#fff;
	line-height:1.4em; /* overwrite line-height value from top menu */
	float:left;
	width:100%;
}
#centeredmenu ul ul li a:hover,
#centeredmenu ul li.active ul li a:hover,
#centeredmenu ul li:hover ul li a:hover,
#centeredmenu ul li.hover ul li a:hover { /* This line is required for IE 6 and below */
	background:#36f; /* Sub menu items background colour */
	color:#fff;
	float:left;
}

/* Flip the last submenu so it stays within the page */
#centeredmenu ul ul.last {
	left:auto; /* reset left:0; value */
	right:0; /* Set right value instead */
}
#centeredmenu ul ul.last li {
	float:right;
	position:relative;
	right:.8em;
}

/* Make the sub menus appear on hover */
#centeredmenu ul li:hover ul,
#centeredmenu ul li.hover ul { /* This line is required for IE 6 and below */
	display:block; /* Show the sub menus */
}

/* -----------------------------Header------------------------------------------ */
#headerTop {
	width:100%;
	height:30px;
	min-width:1000px;
	float:right;
	}
#headerL {
	float:left;
	clear:right;
	margin-left:200px;
	width:332px;
	height:110px;
	}
#headerR {
	float:right;
	margin-right:200px;
	}
	
/* top nav */

#topnav {
	width:100%;
	}
#topnav ul {
	margin:0;
	padding:0;
	list-style:none;
	float:right;
	position:relative;
	right:200px;
	}
#topnav ul li {
	margin:0;
	padding:0;
	float:left;
	position:relative;
	}
#topnav ul li a {
	display:block;
	margin:0;
	padding:.6em .5em .4em;
	font-size:80%;
	font-family:Tahoma, Geneva, sans-serif;
	line-height:1em;
	text-decoration:none;
	color:#000;
	}
#topnav ul li a:hover {
	text-decoration:underline;
	}
/* Footer List */
#footernav {
	width:100%;
	}
#footernav ul {
	margin:30px 0 0 210px;
	padding:0;
	list-style:none;
	position:relative;
	}
#footernav ul li {
	margin:0;
	padding:0;
	float: left;
	position:relative;
	}
#footernav ul li a {
	display:inline;
	margin:0;
	padding:.6em .5em .4em;
	font-size:80%;
	font-family:Tahoma, Geneva, sans-serif;
	line-height:1em;
	text-decoration:none;
	text-shadow:1px 1px 0 white;
	color:#000;
	}
#footernav ul li a:hover {
	text-decoration:underline;
	}
#footerRight {
	float:right;
	margin:0 200px 0 0;
	font-size:80%;
	font-family:Tahoma, Geneva, sans-serif;
	line-height:1em;
	text-decoration:none;
	color:#000;
	}
/* ----------------------------------Table---------------------------------------- */

th {
	font: bold 11.5px Tahoma, Geneva, sans-serif;
	color: #fff;
	letter-spacing: 2px;
	text-transform: uppercase;
	text-align: left;
	padding: 6px;
	background: #244c94; /* Old browsers */
	background: -moz-linear-gradient(top, #244c94 0%, #03235d 100%); /* FF3.6+ */
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#244c94), color-stop(100%,#03235d)); /* Chrome,Safari4+ */
	background: -webkit-linear-gradient(top, #244c94 0%,#03235d 100%); /* Chrome10+,Safari5.1+ */
	background: -o-linear-gradient(top, #244c94 0%,#03235d 100%); /* Opera 11.10+ */
	background: -ms-linear-gradient(top, #244c94 0%,#03235d 100%); /* IE10+ */
	background: linear-gradient(top, #244c94 0%,#03235d 100%); /* W3C */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#244c94', endColorstr='#03235d',GradientType=0 ); /* IE6-9 */
	border-left:1px solid #0c1c57;
	border-right:1px solid #2e4994;
	border-bottom:1px solid #0c1c57;
	}
td {
	font: normal 11.5px Tahoma, Geneva, sans-serif;
	padding: 6px 6px 6px 12px;
	}
span.subhead {font-size: 8px}

#courselist{}

#courselist table{
	width:100%
}
#courselist table tr{
}
#courselist table a{
	font-weight: bold;
}
#courselist table tr:hover{
	background-color: #eee;
	}
#courselist table tr:hover a{
	}
#courselist table tr:hover a:hover{
	color: #c75f3e;
	}
	
/* button 
---------------------------------------------- */
.button {
	display: inline-block;
	zoom: 1; /* zoom and *display = ie7 hack for display:inline-block */
	*display: inline;
	vertical-align: baseline;
	margin: 0 2px;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font-size: 10px;
	padding: .2em 1em .275em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
	color: #606060;
	border: solid 1px #b7b7b7;
	background: #fff;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ddd));
	background: -moz-linear-gradient(top,  #fff,  #ddd);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ddd');
}
.button:hover {
	text-decoration: none;
	background: #ededed;
	background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#ccc));
	background: -moz-linear-gradient(top,  #fff,  #ccc);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ccc');
}
.button:active {
	position: relative;
	top: 1px;
	color: #999;
	background: -webkit-gradient(linear, left top, left bottom, from(#ededed), to(#fff));
	background: -moz-linear-gradient(top,  #ededed,  #fff);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#ededed', endColorstr='#ffffff');
}
.bold {
	font-weight:bold;
}

