@charset "UTF-8";
/* CSS Document */
body {
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 14px;
	background: #FFF;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}
a:link, a:visited {
	color:  #acd311;
	text-decoration:none;
}
a:hover, a:active {
	color: #900 ;
	text-decoration:underline;
}
.boxleft {
	width:60%;
	border: solid 2px #333;
	padding:0 10px;
	margin: 20px 20px 20px 0;
	float: left;
	border-radius: 10px;
}
.boxright {
	clear:left;
	width: 50%;
	border: solid 2px #333;
	border-radius: 10px;
	margin: 20px 0 20px 20px;
	float: right;
	padding-top: 0;
	padding-right: 0px;
	padding-bottom: 0;
	padding-left: 10px;
}
#container {
	width: 960px;  
	background: url(../images/watermark-lighter-50.jpg) repeat 0px 250px;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	box-shadow: 3px 3px 8px #333333; /*shadow for CSS3 capable browsers.*/
	-webkit-box-shadow: 3px 3px 8px #333333;
	-moz-box-shadow: 3px 3px 8px #333333;
}
#header {
	background: #DDDDDD; 
	padding: 0; 
}
#header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 10px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
}
#navigation {
	color:#FFF;
	background-color: #acd311;
	height:40px;
	font-size: 16px;
	width:100%;
}
#navigation ul {
	list-style:none;
	padding:0;
	margin:0;
}
#navigation ul li {
	list-style:none;
	display:inline;
	float:left;
	padding:0;
	margin:0;
	line-height:20px;
}
#navigation ul li a:link, #navigation ul li a:visited {
	display:block;
	padding:10px 10px;
	color:#FFF;
	text-decoration:none;
}
#navigation ul li a:hover,#navigation ul li a:active {
	background-color:#999;
}

/* Suckerfish dropdown menus */


#navigation li ul { 
	position: absolute;
	background-color: #acd311;
	padding: 0;
	margin: 0;
	width: 150px;
	left: -999em;
	z-index:99;
	line-height:40px;
}
#navigation li ul li a { 
	text-transform:none;
	font-size:80%;
	font-weight:normal;
	color:#FFF;
	text-align:left;
}
#navigation li ul li{ 
	width:150px;
	height:40px;
	background-color: #acd311;
	border-bottom: solid 1px white;
	margin:0px;
}
#navigation li:hover ul, #navigation li.sfhover ul { 
	left: auto;
}

#mainContent {
	padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 450px;
}
#mainContent img.rounded {
	border: solid 2px #333;
	border-radius: 10px;	
  -moz-box-shadow: 5px 5px 5px #aaaaaa;
  -webkit-box-shadow: 5px 5px 5px #aaaaaa;
  box-shadow: 5px 5px 5px #aaaaaa;
}
#footer {
	clear:both;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#acd311;
	color:#fff;
	font-size:small;
	text-align:center;
}
#footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
