@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}


/* Basic Layout 

	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		3;
	dw-num-cols-tablet:		6;
	dw-num-cols-desktop:	12;
	dw-gutter-percentage:	5;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */
@media only screen{
body{
margin:0;
background-color:#F2F2E9
font-family:  tahoma, arial, sans-serif ;
font-size: 100%
text-align:left;
color:#000000;
}

/* Link Colours */
a:link    {color:#039; text-decoration:none;}
a:visited {color:#039; text-decoration:none; }
a:hover   {color:#456; text-decoration:none; }


a.defn:link{color:#039 ; text-decoration:none; border-bottom:1px dotted;}
a.defn:visited{color:#039 ; text-decoration:none; border-bottom:1px dotted;}
a.defn:hover{color:#456 ; text-decoration:none; border:none}

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 90.5396%;
	min-width:270px;
	padding-left: 0%;
	padding-right: 0.7301%;
	border: 1px solid #CDE;
}

#header {
	clear: both;
	float: left;
	margin-left:0;
	margin-bottom:5px;
	width: 100%;
	display: block;
}
#navigation {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#Content {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#Sidebar {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0;
	margin-top: 2px;
	padding-top: 0.2em;
	margin-bottom:2px;
	width: 100%;
	display: block;
	}

}
/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {
.gridContainer {
	width: 91.2698%;
	padding-left: 0.365%;
	padding-right: 0.365%;
}
#navigation {
	clear: both;
	float: left;
	margin-left: 0;
    margin-top:1em;
	width: 16%;
	display: block;
}
#Content {
	clear: none;
	float: left;
	margin-left: 0.8%;
	width: 83.2%;
	display: block;
}
#Sidebar {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}
}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.gridContainer {
	width: 91.6349%;
	max-width: 1232px;
	padding-left: 0.1825%;
	padding-right: 0.1825%;
	margin: auto;
}
#navigation {
	clear: both;
	float: left;
	margin-left: 0;
	width: 16.3346%;
	display: block;
	margin-top:1em;
}
#Content {
	clear: none;
	float: left;
	margin-left: 0.3984%;
	width: 58.0972%;
	display: block;
}
#Sidebar {
	clear: none;
	float: left;
	margin-left: 0.3984%;
	width: 24.5568%;
	display: block;
	margin-top:1em;
}
}
@media print {
/* Basic Layout */
body{
margin:0;
background-color:#FFFFFF;
font-family:Georgia, "Times New Roman", Times, serif;
font-size: 11pt;
text-align:left;
color:#000000;
}
.gridContainer {
	width: 100%;
	padding-left: 0.1825%;
	padding-right: 0.1825%;
	margin: auto;
}

#header {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: none;
}
#navigation {
	display: none;
}
#Content {
	width: 83%;
	display: block;
}
#Sidebar {
	clear: none;
	float: left;
	margin-left: 0.4%;
	width: 16.4%;
	display: block;
}
#footer {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

/* Links */
a:link{color : #000000;  text-decoration: none}
a:visited {color: #000000;  text-decoration: none}
a:hover   {color: #000000;  text-decoration: none}

}