@charset "utf-8";
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #FFFFFF;
	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;
}

/* Tips for Elastic layouts 
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/
.oneColElsCtrHdr #container {
	width: 59em;  /* this width will create a container that will fit in an 1024px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: 1px solid #008301;
	text-align: left; /* this overrides the text-align: center on the body element. */
	-moz-border-radius-topleft: 25px;
	-webkit-border-radius-top-left: 25px;
	-moz-border-radius-topright: 25px;
	-webkit-border-radius-top-right: 25px;
	-moz-border-radius-bottomleft: 25px;
	-webkit-border-radius-bottom-left: 25px;
	-moz-border-radius-bottomright: 25px;
	-webkit-border-radius-bottom-right: 25px;
}
.oneColElsCtrHdr #header {
	background: #F9FCEB;
	padding: 0px;
	position: relative;
	height:120px;
	-moz-border-radius-topleft: 25px;
	-webkit-border-radius-top-left: 25px;
	-moz-border-radius-topright: 25px;
	-webkit-border-radius-top-right: 25px;
}
.oneColElsCtrHdr #logo {
	margin: 0px;
	padding: 0px;
	height: 124px;
	width: 126px;
	position: absolute;
	left: 2px;
	top: 2px;
	z-index:500;
}
.oneColElsCtrHdr #title {
	margin: 0px;
	padding: 0px;
	height: 45px;
	width: 385px;
	position: absolute;
	left: 225px;
	top: 30px;
	z-index:5;
}
.oneColElsCtrHdr #puppies {
	margin: 0px;
	padding: 0px;
	height: 110px;
	width: 234px;
	position: absolute;
	right: 1px;
	top: 20px;
	z-index:500;
}
.oneColElsCtrHdr #ButtonRow {
	background: #EAF4BD;
	padding: 0px;
	position: relative;
	z-index:5;
	border-top: 1px solid #008301;
	border-bottom: 1px solid #008301;
	text-align: center;
	height:40px;
}
.oneColElsCtrHdr #mainContent {
	padding: 10px 15px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	background: #FFFFFF;
	font-size:0.9em;
	margin: 0 auto;
	position:relative;
	z-index:1;
}
.oneColElsCtrHdr #footer {
	padding: 0px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#EAF4BD;
	border-top: 1px solid #008301;
	font-size: 0.5em;
	text-align:center;
	-moz-border-radius-bottomleft: 25px;
	-webkit-border-radius-bottom-left: 25px;
	-moz-border-radius-bottomright: 25px;
	-webkit-border-radius-bottom-right: 25px;
} 
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
	margin:0;
	padding:0;
}
.BigLetter{
	font-weight:bold;
	font-size:1.5em;
	font-family:Verdana, Arial, Helvetica, sans-serif;
}

/* Begin CSS Drop Down Menu */

#MenuTop-container
	{
	position: absolute;		
	top: 0;
	left: 0;
	width:750px;
	}

#MenuTop
	{
	font-size:10px;
	font-family: arial, helvetica, sans-serif;
	width:100%;
	float:left;
	margin:0;
	margin-top:0;
	text-align:left;
	}
		
#MenuTop a
	{
	text-align: center;
	display:block;
	border-bottom: 1px dotted #008301;
	border-right: 1px dotted #008301;
	white-space:nowrap;
	margin:0;
	padding: 0.3em;
	text-align:left;
	}
	
#MenuTop a:link, #MenuTop a:visited, #MenuTop a:active	/* menu at rest */
	{
	color: #000000;
	background-color: #EAF4BD;
	text-decoration:none;
	}
	
#MenuTop a:hover	/* menu at mouse-over  */
	{
	color: black;
	background-color: white;
	text-decoration:none;
	}	
		
#MenuTop ul
	{
	list-style:none;
	margin:0;
	padding:0;
	float:left;
	width:150px;	/* width of all menu boxes */
	}

#MenuTop li
	{
	position:relative;
    min-height: 1px; /* for IE7 */
    vertical-align: bottom; /* for IE7 */
	}

#MenuTop ul ul
	{
	position:absolute;
	z-index:500;
	top:auto;
	display:none;
	padding: 1em;
	margin:-1em 0 0 -1em;	
	}
#MenuTop ul ul ul
	{
	top:0;
	left:100%;
	}

#MenuTop ul ul ul ul
	{
	bottom:0;
	left:100%;
	}

div#MenuTop li:hover
	{
	cursor:pointer;
	z-index:1000;
	}
	


/* style the primary level background */
#MenuTop ul li ul li {background:#DAEB89;}
/*#MenuTop ul li a.drop, #MenuTop ul li a.drop:visited {background:#EAF4BD;}*/
/* style the primary level hover */
#MenuTop ul li ul li a{padding:5px;}
#MenuTop ul li a.drop:hover{background:#ffffff; url(../images/drop_arrow.gif) bottom right no-repeat;}
#MenuTop ul li :hover > a.drop {background:#DAEB89; url(../images/drop_arrow.gif) bottom right no-repeat;}


/* style the second level background */
#MenuTop ul ul a.drop, #MenuTop ul ul a.drop:visited {background:#DAEB89;}
#MenuTop ul ul a.drop, #MenuTop ul ul a.drop:visited {background:#DAEB89 url(../images/drop_arrow.gif) bottom right no-repeat;}
/* style the second level hover */
#MenuTop ul ul a.drop:hover{background:#ffffff url(../images/drop_arrow.gif) bottom right no-repeat;}
#MenuTop ul ul :hover > a.drop {background:#DAEB89 url(../images/drop_arrow.gif) bottom right no-repeat;}

/* display for second level menus at rest */
#MenuTop ul :hover ul :hover li a:link{background:#DAEB89;}
/* display for second level menus on hover */
#MenuTop ul :hover ul :hover li a:hover{background:#ffffff;}

/* display for second level menus at rest */
#MenuTop ul :hover ul :hover li a.drop2:link{background:#DAEB89 url(../images/drop_arrow.gif) bottom right no-repeat;}
/* display for second level menus on hover */
#MenuTop ul :hover ul :hover li a.drop2:hover{background:#DAEB89 url(../images/drop_arrow.gif) bottom right no-repeat;}

/* display for third level menus at rest */
#MenuTop ul :hover ul :hover ul :hover li a:link{background:#DAEB89;}
/* display for third level menus on hover */
#MenuTop ul :hover ul :hover ul :hover li a:hover{background:#ffffff;}

/* style the third level background for drop downs */
#MenuTop ul ul ul a.drop2, #MenuTop ul ul ul a.drop2:visited {background:#DAEB89 url(../images/drop_arrow.gif) bottom right no-repeat;}
/* style the third level hover for drop downs */
#MenuTop ul ul ul a.drop2:hover{background:#ffffff url(../images/drop_arrow.gif) bottom right no-repeat;}
#MenuTop ul ul ul :hover > a.drop2 {background:#DAEB89 url(../images/drop_arrow.gif) bottom right no-repeat;}


div#MenuTop li:hover ul ul,
div#MenuTop li li:hover ul ul,
div#MenuTop li li li:hover ul ul,
div#MenuTop li li li li:hover ul ul
{display:none;}


div#MenuTop li:hover ul,
div#MenuTop li li:hover ul,
div#MenuTop li li li:hover ul,
div#MenuTop li li li li:hover ul
{display:block;}



/* End CSS Drop Down Menu */
