/* danb.css */

@charset "utf-8";


body  {
	/*
		This font size affects the navigation! the rest is controlled in mainContent
	*/
	font:					100% Arial, Helvetica, sans-serif;
	background:			#A9A9A9;

	/*
		It's good practice to zero the margin and padding of the body element to account 
		for differing browser defaults
	*/
	margin:				0;
	padding:				0;

	/*
		This centers the container in IE 5* browsers. The text is then set to the 
		left aligned default in the #container selector
	*/
	text-align:			center;
	color:				#000000;
}


/*
	Spacer Div
*/
div.spacer {
	clear:				both !important;
}


#wrap {
	background:			#FFFFFF url(../images/bg.gif);
   width:				990px;
   margin:				0px auto 0px;
   padding:				0px;
}

	
#topnavbar {
	background:			#FFFFFF url(../images/topnav.gif);
	width:				990px;
	height:				50px;
	color:				#FFFFFF;
	margin:				0px auto 0px;
	padding:				0px;
	}


#topnavbar p {
	font-size:			9.5px;
	font-weight:		bold;
	padding:				28px 0px 0px 20px;
	margin:				0px;
	float:				left;
	}


#container {
	/*
		This will create a container 80% of the browser width
	*/
	width:				960px;
	background:			#FFFFFF;

	/*
		The auto margins (in conjunction with a width) center the page
	*/
	margin:				0 auto;
	border:				0px solid #000000;

	/*
		This overrides the text-align: center on the body element.
	*/
	text-align:			left;
} 


#header { 
	background:			#DDDDDD url(../img/BurghardtLQUOTE_960x100.jpg);
	height:				100px;

	/*
		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.
	*/
	padding:				0 10px;
}


#header h1 {
	/*
		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
	*/
	margin:				0;

	/*
		Using padding instead of margin will allow you to keep the element 
		away from the edges of the div
	*/
	padding:				10px 0;
}


/*
	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 ".twoColLiqRtHdr #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.
*/
#sidebar1 {
	/*
		Since this element is floated, a width must be given
	*/
	float:				right;
	width:				24%; 

	/*
		The background color will be displayed for the length of the content 
		in the column, but no further
	*/
	background:			#EBEBEB;

	/*
		Top and bottom padding create visual space within this div
	*/
	padding-top:		15px 0;
}


#sidebar1 h3, .danb #sidebar1 p {
	/*
		The left and right margin should be given to every element that will 
		be placed in the side columns
	*/
	margin-left:		10px;
	margin-right:		10px;
}


a, a:visited {
	color:				#0000FF;
   text-decoration:	underline;
   text-transform:	capitalize;
}
	

.hours1 {
	font-family:		Arial, Helvetica, sans-serif;
	font-size:			18px;
	font-weight:		bold;
	color:				#DC011F;
}


.hoursbig {
	font-family:		Arial, Helvetica, sans-serif;
	font-size:			22px;
	font-weight:		bolder;
	color:				#DC011F;
}


.hours2 {
	font-family:		Arial, Helvetica, sans-serif;
	font-size:			18px;
	font-weight:		bold;
	color:				#000;
}


.featured {
	background-color:	#FFF;
	padding:				10px;
	float:				left;
	width:				270px;
	margin-top:			0px;
	margin-right:		0px;
	margin-bottom:		20px;
	margin-left:		0px;
	border:				1px dotted #AFAFAF;
	font-size:			12px;
}


.featured a, a:visited { 
    font-weight:		bold;
}


#footer {
	background:			#000000 url(../img/footer.png);
	width:				990px;
	height:				100px;
	margin:				0px auto 0px;
	padding:				0px;
	text-align:			center;
	}


#footer p {
	/*
		Zeroing the margins of the first element in the footer will 
		avoid the possibility of margin collapse - a space between 
		divs
	*/
	margin:				0px;

	/*
		Padding on this element will create space, just as the the 
		margin would have, without the margin collapse issue
	*/
	padding:				0px 0px;
	color:				#FFF;
	font-size:			small;
}


#footer a {

	color:				#FFFFFF;
	text-decoration:	none;
	font-weight:		normal;
}


#footer a:visited {

	color:				#FFFFFF;
	text-decoration:	none;
	font-weight:		normal;
}


#footer a:hover {

	color:				#FFFFFF;
   text-decoration:	underline;
   font-weight:		bold;
}


/*
	Tips for mainContent:
	1. the space between the mainContent and sidebar1 is created with 
		the right margin on the mainContent div.  No matter how much 
		content the sidebar1 div contains, the column space will remain. 
		You can remove this right 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.
*/
.mainContent {
	margin-top:			20px;
	margin-right:		20px;
	margin-bottom:		20px;
	margin-left:		20px;

	/*margin: 0 26% 0 10px;*/

	/*
		The left margin should mirror the margin on the header and footer 
		for proper alignment.
	*/
	font-size:			12px;
} 


.mainContent h1 {
	color:				#333333;
	font-size:			22px;
	font-family:		Arial, Tahoma, Verdana;
	font-weight:		normal;
	margin:				0px 0px 5px 0px;
	padding:				0px;
}


.mainContent h2 {
	background:			#555555 /* url(images/navbar.gif) */;
	color:				#FFFFFF;
	font-size:			12px;
	font-family:		Arial, Tahoma, Verdana;
	font-weight:		bold;
	text-align:			center;
	text-transform:	uppercase;
	margin:				0px 0px 10px 0px;
	padding:				7px 0px 5px 0px;
}



.mainContent h3 {
	color:				#000000;
	font-size:			14px;
	font-family:		Arial, Tahoma, Verdana;
	font-weight:		bold;
	text-transform:	none;
	margin:				24px 0px 0px 0px;
	padding:				0px 0px 0px 0px;
	height:				auto;
	border-style:		none;
	border-width:		0px 0px 0px 0px;
}

.mainContent ul {
	margin-top:			0px;
	margin-bottom:		0px;
	padding:				0px 0px 0px 0px;
	border-width:		0px;

}

.mainContent ul li {
	margin:				0px 0px 0px 0px;
	padding:				0px 0px 0px 0px;
	border-width:		0px 0px 0px 0px;
	height:				auto;
}



/*
	Miscellaneous classes for reuse
*/


.tB {
	font-weight:			bold;
}


.tI {
	font-style:				italic;
}


.tU {
	text-decoration:		underline;
}


.tBI {
	font-weight:			bold;
	font-style:				italic;
}


.tBU {
	font-weight:			bold;
	text-decoration:		underline;
}


/*
	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.
*/
.fltrt {
	float:				right;
	margin-left:		8px;
}


/*
	This class can be used to float an element left in your page. The 
	floated element must precede the element it should be next to on 
	the page.
*/
.fltlft {
	float:				left;
	margin-right:		8px;
}


/*
	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
*/
.clearfloat {
	clear:				both;
   height:				0;
   font-size:			1px;
   line-height:		0px;
}
	

blockquotegray {
	background:			#E8E8E8;
	margin:				10px 0px 15px 0px;
	padding:				10px 30px 10px 15px;
	border-top:			1px solid #DDDDDD;
	border-right:		1px solid #666666;
	border-left:		1px solid #DDDDDD;
	border-bottom:		1px solid #666666;
}


.superscript {
   font-size:			xx-small; 
   vertical-align:	top;
} 


.subscript {
   font-size:			xx-small;  
   vertical-align:	bottom;
} 


.logored {
   color:				#DC011F;
}


p img {
	border:				none;
   float:				left;
	margin:				0px 10px 10px 0px;
	padding:				0px;
}


#column1 {
	float:				left;
	width:				49%;
	padding:				2px, 2px, 2px, 2px; 
}


#column2 {
	float:				right;
	width:				49%;
	padding:				2px, 2px, 2px, 2px;
}


#column4 {
	float:				left;
	width:				49%;
	padding:				2px, 2px, 2px, 2px; 
}


#column5 {
	float:				right;
	width:				49%;
	padding:				2px, 2px, 2px, 2px; 
}


.content{
	float:				left;
	width:				98%;
	padding:				2px 2px 20px 2px;
}


.contentthird{
	float:				left;
	width:				209px;
	padding:				2px 2px 20px 2px;
}


.centeredcont{
	margin:				0 0 0 32%;
}


/*
	Table elements
*/

table {
	margin-top:			24px;
}


#box-table-a {
	font-family:		"Lucida Sans Unicode", "Lucida Grande", Sans-Serif;
	font-size:			11px;
	margin-top:			30px;
	width:				100%;
	text-align:			left;
	border-collapse:	collapse;
}


#box-table-a th {
	font-size:			12px;
	font-weight:		normal;
	padding:				6px;
	background:			#000000;
	border-top:			4px solid #000;
	border-bottom:		1px solid #fff;
	color:				#ffffff;
	text-align:			center;
	font-weight:		bold;
}


#box-table-a .first {
	font-size:			17px;
	font-weight:		normal;
	text-align:			center;
	padding:				6px;
	background-image:	url(../images/navbar.gif);
	border-top:			4px solid #c0c0c0;
	border-bottom:		1px solid #fff;
	color:				#ffffff;
}


#box-table-a tr:hover td.first static {
	background-image:	url(../images/navbar.gif);
	color:				#ffffff;
}


#box-table-a .second {
	font-size:			12px;
	font-weight:		normal;
	padding:				6px;
	background:			#dcdcdc;
	border-top:			4px solid #dcdcdc;
	border-bottom:		1px solid #fff;
}


#box-table-a .third {
	font-size:			12px;
	font-weight:		normal;
	text-align:			center;
	padding:				6px;
	background:			#000000;
	border-top:			4px solid #000;
	border-bottom:		1px solid #fff;
	color:				#ffffff;
}


#box-table-a .fourth {
	font-size:			12px;
	font-weight:		normal;
	padding:				6px;
	background:			#A9A9A9;
	border-top:			4px solid #000;
	border-bottom:		1px solid #fff;
	color:				#000000;
}


#box-table-a td {
	padding:				6px;
	background:			#dcdcdc;
	border-bottom:		1px solid #fff;
	color:				#808080;
	text-align:			center;
	border-top:			1px solid transparent;
}


#box-table-a tr:hover td {
	background:			#c0c0c0;
	color:				#000;
}


#box-table-a tr td.static {
	font-size:			17px;
	font-weight:		normal;
	text-align:			center;
	padding:				6px;
	background-image:	url(../images/navbar.gif);
	border-top:			4px solid #c0c0c0;
	border-bottom:		1px solid #fff;
	color:				#ffffff;
}


#box-table-a tr:hover td.static { 
	background:			#dcdcdc;
	color:				#808080;
}


/*
	WordPress styles inherited from old site
*/
.wp-caption {
	border:						1px solid #ddd;
	text-align:					center;
	background-color:			#f3f3f3;
	padding-top:				4px;
	margin:						10px;
	-moz-border-radius:		3px;
	-khtml-border-radius:	3px;
	-webkit-border-radius:	3px;
	border-radius:				3px;
}


.wp-caption img {
	margin:				0;
	padding:				0;
	border:				0 none;
}


.wp-caption p.wp-caption-text {
	font-size:			11px;
	line-height:		17px;
	padding:				0 4px 5px;
	margin:				0;
}

