/* CSS main */

body {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background-image:url(images/background.gif); /* 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;
	background-color: #666666;
	background-repeat: repeat;
	margin-top: 10px;
	margin-right: 0;
	margin-bottom: 10px;
	margin-left: 0;
}

a img {
	padding:10px;
	border:0px;
	margin:0px;
}

a{
margin-top: 10px;
	margin-right: 0;
	margin-bottom: 0px;
	margin-left: 0;
    padding:0px;
    font-size:12px;

}


 

p { color: red; font-size: 50px; } 

#stripe {
	position:absolute;
	left:0px;
	top:45px;
	width:100%;
	height:188px;
	background-image:url(images/stripe.png);
	background-repeat:repeat-x;
	z-index: 1;
}
#container {
	position:absolute;
	left:50%;
	z-index: 2;
	width: 780px;
	margin-left: -390px; /* 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. */
	background-color: #FFFFFF;
	background-image: url(images/background_cont.gif);
	background-repeat: repeat-y;
}
#header {
	background: #DDDDDD; 
	padding: 0;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
}
#header h1 {
	font-size:12px;
	text-align:center;
	color: #999999;
	height: 20px;
	width:100%;
	margin: 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	background-image: url(images/top.gif);
	background-position: center top;
	padding-top: 10px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

#header h2 {
	margin:0;
	padding:0;
}

#header h2 a {
	display:block;
	font-weight:bold;
	text-decoration:none;
	background-image:url(images/header.jpg);
	height: 37px;
	margin: 0;
	padding-top: 160px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 440px;
	color: #FF3300;
	font-size: 16px;
}

#mainContent {
	padding: 0; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

ul#menu {
	display:block;
	float:left;
	list-style-type:none;
	width:160px;
	padding-left:50px;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

ul#menu li{
	display:block;
	width:100%;
	height:39px;
	margin:0;
	padding:5px 0px;
	border:0;
}

ul#menu li a{
	display:block;
	height:30px;
	background-image:url(images/button.png);
	color:#FFFFFF;
	font-size:14px;
	padding-left:10px;
	padding-top:9px;
	text-decoration:none;
	font-weight:bold;
}

ul#menu li a:hover{
	background-position:bottom;
}

div#content {
	position:relative;
	float:right;
	width:514px;
	margin-top:20px;
	margin-bottom:20px;
	padding-right:25px;
	background-image: url(images/content.gif);
	background-repeat: repeat-y;
}

div#content h1 {
	text-align:center;
	color:#0066ff;
	font-size:18px;
	background-image:url(images/content_top.gif);
	background-repeat:no-repeat;
	background-position:top;
	padding-top:25px;
	padding-left:35px;
	padding-right:35px;
	margin:0;
}

div#content h2 {
	font-size:16px;
	color:#3399CC;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 35px;
}

div#content p {
	font-size:16px;
	line-height:20px;
	color: #333399;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 35px;
}

div#content h3 {
	text-align:center;
	font-size:12px;
	line-height:16px;
	color: blue;
	padding-top: 5px;
	padding-right: 35px;
	padding-bottom: 5px;
	padding-left: 35px;
}

div#content a {
	font-weight:bold;
	color: #ff9933;
	text-decoration:underline;
}

div#content a:hover {
	color: #3399cc;
}

div#content ul {
	font-size:16px;
	line-height:20px;
	color:#333399;
	padding-left:50px;
	padding-right:35px;
	margin:0px;
}

div#content p.contentFooter {
	background-image:url(images/content_bottom.gif);
	background-repeat:no-repeat;
	background-position:bottom;
	margin:0;
	padding-top: 0;
	padding-right: 10px;
	padding-bottom: 3px;
	padding-left: 0;
	font-size:12px;
	font-weight:bold;
	text-align:right;
	color:#FF9900;
}

#footer {
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color:#b8d3f6;
	clear:both;
}

#footer h3{
	font-size:12px;
	color:#FFFFFF;
	font-weight:normal;
	text-align:center;
	padding:2px;
	margin:0;
}

#footer h3 a {
	color:#FFFFFF;
	font-weight:bold;
	text-decoration:none
}


 
