<!--
body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(images/backy.png);
	background-position:top center;
	background-repeat:no-repeat;
	background-color:#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: 670px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */

	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColElsCtrHdr #menu { 
	background: #DDDDDD; 

} 
.oneColElsCtrHdr #header { 
width:670px;
height:344px;
padding-top:0px;
padding-left:0px;


} 

.oneColElsCtrHdr #mainContent {
	background: #FFFFFF;
	margin-top: 0px;
	
	}
	
.oneColElsCtrHdr #mainContent: testimonial {
padding-left:20px;
float:left;
	
}
.oneColElsCtrHdr #footer {
	background:#72b7f8;
	border-top-color:#FFFFFF;
	border-top: 5;
} 
.oneColElsCtrHdr #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 */
}
-->
.testimonial { 
padding-left:445px;
padding-top:157px;
float:left;

}

#nav{
	float:left;
	width:100%;
	list-style:none;
	font-weight:bold;
	margin:0px;
	padding:0px;
}
#nav li{
	float:left;
	margin:0px;
	position:relative;
	display:block;
}
#nav li a{
	display:block;
	padding:0px;
	color:#fff;
	font:Arial, Helvetica, sans-serif;
	font-size:16px;
	background:#333;
	text-decoration:none;

	-moz-border-radius:2px;
	-webkit-border-radius:2px;
	border-radius:2px;
}
#nav li a:hover{
	color:#fff;
	font:Arial, Helvetica, sans-serif;
	font-size:16px;
	background:#ef259d; /* Solid colour fall-back */

	text-decoration:underline;
}

/*--- DROPDOWN ---*/
#nav ul{
	list-style:none;
	position:absolute;
	left:-9999px; /* Hide off-screen when not needed (this is more accessible than display:none;) */
	opacity:0; /* Set initial state to transparent */
	-webkit-transition:0.25s linear opacity; /* Make the dropdown fade-in in Webkit */
}
#nav ul li{
	padding-top:3px; /* Introducing a padding between the li and the a give the illusion spaced items */

	float:none;
}
#nav ul a{
	white-space:nowrap; /* Stop text wrapping and creating multi-line dropdown items */
	display:block;
}
#nav li:hover ul{ /* Display the dropdown on hover */
	left:0; /* Bring back on-screen when needed */
	opacity:1; /* Fade to opaque */
}
#nav li:hover a{ /* Set styles for top level when dropdown is hovered */

	background:#ef259d; /* It'll look nice semi-transparent */
	text-decoration:none;
}
#nav li:hover ul a{ /* Override some top level styles when dropdown is hovered */
	text-decoration:none;
	-webkit-transition:-webkit-transform 0.075s linear;
}
#nav li:hover ul li a:hover{ /* Set styles for dropdown when items are hovered */
	background:#00aeed; /* Solid colour fall-back */

	text-decoration:underline;
	-moz-transform:scale(1.05);
	-webkit-transform:scale(1.05);
}
