@charset "utf-8";
/* CSS Document */

/* layout */
body {
	font: 100% Arial, Helvetica, sans-serif;
	background: #dcd4ed;
	/*background-image: url(../images/backgroundpattern.jpg);
	background-repeat: repeat;*/
	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;
}
.oneColFixCtrHdr #bgroundstrip	{
	width: 1230px;
	background-image: url(../images/backgroundstrip.png);
	background-repeat: repeat-y;
	margin-left: auto;
	margin-right: auto;
}
.oneColFixCtrHdr #container {
	width: 1200px;
	height: 100%;
	background: #ffffff;
	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. */
}
.oneColFixCtrHdr #header {
	background: #dddddd; 
	height: 400px;
}
.oneColFixCtrHdr #logo {
	width: 1200px;
	height: 78px;
	background-image: url(../images/rushdowntravellogotype.jpg);
	background-repeat: no-repeat;
	background-position: left;
}
.oneColFixCtrHdr #picbar {
	float: left; 
	width: 310px; /* since this element is floated, a width must be given */
	padding: 5px; /* top and bottom padding create visual space within this div */
}
.oneColFixCtrHdr #headerpic {
	width: 1100px;
	height: 150px;
	background: #cccccc;
	margin-left: auto;
	margin-right: auto;
	text-align: left; /* this overrides the text-align: center on the body element. */
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #mainContent {
	padding: 0 0px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	min-height: 428px;
	background: #ffffff;
}
.oneColFixCtrHdr #contentpg {
	padding-left: 30px;
	padding-right: 30px;
	background: #ffffff;
}
.oneColFixCtrHdr #footer {
	padding-top: 5px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	padding-bottom: 0;
	height: 30px;
	background: #dddddd;
}
.oneColFixCtrHdr #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 */
}
.oneColFixCtrHdr #sidebar {
	float: left; 
	width: 370px; /* since this element is floated, a width must be given */
	padding: 5px; /* top and bottom padding create visual space within this div */
}
.oneColFixCtrHdr #mainbar {
	float: left; 
	width: 650px; /* since this element is floated, a width must be given */
	padding: 5px; /* top and bottom padding create visual space within this div */
}


/* nav bar */
.oneColFixCtrHdr #navbar {
	margin: 0 auto; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 0 auto;
	width: 1200px;
	background-color: #dddddd;
	height: 27px;
 }
ul#list-nav {
 list-style: none;
 margin: 0 auto;
 padding: 0 auto;
 background-color: #dddddd;
 width: 900px;
 }
ul#list-nav li {
 display: inline;
 }
ul#list-nav li a {
 text-decoration: none;
 padding: 5px 0;
 width: 130px;
 background: #dddddd;
 color: #8a6188;
 float: left;
 text-align: center;
 border-left: 1px solid #fff;
 border-right: 1px solid #fff;
 font: 100% Arial, Helvetica, sans-serif;
 font-size: 14px;
 font-weight: bold;
 }
ul#list-nav li a:hover {
 background: #aaaaaa;
 color: #eee9f7;
 }
 
 
/* type */
.footer {
	font-size: 10px;
	color: #8a6188;
}
.mainheader {
	color: #9889be;
	font-size: 24px;
}
.type {
	font-size: 13px
}
.testimonialtype {
	font-size: 13px;
	font-weight: bold;
} 
.testimonialsignature {
	font-size: 13px;
	font-style: italic;
}
.subheader {
	font-size: 18px;
	color: #8a6188;
}
.disclaimer {
	font-size: 10px;
	color: #000000;
}
.style2 {
	font-size: 14px;
	color: #000000;
	font-weight: bold;
}


/* links */
a:link {
color: #8a6188;
}
a:visited {
color: #8d7cb6;
}
a:hover {
color: #f0ecf9;
}
a:active {
color: #d0cbdc;
}
