@charset "utf-8";
body  {
	font: 100% Verdana, Arial, Helvetica, sans-serif;
	background: #630;
	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;
	padding:0 0 20px;/*IE needs this for #wrapper bottom margin*/
}
.twoColLiqLtHdr #container { 
	text-align: left; /* this overrides the text-align: center on the body element. */
	width:86%;
    min-width:700px;
    max-width:1060px;
   	margin:20px auto 0;
    background:#996600;/*left column BG color*/
} 
.twoColLiqLtHdr #header { 
	/*min-height:6em;*/
	padding:0;
	margin:0;
	background: #F5EFD6; 
	width:100%;
	/*position:relative;
	overflow:hidden;*/
} 

.twoColLiqLtHdr #header .outerheader{
	background: url(../img/DeckByDesignNewLogo.png) center left no-repeat;
	height:150px;
	width:100%;
	display:table;
	/*position: relative; 
	overflow: hidden;*/
}

.twoColLiqLtHdr #header .innerheader{
	/*#position: absolute;  
	#top: 50%;*/
	display: table-cell; 
	vertical-align: middle;
}

.twoColLiqLtHdr #header .headeraddress {
	text-align:right;
	color:#000;
	font-size:0.9em;
	/*#position: relative;  
	#top: -50%;*/
	font-size:1em;
	font-family:Georgia, "Times New Roman", serif;
}

* html #innerwrap, * html #mainContent{height:1%;}/*IE6 haslayout*/ 

.twoColLiqLtHdr #innerwrap {
	min-height:0;/*IE7 hasLayout*/
    position:relative;/*IE needs this to redraw the sidebar correctly*/
    margin-left:20%;/*space for left column*/
    background:#F5EFD6;/*#main BG color*/
}
.twoColLiqLtHdr #innerwrap:after{/*float containment*/
    clear:both;
    content:"";
    display:block;
    height:0;
    font-size:0;
}
.twoColLiqLtHdr #inner {
    float:left;/*contain floated sidebar*/
    width:100%;/*prevent shrinkwrapping*/
    padding-top:.5em; /*replaces top margin for all top text elements*/
}

/* Tips for sidebar1:
1. since we are working in percentages, it's best not to use padding on the sidebar. It will be added to the width for standards compliant browsers creating an unknown actual width. 
2. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColLiqLtHdr #sidebar1 p" rule.
3. Since Explorer calculates widths after the parent element is rendered, you may occasionally run into unexplained bugs with percentage-based columns. If you need more predictable results, you may choose to change to pixel sized columns.
*/
.twoColLiqLtHdr #sidebar1 {
    float:left;
    width:20%;
    margin-left:-19.9%;; /*keep it hooked on the innerwrap by.1% so columns expand together*/
    left:-.1%; /*line it up exactly with relative position*/
    position:relative; 

}
/*.twoColLiqLtHdr #sidebar1 h3, .twoColLiqLtHdr #sidebar1 p {
	margin-left: 10px; /* the left and right margin should be given to every element that will be placed in the side columns */
	/*margin-right: 10px;
}*/

.twoColLiqLtHdr #sidebar1 #navigation {
	/*width: 90%;*/
	/*width:auto;*/
	margin-left:-2.5em;
	padding-top:1em;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight:bold;
	font-size:1.1em;
	/*margin-right:1em;*/
}

#navigation ul{
	width: 100%;
}
#navigation li {
	list-style:none;
	padding-top:1em;
	padding-bottom:1em;
}
#navigation li a{
	text-decoration:none;
	font-size:1.1em;
	color:#F5EFD6;
	
}
#navigation li a:hover{
	color:#000;
}

/*Credits: Dynamic Drive CSS Library */
/*URL: http://www.dynamicdrive.com/style/ */

.sidebarmenu ul{
/*margin: 0;
padding: 0;*/
list-style-type: none;
/*font: bold 13px Verdana;*/
/*width: 180px;*/ /* Main Menu Item widths */
	width:100%;
	margin-left:-3.5em;
	padding-top:1em;
	font-family:"Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-weight:bold;
	font-size:1.1em;
}
 
.sidebarmenu ul li{
position: relative;
}

/* Top level menu links style */
.sidebarmenu ul li a{
display: block;
overflow: auto; /*force hasLayout in IE7 */
color: white;
text-decoration: none;
padding: 6px;
border-bottom: 1px solid #996600;
border-right: 1px solid #996600;
}

.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{
background-color: #B67721; /*background of tabs (default state)*/
}

.sidebarmenu ul li a:visited{
color: white;
}

.sidebarmenu ul li a:hover{
background-color: black;
}

/*Sub level menu items */
.sidebarmenu ul li ul{
margin-left:-2.0em;
position: absolute;
width: 200px; /*Sub Menu Items width */
top: -1em;;
visibility: hidden;
/*font-family:Arial, Helvetica, sans-serif;*/
font-weight:bold;
font-size:0.8em;
}

.sidebarmenu a.subfolderstyle{
background: url(../img/arrow.gif) no-repeat 97% 50%;
}

 
/* Holly Hack for IE \*/
* html .sidebarmenu ul li { float: left; height: 1%; }
* html .sidebarmenu ul li a { height: 1%; }
/* End */

#networking {
	text-align:left;
	margin-left:-2.7em;
	text-align:center;
	padding-top:2em;
}

a img, a:link img, a:active img, a:visited img, a:hover img{
border:0px;
}

/* Tips for mainContent:
1. the space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
2. to avoid float drop at a supported minimum 800 x 600 resolution, elements within the mainContent div should be 430px or smaller (this includes images).
3. in the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs.
*/
.twoColLiqLtHdr #mainContent {
	margin-right:1em;
	margin-left:1em; /* the right margin can be given in percentages or pixels. It creates the space down the right side of the page. */
	font-size: 80%;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	min-height:0;/*IE7 haslayout*/
	/*padding:0 0 1em 0;*/
} 

.twoColLiqLtHdr #mainContent h1{
	font-family: "Times New Roman", Times, serif;
	font-size:200%;
	color: #630;
	font-weight: bold;
	font-style: italic;
} 

.twoColLiqLtHdr #mainContent h2{
	font-family: "Times New Roman", Times, serif;
	font-size:1.8em;
	color: #630;
	font-weight: bold;
	font-style: italic;
} 

.twoColLiqLtHdr #mainContent a{
	text-decoration:none;
	color:#630;
	font-weight:bold;
}

.twoColLiqLtHdr #mainContent a:hover{
	text-decoration:underline;
	color:#000;
}

.twoColLiqLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#B67721;
} 
.twoColLiqLtHdr #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 */
	font-size:0.8em;
	text-align:center;
}

/* Miscellaneous classes for reuse */
.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;
}
.twoColLiqLtHdr #container #mainContent h2 {
	font-family: "Palatino Linotype", "Book Antiqua", Palatino, serif;
	font-style: italic;
}
.twoColLiqLtHdr #container #mainContent p {
	font-style: normal;
}
.emphasized {
	font-style:italic;
	font-size:1.1em;
	color:#630;
}
.photoleft{
	float:left;
	margin-right:1em;
	vertical-align:bottom;
}
.photoright{
	float:right;
	margin-left:1em;
}
#flashphoto{
	float:left;
	margin-right:1em;
	background-image: url('../gallery/images/gal24small.jpg');
	background-repeat: no-repeat;
	height: 240px;
	width: 320px;
}
#flashphotoright{
	float:right;
	margin-left:1em;
	background-image: url('../gallery/images/Picture157small.jpg');
	background-repeat: no-repeat;
	height: 240px;
	width: 320px;
}

#galleryflash {				
	/*margin: 10px 20px 0px 0px;*/
	/*margin-bottom:2em;*/
	width: 800px;	
	height: 600px;
}

