body  {
	font: 100% "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px; 
	line-height: 20px;
	background: #000000;
	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: #761100; */
	color: #993300;

}



p, ul, li, td { 
	font-size: 14px; 
	line-height: 20px;
}
p {
	margin: 1em 0em 1em 0em;
}
b, strong {
	font-weight: bold;
}
a:link, a:visited, a:active { 
	color: #CC0000;
	font-weight: bold;
	text-decoration: none;
}
a:hover { 
	color: #FF0000;
	text-decoration: underline;
}
h1, h2, h3, h4, h5, h6 { 
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	line-height: 1.3em;
	font-weight: bold;
	margin: .5em 0em 0em 0em;
	color: #993300;
}
h1 { font-size: 24px }
h2 { font-size: 18px }
h3 { font-size: 14px }
h4 { font-size: 12px }
h5 { font-size: 10px }
h6 { font-size: 8px }

/* i'm not sure these list definitions are necessary....? */
ul, ol {
	/*
	margin-left: 1.5em;
	padding-left: 1.5em;
	list-style-position: outside;
	*/
	/* border: 1px solid #0000ff; */
}
li {
	/*
	margin: 0em 0em .25em 0em;
	padding: 0;
	*/
}

.twoColHybLtHdr #fullWidthBorders {
	/* this container div allows us to place full-width border just beneath the header as x-repeat bkgrd image */
	background: #000000 url(images/template/page_bkgrd_top.gif) top center repeat-x;
}

.twoColHybLtHdr #container {
	width: 94%;  /* this will create a container 90% of the browser width */
	background: #fbecb6 url(images/template/sidebar_bkgrd.gif) top left repeat-y;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border-top: 0px solid #000000;
	border-right: 0px solid #000000;
	border-bottom: 10px solid #cc0000;
	border-left: 0px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
	min-width: 915px;
} 
.twoColHybLtHdr #header {
	background: #000000;
	padding: 0 5%;  /* 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. */
	height: 140px;
} 
.twoColHybLtHdr #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 */
}

/* Tips for sidebar1:
1. Since we are working in relative units, it's best not to use padding on the sidebar. It will be added to the overall width for standards compliant browsers creating an unknown actual width. 
2. Since em units are used for the sidebar value, be aware that its width will vary with different default text sizes.
3. 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 ".twoColHybLtHdr #sidebar1 p" rule.
*/
.twoColHybLtHdr #sidebar1 {
	float: left;
	width: 250px;
	; /* since this element is floated, a width must be given */
	background: #993300; /* the background color will be displayed for the length of the content in the column, but no further */
	padding: 0; /* top and bottom padding create visual space within this div  */
	margin: 0;
	/* border-top: 10px solid #660000; */
	border-top: 10px solid #cc0000;
}
.twoColHybLtHdr #sidebar1 h3, .twoColHybLtHdr #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;
}

/* 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. Be aware it is possible to cause float drop (the dropping of the non-floated mainContent area below the sidebar) if an element wider than it can contain is placed within the mainContent div. WIth a hybrid layout (percentage-based overall width with em-based sidebar), it may not be possible to calculate the exact width available. If the user's text size is larger than average, you will have a wider sidebar div and thus, less room in the mainContent div. You should be aware of this limitation - especially if the client is adding content with Contribute.
3. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This may help avoid several IE-specific bugs.
*/
.twoColHybLtHdr #mainContent {
	margin: 0 0 0 250px;
	padding: 0;
	background: #fbecb6 url(images/template/page_bkgrd.jpg) top left no-repeat;
	border-top: 10px solid #cc0000;
} 
.twoColHybLtHdr #footer { 
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background:#000000;
} 
.twoColHybLtHdr #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 */
	color: #999999;
	letter-spacing: 3px;
	font-size: 10px;
}

/* Miscellaneous classes for reuse */
.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;
}
img.headerLogo {
	float: left;
	margin: 20px 0px;
}
p.headerContactInfo {
	width: 350px;
	float: right;
	text-align: right;
	color: #ffda89;
	font-size: 12px;
	line-height: 16px;
	margin-top: 64px;
	letter-spacing: 1px;
	text-transform: uppercase;
}
span.phoneNo {
	color: #ffda89;
}

/* -- main navigation -- */
/* -- level one -- */
ul#leftNavAlpha {
	font-size: 14px;
	margin: 15px 0px;
	padding: 0px 0px;
	list-style: none;
	text-transform: uppercase;
	letter-spacing: 1px;
	text-align: right;
}
ul#leftNavAlpha li {
	line-height: 1.5em;
	margin: 0px 0px;
	padding: 0px 0px;
	display: inline;
}
ul#leftNavAlpha li a:link, ul#leftNavAlpha li a:hover, ul#leftNavAlpha li a:visited, ul#leftNavAlpha li a:active {
	display: block;
	margin: 1px 0px;
	padding: 10px 12px 10px 0px;
	color: #ff9900;
}
ul#leftNavAlpha li a:hover {
	text-decoration: none;
	background-color: #660000;
	color: #ffffff;
}

/* -- level two -- */
ul#leftNavAlpha ul {
	margin: 0px 0px 1px 0px;
	padding: 0px 0px;
	list-style: none;
	background-color: #8c2a00;
	letter-spacing: 2px;
	text-transform: none;
}
ul#leftNavAlpha ul li {
	margin: 0px 0px;
	padding: 0px 0px;
	line-height: 1.1em;
}
ul#leftNavAlpha ul li a:link, ul#leftNavAlpha ul li a:hover, ul#leftNavAlpha ul li a:visited, ul#leftNavAlpha ul li a:active {
	font-size: 12px;
	font-weight: normal;
	color: #fbdca6;
	margin: 0px 0px;
	padding: 6px 12px;
	border-bottom: none;
}
ul#leftNavAlpha ul li a:hover {
	text-decoration: none;
	border-bottom: none;
	text-decoration: none;
	background-color: #660000;
	color: #ffffff;
}



h1.topBannerHeading {
	background-color: #DBB74C;
	padding: 18px 18px;
	text-transform: uppercase;
	color: #996633;
	font-weight: normal;
	font-size: 36px;
	line-height: 36px;
	margin: 0;
}

#copyRegion {
	margin: 0 0 0 18px;
	/* float: left; */
	/* width: 90%; */
	/* border: 1px solid #00cc00; */
}
#homePageFlash {
	width: 660px;
	height: 450px;
	margin: 0;
	padding: 0;
	background: #fbecb6 url(images/template/page_bkgrd.jpg) top left no-repeat;
}

ul.moreIndent {
	margin-left: 180px;
	/* border: 1px solid #ff6600; */
}

ul ul { /* we want second-level UL lists to have disc bullets, not circle */
list-style-type: disc;
}

/* #subNavContainerX is a 3rd-tier navigation menu for case studies and creative samples */
#subNavContainer1, #subNavContainer2 {
	width: 175px;
	background: #eddba5 url(images/template/sidebar_bkgrd_bottom.jpg) bottom repeat-x;
	float: left;
	margin-right: 12px;
	padding-bottom: 0;
	padding-left: 0;
}
#subNavContainer2 {
	margin-right: 0;
}
#subNavContainer1 {
	height: 400px;
}
/* #subNavContainer1 is for sidebar text links, e.g., case study categories */
#subNavContainer1 ul {
	margin: 0;
	padding: 0;
	list-style: none;
	text-transform: none;
}
#subNavContainer1 ul li {
	margin: 0;
	padding: 0;
	line-height: 0;
}
#subNavContainer1 ul li a:link, #subNavContainer1 ul li a:visited, #subNavContainer1 ul li a:hover, #subNavContainer1 ul li a:active {
	text-decoration: none;
	display: block;
	font-weight: bold;
	font-size: 14px;
	line-height: 16px;
	color: #996633;
	margin: 0;
	padding: 10px 21px;
	border: none;
}
#subNavContainer1 ul li a:hover {
	text-decoration: none;
	background-color: #DBB74C;
	color: #660000;
}
/* #subNavContainer2 is for sidebar image thumbnails */
#subNavContainer2 {
	width: 118px;
	padding: 10px 0 100px 5px;
	margin-right: 12px;
	text-align: center;
}
div.thumbContainer {
	margin: 3px 2px;
	padding: 0;
	width: 52px;
	float: left;
	height: 50px;
	
}
div.thumbContainer img {
	margin: 0;
}
div.thumbContainer p {
	font-size: 10px;
	margin: 1px 0 4px 0;
	line-height: 11px;
	text-align: center;
}
div.thumbContainer a img {
	border: 1px solid #888888;
}
div.thumbContainer a:hover img {
	border: 1px solid #ff0000;
}



#creativeSampleContainer {
	margin: 5px 0 0 0;
	padding: 0;
/*	width: 470px; */
}
#creativeSampleContainer p {
	margin: 5px 0;
}
#creativeSampleContainer img {
	border: 1px solid #ccc;
}
p.enlargeLink {
	margin: 0;
	text-align: center;
	font-size: 12px;
	line-height: 14px;
}

#creativeSampleFlashContainer {
	margin: 5px 0 0 0;
}


ol.samplesByClient {
	margin-left: 140px;
	line-height: 1.3em;
}
ol.samplesByClient li ul {
	list-style-type: none;
	margin-left: 0;
	padding-left: 0;
	margin-bottom: .5em;
}

span.listByClient {
	font-weight: bold;
}

div.thumbnailContainer {
	text-align: center;
	font-size: 10px;
	line-height: 15px;
	margin: 0 auto 20px auto;
}
div.thumbnailContainer a img {
	margin: 0 5px;
	border: 1px solid #888888;
}
div.thumbnailContainer a:hover img {
	border: 1px solid #ff0000;
}







img.thumbnailIcon {
	float: left;
	margin: 10px 10px 0px 10px;
	border: 1px solid #993300;
}

p.bottomTagLine {
	text-align: center;
	font-size: 24px;
	color: #CC9966;
	margin: 0 auto 20px auto;
}

div.multiColContainer {
	padding: 0;
	margin: 0 auto;
	width: 510px;
}
div.multiColContainer div.col1 {
	padding: 0;
	margin: 0;
	width: 250px;
	float: left;
}
div.multiColContainer div.col2 {
	padding: 0;
	margin: 0;
	width: 250px;
	float: right;
}
.smallText {
	font-size: 12px;
}
.largeText {
	font-size: 18px;
	line-height: 1.3em;
}

h1.caseStudyHeading {
	margin: 0 0 .5em 0;
}
h3.caseStudyHeading {
	text-transform: uppercase;
	margin: .5em 0 0 0;
}

p.caseStudyEmph {
	font-weight: bold;
	font-size: 133%;
	margin-top: 0;
}
p.pictureTitle {
	margin-bottom: 0;
	text-align: center;
	font-weight: bold;
}
div.caseStudyFlashContainer {
	margin: 0 auto;
	padding: 0;
}
.sampleHeading {
	margin: 0;
	line-height: 1em;
}

.noSpBelow {
	margin-bottom: 0;
}
.noSpAbove {
	margin-top: 0;
}
img.attorneyWalkOnsLogo {
	float: right;
	margin-right: 35px;
}
