@charset "utf-8";
/* CSS Document for Screen*/

body  {
	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: #283a24;
	background-image: url(../images/page-elements/background-image.jpg);
	background-repeat: repeat-x;
	font-family: "Palatino Linotype", "Book Antiqua", Tahoma, serif;
	font-size: 100%;
}


.twoColFixLtHdr #container {
	width: 897px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* 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. */
} 

.twoColFixLtHdr #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 */
}

.twoColFixLtHdr #header a:link{
	color: #FFFFFF;
	text-decoration: underline;
} 

.twoColFixLtHdr #header a:visited{
	color: #FFFFFF;
	text-decoration: underline;
} 

.twoColFixLtHdr #header a:hover{
	color: #FFFFFF;
	text-decoration: none;
} 


/*upper nav bar*/

.twoColFixLtHdr #navbar {
	background: #ea9000;
	background-image: url(../images/page-elements/nav-bar-bkgrd.jpg);
	background-repeat: repeat-x;
	height: 27px;
	color: #FFFFFF;
	font-size: 16px;
	text-transform: uppercase;
	font-weight: bold;
	font-family: "Palatino Linotype", "Book Antiqua", Tahoma, serif;
	letter-spacing: 0.1em;
	padding-top: 5px;
	margin-bottom: 0px;
} 

.twoColFixLtHdr #navbar a:link {
	 color: #FFFFFF;
	 text-decoration: none;
} 

.twoColFixLtHdr #navbar a:visited {
	 color: #FFFFFF;
	 text-decoration: none;
} 

.twoColFixLtHdr #navbar a:hover {
	color: #FFFFFF;
	text-decoration: underline;

} 


/*sidebar*/

.twoColFixLtHdr #sidebar1 {
	width: 272px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	background: #ffffff; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 5px 20px 15px 5px;
	vertical-align: top;
	margin: 0;
	
}

.TD-side-nav-container{
	vertical-align: top;
	padding: 5px;
	width: 282px;

}

.TD-side-nav-top {
	background-color: #566745;
	background-image: url(../images/page-elements/side-nav-top.jpg);
	background-repeat: no-repeat;
	text-align: left;
	vertical-align: top;
	padding: 13px 13px 0 13px;
}

.TD-side-nav-bottom {
	background-image: url(../images/page-elements/side-nav-bottom.jpg);
	background-repeat: no-repeat;
	height: 14px;
}

.TD-side-nav-title {
	color: #ffe2a5;
	text-align: left;
	vertical-align: top;
	padding-bottom: 5px;
	border-bottom-width: 2px;
	border-bottom-style: dotted;
	border-bottom-color: #AD432B;
	font-weight: bold;
	font-variant: small-caps;
	letter-spacing: 0.1em;
	font-size: 16px;
}

.TD-side-nav-links {
	color: #FFFFFF;
	text-align: left;
	vertical-align: top;
	padding: 10px;
	font-size: 14px;
	line-height: 1.5em;
}

.TD-side-nav-links a:link{
	color: #FFFFFF;
	text-decoration: none;
}

.TD-side-nav-links a:visited{
	color: #FFFFFF;
	text-decoration: none;
}

.TD-side-nav-links a:hover{
	color: #FFFFFF;
	text-decoration: underline;
	
}


#mainContent {
	margin: 0; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar1 div contains, the column space will remain. You can remove this margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends. */
	padding: 20px 25px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	vertical-align: top;
	
} 

#mainContent h1{
	margin: 0; 
	
} 

#mainContent a:link{
	color: #0000FF;
	text-decoration: underline;
	}
	
#mainContent a:visited{
	color: #0000FF;
	text-decoration: underline;
	}
	
#mainContent a:hover{
	color: #0000FF;
	text-decoration: none;
	}		

.twoColFixLtHdr #footer {
	padding: 0 10px 0 20px;
	background-color: #283A24;
	color: #a99a8e;
	font-size: 10px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
} 

.twoColFixLtHdr #footer a:link{
	color: #a99a8e;
	text-decoration: none;
} 

.twoColFixLtHdr #footer a:visited{
	color: #a99a8e;
	text-decoration: none;
} 

.twoColFixLtHdr #footer a:hover{
	color: #a99a8e;
	text-decoration: none;
} 



.twoColFixLtHdr #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: 0px 10px 20px 10px; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
}
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.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;
}
/*for main content pages*/

.UL-mallard{
	margin: 2em;
  	padding: 0;

}

.LI-mallard{
	list-style: none;
	padding-left: 1.2em;
	margin-bottom:0.5em;
	background-image: url(http://www.mallardpoint.com/images/page-elements/duck-icon.jpg);
	background-repeat: no-repeat;
	background-position: 0px 8px;
}

/*for rates page*/

.TABLE-rates {
	background-color: #2F546F;
	width: 550px;
}

.CELL-week-column {
	background-color: #E5E5E5;
	text-align: right;
	vertical-align: top;
	padding: 5px;
	border: solid 1px #ffffff;
}


.CELL-day-column {
	background-color: #FFFFFF;
	text-align: right;
	vertical-align: top;
	padding: 5px;
	border: solid 1px #ffffff;
}
.CELL-rate-title {
	color: #FFFFFF;
	text-align: center;
	vertical-align: top;
	padding: 5px;
	border: solid 1px #ffffff;
}
.CELL-rate-title-left {
	color: #FFFFFF;
	text-align: right;
	vertical-align: top;
	width: 150px;
	padding: 5px;
	border: solid 1px #ffffff;
}

.p-rate-details {
	font-size: 12px;
}


/*photos*/

.TABLE-photos {
	background-color: #2F546F;
	width: 550px;
	margin-top: 25px;
	margin-bottom: 25px;
}

.CELL-photos-title{
 	font-weight: bold;
	font-variant: small-caps;
	text-align: center; 
	border: solid 1px #ffffff;
	color: #ffe2a5;
	padding: 5px;
}

.CELL-scroll-title{
 	font-weight: bold;
	font-variant: small-caps;
	text-align: center; 
	border: solid 1px #ffffff;
	color: #ffe2a5;
	padding: 5px;
	font-size: 12px;
}

.CELL-scroll-thumbs{
	background-color: #E5E5E5;
	border: solid 1px #ffffff;
}

.CELL-large-image{
	width: 350px; 
	height: 350px; 
	text-align: center; 
	vertical-align: middle; 
	padding: 15px; 
	background-color: #E5E5E5; 
	border: solid 1px #ffffff;
}.TD-full-page {
	padding: 20px;
	width: 100%;
}
.new {
	font-weight: bold;
	color: #FFFEFD;
}
