@charset "UTF-8";
/* CSS Document */

* {
    margin: 0;
}
html, body {
    height: 100%;
}



body {
	
	background-image: url(img/bg.jpg);
	background-repeat: no-repeat;
	background-position: top center;
	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;
	background-color: #dad6d7;
	overflow-x:hidden;
}
p {
	
	color:#666666;
	font: normal normal 12px Arial, serif;
	text-align: left;
}
.oneColFixCtr #container {
	width: 950px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	margin-top:10px;
	border: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtr #mainContent {
	padding: 0 5px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
}

h1{
	
	color:#cc6666;
	font: normal normal 1.4em Palatino Linotype, Book Antiqua, Palatino, serif;

}
h2{
	
	color:#cc6666;
	font: normal normal 1.0em Palatino Linotype, Book Antiqua, Palatino, serif;

}
h3{
	
color:#cccccc;
	font: normal normal 1.0em Palatino Linotype, Book Antiqua, Palatino, serif;

}
.footer {font-size: 9px; color:#666666;}

.orange {
	color:#FE8200;
	font-size: 14px;
	line-height:5px;
}

.orange2 {
	color:#FE8200;
	font-size: 14px;
}

.details {
	color:#999999;
	font-size: 11px;
}

.myinputstyle {
	border: 1px dashed #cccccc;

	/** remember to change image path **/
	background: url(none) no-repeat #333333;
	font-family: tahoma, helvetica, sans-serif;
	font-style: normal;
	font-size: 12px;
	color: #cc6666;
}
a.linkopacity img {
filter:alpha(opacity=50);
-moz-opacity: 0.5; 
opacity: 0.5;
-khtml-opacity: 0.5;}


a.linkopacity:hover img {
filter:alpha(opacity=100);   
-moz-opacity: 1.0;   
opacity: 1.0;
-khtml-opacity: 1.0; }