/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {background-image:url(http://www.byegoff.com/images/interface/bkgd-wisconsin-attorneys.jpg);
background-repeat:repeat-x;
  background-color: #2c0b0b;
  color: #000;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 12px;
  line-height: 16px;
  margin: 0 0 40px 0;
  padding: 0 0 0 0;
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}

h1 {
  color: #000;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}

h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
}

a,  a:link {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

a:visited {
  color: #000;
  font-weight: bold;
  text-decoration: none;
}

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

a:focus {
  color: #000;
}

a:active {
  color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #fff;
  margin: 0 auto 0 auto;
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 890px;
  padding:0;
}

#logo {
padding:0 0 0 0;
margin:0 0 70px 28px;
}

#outerWrapper #contentWrapper {
background-color: #e1e0e0;
background-image:url(http://www.byegoff.com/images/interface/bkgd-minnesota-law.jpg);
background-repeat:repeat-y;
margin:0;
padding:0;
}

#outerWrapper #contentWrapper #leftColumn1 {background-image:url(http://www.byegoff.com/images/interface/practice-areas-wisconsin-law.jpg);
background-repeat:no-repeat;
  background-color: #cdcbcb;
  float: left;
display:inline;
  padding: 55px 0 30px 0;
  width: 210px;
  margin:0 0 0 22px;
}

#leftColumn1 p {
font-size:11px;
font-weight:bold;
margin:30px 10px 10px 10px;
padding:0 0 0 0;
}


#outerWrapper #contentWrapper #rightColumn1 {background-image:url(http://www.byegoff.com/images/interface/free-case-evaluation-attorneys.jpg);
background-repeat: no-repeat;
background-position: 20% 2%;
background-color: #ebebeb;
float: right;
display:inline;
padding: 120px 0 0 0;
margin:0 22px 0 0;
width: 210px;
height:500px;
}

#rightColumn1 p {
font-size:11px;
font-weight:bold;
margin:10px 10px 10px 20px;
padding:0 0 0 0;
line-height: 15px;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */

#outerWrapper #contentWrapper #content {
  background-color: #dcdcdc;
  margin: 0 385px 0 40px;  
  padding: 0 0 0 0;

}

#content ul {
  font-size: 12px;
  line-height: 17px;
  margin:0 0 10px 20px;
  padding:0 0 0 0;
}

#content ul.tester {
  margin:0 0 0 0;
  padding:0 0 0 0;
}

#content ul li.test {
  font-size: 12px;
  line-height: 17px;
  margin:0 0 13px 0;
  padding:0 0 0 0;
list-style:none;
}

#content p {
  color: #000;
  font-size: 12px;
  line-height: 16px;
  margin:0 60px 15px 0;
  padding:0 0 0 0;
}


#content h1 {
  color: #75031e;
  font-size: 17px;
  font-weight: bold;
  line-height: 18px;
  margin:2px 60px 7px 0;
  padding:0 0 0 0;
}

#content h2 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin:0 60px 8px 0;
  padding:0 0 0 0;
}

#content h3 {
  color: #000;
  font-size: 12px;
  font-weight: bold;
  line-height: 14px;
  margin:0 60px 5px 0;
  padding:0 0 0 0;
}


/*End of Content styles*/

#wrap-text {
margin:0 0 0 0;
padding:0 0 0 0;
}

#wrap-text h1 {
  color: #75031e;
  font-size: 17px;
  font-weight: bold;
  line-height: 20px;
  margin:0 0 0 0;
  padding:0 0 7px 0;
}

#wrap-text  p {
  color: #000;
  font-size: 12px;
  line-height: 16px;
  margin:0 0 15px 0;
  padding:0 0 0 0;
text-align:justify;
}



/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}

/*Footer styles*/

#footer {background-image:url(http://www.byegoff.com/images/interface/bkgd-wisconsin-trial-attorneys.jpg);
background-repeat:no-repeat;
  background-color: #ddd;
  height:34px;
  padding: 0;
  margin:0 0 0 0;
}

#lowerfooter {
  height:40px;
  padding: 0;
  margin: 20px auto 0 auto;
  width:800px;
}

#lowerfooter p {
font-size:11px;
color: #cac6c6;
}

#lowerfooter a:link {
font-size:11px;
color:#cac6c6;
text-decoration: underline;
}

#lowerfooter a:visited {
font-size:11px;
color:#cac6c6;
text-decoration: underline;
}

#lowerfooter a:hover {
font-size:11px;
color:#cac6c6;
text-decoration: none;
}

#lowerfooter a:active {
font-size:11px;
color:#cac6c6;
text-decoration: underline;
}

.font11 {font-size:11px;}

/*End of footer styles*/


/*top links  on page*/
#law-links {
height:27px;
padding-top:10px;
margin:0;
}

#law-links a:link {
font-size:11px;
color:#cac6c6;
text-decoration: none;
}

#law-links a:visited {
font-size:11px;
color:#cac6c6;
}

#law-links a:hover {
font-size:11px;
color:#cac6c6;
text-decoration: underline;
}

#law-links a:focus {
font-size:11px;
color:#cac6c6;
}

#law-links a:active {
font-size:11px;
color:#cac6c6;
}

/*end of top links  on page*/


/*Referral Lawyers div and a link*/

#referral-lawyers {
height:24px;
margin: 0 auto 0 auto;
background-image:url(http://www.byegoff.com/images/interface/accident-attorney-wisconsin.jpg);
background-repeat: no-repeat;
 background-position: 79% 1%;
width: 890px;
padding:0 0 0 0;
}

#referral-lawyers p {
height:15px;
padding:4px 0 0 0;
margin:0 0 0 660px;
}

#referral-lawyers a:link {
color:#fff;
font-size:11px;
padding:0 0 0 0;
margin:0 0 0 0;
}

#referral-lawyers a:visited {
font-size:11px;
color:#fff;
}

#referral-lawyers a:hover {
font-size:11px;
color:#fff;
text-decoration: underline;
}

#referral-lawyers a:focus {
font-size:11px;
color:#fff;
}

#referral-lawyers a:active {
font-size:11px;
color:#fff;
}

/*End of referral lawyers div and a link*/

/*Left column navigation*/

#navlist {
padding: 0;
margin-left: 0;
font: 11px Verdana, sans-serif;
margin-bottom:0;
}

#navlist li {
list-style: none;
margin: 0;
border-bottom: 1px solid #1c4358;
text-align: left;
}

#navlist li a {
display: block;
padding: 6px;
text-decoration: none;
}

#navlist li a:link { color: #043853; }
#navlist li a:visited { color: #043853; }

#navlist li a:hover {
border-color: #FE3;
color: #FFF;
background: #810119;
}

.componentheading {
font-family: Georgia, "Times New Roman", Times, serif;
font-weight: normal;
font-size: 16px;
color: #7e0713;
line-height: 18px;
margin: 0;
}

#rightform {
padding:0 0 0 0;
margin:0 0 0 10px;
}

.formlook {
color:#9E0613;
font-size:11px;
width:170px;
background-color:#fcfcfc;
}

#communites {
font-size:11px;
font-weight:bold;
margin:0 0 0 10px;
padding:0 0 0 0;
}

#emailhome  {
font-size:10px;
padding: 0 0 0 0;
margin: 0 0 0 0; 
background-color:#fcfcfc;
width:170px;
}


#select-box1 {
font-size:10px;
padding: 0 0 0 0;
margin: 0 0 0 0; 
background-color:#fcfcfc;
width:170px;
}

#select-box2{
font-size:10px;
padding: 0 0 0 0;
margin: 0 0 0 0; 
background-color:#fcfcfc;
width:170px;
}

.firstrow {
color:#292828;
font-size:18px;
padding:0 0 0 0;
margin:0 0 0 18px;
width:230px;
}

.secondrow {
font-size:11px;
font-weight:bold;
color:#292828;
padding:15px 0 0 0;
margin:0 0 0 22px;
width:231px;
}

.secondrowmiddle {
font-size:11px;
font-weight:bold;
color:#292828;
padding:15px 0 0 0;
margin:0 0 0 135px;
width:120px;
}

.thirdrow {
font-size:11px;
color:#292828;
padding:0 0 0 0;
margin:0 0 0 16px;
width:230px;
}

.redbox {
color:#630613;
font-size:12px;
}

#threebox a:link {
padding:0 0 0 20px;
margin:0 0 0 130px;
background-image:url(http://www.byegoff.com/images/interface/personal-wi-lawyer.jpg);
background-repeat: no-repeat;
width:140px;
}

#navtop {
margin:0 0 181px 19px;
padding:0 0 0 0;
height:40px;
}

#threebox {
margin:0 0 0 18px;
padding:0;
}

h6 {
	margin: 0 0 0 30px;
	padding: 0;
	height:26px;
}



/*Header Images*/
#outerWrapper #header1 {background-image:url(http://www.byegoff.com/images/interface/);  /* NOTE: don't change this value, it should be modified in the template: includes/import-styles */
background-repeat:no-repeat;
background-color:#ececec;
padding:34px 0 0 0;
margin:0;
height:449px;
position: relative;
}

#header1 h1{
color: #044062; 
font-size: 42px; 
font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif; 
position: absolute; 
top: 78px; 
left: 150px; 
font-weight: normal;
}

#header1 h2{
color: #044062;
font-size: 14px; 
font-family: Georgia, Palatino, Palatino Linotype, Times, Times New Roman, serif; position: absolute;
top: 125px;
left: 30px;
text-transform: uppercase;
}

#header1 h3{
color: #7c211e; 
font-size: 26px; 
font-family:Tahoma,Arial,Helvetica,sans-serif;
position: absolute; 
top: 105px; 
right: 35px;
width: 300px;
text-align: right;
}

#header1 h4{
color: #044062; 
font-size: 12px; 
font-family:Tahoma,Arial,Helvetica,sans-serif;
position: absolute; 
top: 125px; 
right: 35px;
width: 300px;
text-align: right;
}

#header1 .contact-us{
display: block; position: absolute; top: 45px; right: 35px;
}

#active {
display: block;
border-color: #FE3;
padding: 6px;
font-weight:bold;
color: #FFF;
background: #810119;
}


.twobold {
font-sze:17px;
font-weight:bold;
color: #666;
}

.float-image-right {
float:right;
margin:20px 0 10px 18px;
padding:5px;
border: 2px solid #411111;
background: #fff;
}



/*  The contact-long form styles below */

/* CSS Document */

/*contact us table styles*/

#contact {
	border-collapse: collapse;
	color: #000;
	border: 2px solid #000;	
	margin-left:20px;
                margin-top:30px;
                 }

#contact th {
	width: 230px;	
	font-family: Arial, Helvetica, sans-serif;
	text-align: right;
	vertical-align: top;
	border-top: 1px solid #000;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	padding-right: 12px;
	padding-top: 0.50em;
	padding-bottom: 0.50em;
	background-color: #dcdcdc;
	}
	
#contact td {
	width: 245px;	
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: middle;
	padding-left: 15px;
	padding-right:15px;
	border-left: 0px solid #4A7770;
	border-bottom: 1px solid #FCF0C0;
	border-right: 0;
	color: #fff;
	background-color: #043b59;
	}
	
.header {
	font-family: Arial, Helvetica, sans-serif;
	vertical-align: middle;
	text-align: left;
	font-size: 16px;
	padding-left: 7px;
	}
	
#contact #buttonSubmit {
	margin-left: 0px;
	margin-top: 0px;
	}
	
	
	.textinput {
	color: #666;
	background-color: #ccc;
	}

#emailhome {
	padding: 0 0 0 5px;
	margin: 0 0 0 9px; 
	background-color:#fff;
	width:180px;
	}

.requieredred {
	font-size: 17px;
	font-weight: bold;
	color: #FF0000;
	}

.requieredred12 {
	font-size: 17px;
	font-weight: bold;
	color: #FF0000;
	}


#side-contact-form{
	float: right;
	margin-right: 40px;
	width: 316px;
	background-color: white;
	border: 1px solid #cbcbcb;
	padding: 1px;
	margin-bottom: 12px;
}

#side-contact-form form{
	padding: 0 30px 0 26px;
}

#side-contact-form label{
	font-family:Tahoma,Arial,Helvetica,sans-serif;
	color: #555555;
	font-size: 13px;
}
#side-contact-form label:after { 

  content: ":";
  display: inline;
}

#side-contact-form input,
#side-contact-form textarea{
	background-image: url(/images/interface/contact-form/input-bg.gif);
	background-repeat: repeat-x;
	border: 1px solid #cbcbcb;
	padding: 2px;
	font-size: 12px;
	line-height: 16px;
	margin: 0;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
}

#side-contact-form form .full{
	padding: 6px 0;
	width: 260px;
}

#side-contact-form form .city{
	float: left;
	width: 120px;
}

#side-contact-form form .city .text{
	width: 114px;
}

#side-contact-form form .state,
#side-contact-form form .zip{
	float: left;
	width: 60px;
	padding-left: 10px;
}

#side-contact-form form .state .text,
#side-contact-form form .zip .text{
	width: 54px;
}

#side-contact-form form .full .text,
#side-contact-form form .full textarea,
#side-contact-form form .full select{
	width: 254px;
}

#side-contact-form form div.submit{
	text-align: right;
	padding: 6px 4px 12px 0;
}

#side-contact-form form input.submit{
	padding: 2px 8px;
}

/* Make sure floating divs within other divs are contained properly */
.clear-across {
	clear: both;
	display: block;
	visibility: hidden;
	height: 0; 
	overflow: hidden;
	width: 0;
	border: 0px solid black; /* Chrome may require a 1px border, but this breaks firefox */
}