
/*
IF YOU DON'T UNDERSTAND .CSS, PLEASE DON'T MODIFY THE CODE
CSS INFORMATION CAN BE FOUND ON THE W3SCHOOL SITE:
http://www.w3schools.com/css
*/

/*Set's border, padding and margin to 0 for all values.
The CSS padding properties define the space between the element border and the element content. Negative values are not allowed.
The CSS margin properties define the space around elements.
The CSS border properties define the borders around an element.*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	margin: 0px;
	/*padding: 0px;*/
	border: 0;
	outline: 0px;
	font-size: 100%;
	font-family: "Lucida Grande", Arial, Helvetica, sans-serif;	 /*** Sets the font family and font type(serif) in the body ***/
	
}



body, html {
color: #666666;						/*** Text color of the body and html document is the hex value of the color dark gray ***/
font-family: Verdana, Arial, Tahoma, sans-serif;		 /*** Sets the font family and font type(serif) in the body ***/
background-color: #FFFFFF;	 /*** Background color of the body and html document is the hex value of the color white ***/
text-align: center;				 /*** Centers the design in old IE versions ***/
}

html {
font-size:100%;			/*** This sets the size of the font in the webpage, it is set to 100%; This is not allowed to change unless you know what you are doing***/
}

body {
position:relative;
padding-top: 1%;		 	/*** The space is 1% from the top border of the body to the content within it***/
font-size: .70em;			/*** Font size is declared to set THE size of the text in the body of the page; ems is used because that's the standard and it's easier to page zoom***/
}

p {
font-family: Arial, Helvetica, sans-serif; /*** Sets the font family and font type(serif) in the <p>***/
font-size:1.10em;		/*** Font size set the size of the text when using <p>	in the .html page</p>***/
line-height: 150%;	/*** The line height of anything within <p>	is 150%***/
color: #222222;			/*** The space is 2% from the left border of <p> to the content within it***/
padding-left:3%;		/*** The space is 2% from the left border of <p> to the content within it***/
padding-right:3%;		/*** The space is 2% from the right border of <p> to the content within it***/
padding-top:2%;			/*** The space is 2% from the top border of <p> to the content within it***/
}

a {
color: #000099;			/*** The color of the link is set to the hex value of blue***/
}

a:hover{
color: #0000FF;			/*** The color of the link is set to the hex value of medium blue when the cursor hovers over the link***/
text-decoration: none;			/*** The link has no text decoration such as underline when the cursor hovers over the link***/
}

h1, h2, h3, h4, h5, h6 {							/*** Headings 1 to 5 is bold and has 0% space between the left margin of <h1>-<h5> and its content***/
font-weight: bold;
padding-left:0%;
}

h1 {										/*** Heading 1 is set to dark red with a font size of 1.10em; this is used whenever h1 is in the page***/
font-size: 1.10em;
color: #990000;
}

h2 {	 				 					/*** Heading 2 is set to dark red with a font size of 1.4em; this is used whenever h2 is in the page***/
font-size: 1.4em;
color: #990000;
}

h3 {	 				 				/*** Heading 3 is set to dark red with a font size of 1.2em; this is used whenever h3 is in the page***/
font-size: 1.2em;
font-weight:normal;
color: #990000;
text-align:left;
}

h4 {	 				 				/*** Heading 4 is set to white with a font size of 1.3em with a spacing of .55em between all its borders and the content in it; this is used whenever h3 is in the page***/
color: #006699;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

h6 {	 				 				/*** Heading 8 is set to white with a font size of 1.3em with a spacing of .55em between all its borders and the content in it; this is used whenever h3 is in the page***/
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

h1 a, #header h2{	 				 				/*** Heading 1 when used as a link is set to the hex value of white***/
color: #990000;
}

td.form{			 										/*** Background color for form data cell***/
background-color:#B0E0E6;
}

.clear { clear: both; } /***Any element that you set the clear property for will appear below an element that is floated that direction.***/

#mainContainer { /*** Can be found in the headers, index, and mediakit files ***/
width: 100%; /*** This sets the width of the site; can be found in all pages ***/
margin: 0 auto; /*** Centers the design ***/
background: #FFFFFF;/*** Set the background color to the hex value of white ***/
text-align: left; /*** Because we centered the text in body we have to move the text back to left aligning ***/
}


table {	/*** Set the values of ALL tables within the page to be centered and align the text within to the left***/
margin:0 auto;
text-align:left;
}

fieldset{				/*** Can be found in the form section in newslettersignup.php and insurance form  ***/
position: relative;
float: left;
clear:left;
width:100%;
margin:0 0 -1em 0;
padding:0 0 -1em 0;
border-top: 1px solid #BFBAB0;
border-style:none;
background-color: #F2EFE9;
}

fieldset.alt{			/*** Can be found in the form section in newslettersignup.php and insurance form  ***/
background-color: #E6E3DD;
}

legend{						/*** Can be found in the form section in newslettersignup.php and insurance form  ***/
margin-left:1.2em;
font-size:1.1em;
font-weight: bold;
padding:0;
color: #006699;
}

fieldset ol {	 /*** Can be found in the form section in newslettersignup.php and insurance form  ***/
padding:1em 1em 0 1em;
list-style:none;
}

fieldset li {		/*** Can be found in the form section in newslettersignup.php and insurance form ***/
float:left;
clear: left;
width:100%;
padding-bottom:1em;
margin-right:1em;
font-size:.9em;
font-weight:normal;
color: #990000;
}

fieldset.submit {	 /*** Can be found in the form section in newslettersignup.php and insurance form  ***/
float: none;
width: auto;
border-style: none;
padding-top:2em;
padding-left:4.5em;
background-color: transparent;
background-image: none;
}

label {						/*** Can be found in the form section in newslettersignup.php and insurance form  ***/
float:left;
width:10em;
margin-right:1em;
font-size:1em;
font-weight:normal;
color: #990000;
}

/**************************
CONTENT AND COLUMNS; Can be found in the headers, index, and mediakit files 
**************************/

.contentWrap { /*** Sets position of website design ***/
padding-left: 1em;
padding-right:1em;
width: 77.27em;
margin: 0px auto;
}

.contentWrap ol, .contentWrap ul {
margin: 0em 0em 1em 3.18em;
line-height:160%;
font-size:1.1em;
color: #444444;
font-family:Arial, sans-serif;
}

.contentWrap li {
padding-bottom: 0.18em;
}


/**************************
MAIN NAVIGATION TABLE; Can be found in the headers and mediakit files
**************************/

table.nvgtb{
width: 100%;
height: 3.18em;
border-top: .1em solid #999999;
border-bottom: .1em solid #999999;
background-color: #FFFFFF;
text-align:center;
}

.nvgtb tr a{
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #4E8BC3;
line-height:25px;
font-weight:bold;
text-decoration:none;
padding-left: 10px;
padding-right: 10px;
}

.nvgtb tr a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #4E8BC3;
line-height:25px;
font-weight:bold;
text-decoration:underline;
}

/**Can be found in files such as terms.php, deeper hot topics files such as structured-settlements.php**/
table.littlenvgtb{
height: 3.18em;
border: .1em solid #999999;
background-color: #FFFFFF;
text-align:center;
}

.littlenvgtb tr a{
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #4E8BC3;
line-height:25px;
font-weight:bold;
text-decoration:none;
}

.littlenvgtb tr a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #4E8BC3;
line-height:25px;
font-weight:bold;
text-decoration:underline;
}


table.cypnv{							/**Can be found in compyellowpages; This sets the width of the table**/
width: 77em;
height: 3.18em;
background-color: #666666;
text-align:center;
}
.cypnv img{				/**Can be found in compyellowpages; This sets the width of the table**/
margin:0 auto;
}

.navhead{			/**Can be found in mediakit files; This sets the gradient header box to be included in header**/
/*background-color:#555555;
background-image:url('/images/hgrad.png');
background-repeat: repeat-x;
*/
height:3em;
}

/**************************
LEFT COLUMN; Can be found in mediakit files; Do not touch unless you know what you are doing
**************************/
/*** div.left is in div.float-wrap, and when div.float-wrap is neg margined to the left, 
div.left is carried over into the proper position. 
***/

.left {
float: left;
position:relative;
width: 20%;
background: #FFFFFF;
border-collapse:collapse;
color: #990000;
}

* html #left {
position: relative; /*** IE needs this  ***/
}

.left ul {
list-style: none;
margin:5%;
}

.left li a{
line-height:230%;
font-size:1em;
color: #006699;
}

/*************************
RIGHT COLUMN; Can be found in mediakit files; Do not touch unless you know what you are doing
**************************/

#right {
position:relative;
float: right;
width: 31.82em;
height: 15.2em;
border-collapse:collapse;
}

#right a{
padding-left: 0.91em;
color:#990000;
}

#right a:hover{
text-decoration:underline;
}

#right p{
text-align:left;
}


* html #right {
position: relative; /*** IE needs this  ***/
}

/**************************
CONTROLS STATISTICS LIST; Can be found in mediakit files
**************************/
#stat{
position:relative;
float:right;
color: #990000;
margin-top:7%;
height:20.91em;
width:31.82em;
}

#stat ul{
list-style: disc;
padding-top:0.91em;
text-align:left;
}

#stat li {
padding-right: 1.36em;
}

#stat li a{
line-height:230%;
font-size:1em;
color: #006699;
}

#stat li a:hover{
text-decoration:underline;
}

/**************************
CONTROLS CBARTICLE
**************************/

#cbarticle {
position:relative;
float: right;
width: 100%;
border-collapse:collapse;
}

#cbarticle a{
font-size:.85em;
padding-left: 0.91em;
color:#990000;
}

#cbarticle a:hover{
text-decoration:underline;
}

#cbarticle p{
text-align:left;
}

* html #cbarticle {
position: relative; /*** IE needs this  ***/
}

/**************************
AD
**************************/

#ad {
width: 93.4%;
height:6.36em;
margin: 0 auto;
text-align: center;
}


/**************************
CONTROLS SIDE AD; Can be found in some files and in the sidemenus files
**************************/
#sidead {
float:left;
position:relative;
width: 190px;
border-collapse:collapse;
align:left;
margin-bottom:10%;
}

/**************************
CONTROLS TOP AD; Can be found in headers files
**************************/
#topad {
float:right;
position:relative;
width:602px;
margin-right:2%;
}

/**************************
FOOTER; Can be found in mediakit files and footers files
**************************/

#footer {
margin: 0 auto;
text-align: center;
font-family: Arial, san-serif;
}

#footer a{
font-size:1em;
color: #4E8BC3;
}

/**************************
IMAGES PLACEHOLDER; Can be found in mediakit files
**************************/

.containingbox{
width: 21.45em;
height: 43.64em;
float:left;
}



/**************************
NAVIGATION; Can be found in mediakit files
**************************/

.navigation{
width: 100%;
height: 3.18em;
border: .1em solid #999999;
float:left;
background-color: #FFFFFF;
}


/**************************
LOG-IN; Can be found in some pages in the login section
**************************/

.login{
float: left;
position:relative;
width: 22%;
background: #FFFFFF;
border-collapse:collapse;
margin-top: 5%;
}

.login p{
color:#222222;
font-size:1.1em;
padding-left:6%;
}

.login img
{
margin-left:6%;
}

.login h3{
padding-left:6%;
}

.loginhp h3{
margin-left:6%;
}

.loginhp{
float: left;
position:relative;
width:100%;
background: #FFFFFF;
border-collapse:collapse;
}

.loginhp p{
color:#222222;
font-size:1.1em;
padding-left:6%;
text-align:left;
}

.logingr {
    border: solid 1px #85b1de;
    background: url('http://www.workcompresearch.com/images/formbg.gif') repeat-x;
    background-position: top;
}


.wcrmain {
	color: #000000;
	font-size: 14px;
	font-weight:bold;
	padding-left: 20px;
}

#slideshow1 a{
	color: #006699;
	font-size: 1.03em;
	padding-left: 20px;
}

#slideshow {
    background: url('http://www.workerscompensation.com/index_files/mupd.gif') repeat-x;
    background-position: top;
    padding-top: 20px;
    padding-bottom: 30px;

}


/**Can be found in mediakit files; This sets the position, the colors, and the images in the login section**/
.loginhpna{
float: left;
position:relative;
width:15em;
background: #FFFFFF;
border-collapse:collapse;
margin-left:2%;
margin-bottom:15%;
}

.loginhpna p{
color:#222222;
font-size:1.1em;
text-align:left;
}
.loginhpna img{
display:block;
margin-top:10%;
margin-left:0em auto;
margin-right:0em auto;
}

/**Can be found in newscenter section**/
.loginnews{
float: right;
position:relative;
width:9em;
background: #ffff99;
border-collapse:collapse;
font-size:.9em;
text-align:center;
padding:1.5%
}

.loginnews h3{
font-weight:bold;
}

.loginnews img{
display:block;
margin-top:2%;
margin-left:auto;
margin-right:auto;
}


/**************************
TABLE SPECS; Can be found in the specs page
**************************/

table.specs {
position:relative;
border:0em;
background: #FFFFFF;
background-repeat: repeat-x;
border-collapse:collapse;
margin-top:0.91em;
margin-left:1.82em;
width:50em;
height:13.64em;
}

.specs th {
background-color:#668B8B;
background-repeat: repeat-x;
color:#FFFFFF;
font-family: Arial, Helvetica, sans-serif;
font-size:1.2em;
font-weight:bold;
text-align:center;
padding-left:0.91em;
}

.specs tr {
text-align:center;
padding:6px;
height:3em;
}

.specs tr.even{
background-color:#F0F8FF;
}

.specs td{
vertical-align:middle;
}

.specs td .tableft{
text-align:left;
padding-left:0.91em;
}

* html .specs {
position: relative; /*** IE needs this  ***/
vertical-align:middle;
}


/**************************
TABLE FORMAT
**************************/

table.format {
float: left;
position:relative;
width: 15%;
border:solid .1em #999999;
background: #FFFFFF;
background-image: url('/images/boxg.png');
background-repeat: repeat-x;
border-collapse:collapse;
}

.format th {
background-color:#555555;
background-image:url('/images/hgrad.png');
background-repeat: repeat-x;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
text-align:center;
padding-left:0.91em;
}

.format tr{
margin:5%;
text-align:left;
}

.format td .pad{
margin-top:1.82em;
}

.format tr a { 
text-align:left;
line-height:230%;
font-size:1em;
color: #006699;
padding-left:5px;
font-family: Arial, Helvetica, sans-serif;
}

.format tr a:hover{
text-align:left;
color: #006699;
text-decoration: none;
}

/**Can be found in mediakit files; This defines the columns**/
.incol{
list-style: disc;
padding-top:1%;
color: #006699;
float:left;
width:30%;
font-size:90%;
padding-left:2%;
}



/**************************
SIDE MENUS OF I WANT TO AND POPULAR FEATURES, CAN BE FOUND IN SOME HEADERS, mediakit, AND SIDEMENUs FILES
**************************/

.containside{
width:90%;
}

table.side {
float: left;
position:relative;
border-collapse:collapse;
width:100%;
margin-bottom:2em;
}

table.side caption {
text-align:left;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

.side tr{
text-align:left;
}

.side td .pad{
margin-top:0.1em;
}

.side td a { 
text-align:center;
line-height:180%;
font-size:11.5px;
color: #006699;
padding-left:5px;
font-family: Arial, Helvetica, sans-serif;
text-decoration:underline;
}

.side td a:hover{
padding-left:5px;
text-decoration: none;
}

/**************************
TABLE NAVIGATION CENTER FOR STATE
**************************/

table.nvstate {
width:100%;
position:relative;
margin-bottom:3em;
margin:0 auto;
empty-cells:show;
}

table.nvstate caption {
position:relative;
text-align:left;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding-left: 2px;
padding-bottom: .35em;
margin:0 auto;
}

table.nvstate th{
color:#990000;
padding:0.55em;
font-family: Arial, Helvetica, sans-serif;
font-size:1em;
font-weight:bold;
margin-top:10%;
text-align:left;
}

table.nvstate tr{
margin:5%;
text-align:left;
}

table.nvstate th .pad{
margin-top:1.82em;
}

table.nvstate td a { 
text-align:left;
font-size:1em;
color: #006699;
font-family: Arial, Helvetica, sans-serif;
text-decoration:underline;
padding-left: 5px;
line-height: 200%;
}

table.nvstate td a:hover{
text-align:left;
color: #006699;
text-decoration: none;
padding-left: 5px;
}

table.mem {
width:100%;
position:relative;
margin-bottom:3em;
margin:0 auto;
empty-cells:show;
}

table.mem caption {
position:relative;
text-align:left;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding-left: 2px;
padding-bottom: .35em;
margin:0 auto;
}

table.mem th{
color:#990000;
padding:0.55em;
font-family: Arial, Helvetica, sans-serif;
font-size:1em;
font-weight:bold;
margin-top:10%;
text-align:left;
}

table.mem tr{
margin:5%;
text-align:left;
}

table.mem th .pad{
margin-top:1.82em;
}
table.mem td a { 
text-align:left;
font-size:12px;
color: #A74602;
font-family: Arial, Helvetica, sans-serif;
text-decoration:underline;
padding-left: 5px;
line-height: 200%;
font-weight: bold;
}

table.mem td a:hover{
text-align:left;
color: #A74602;
text-decoration: none;
padding-left: 5px;
font-weight: bold;
}

table.nvstate td h3 {
padding-left:5px;
}


/**************************
NAVIGATION FOR TABLE IN THE MAIN INDEX.PHP
**************************/

table.nv {
margin: 0 auto;
text-align:center;
position:relative;
border:solid .1em #999999;
background: #FFFFFF;
background-image: url('/images/boxg.png');
background-repeat: repeat-x;
border-collapse:collapse;
margin-bottom:3em;
}

table.nv caption {
background-color:#555555;
background-image:url('/images/hgrad.png');
background-repeat: repeat-x;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

table.nv th{
color:#990000;
padding:0.55em;
font-family: Arial, Helvetica, sans-serif;
font-size:1em;
font-weight:bold;
margin-top:10%;
text-align:left;
}

table.nv tr{
margin:5%;
text-align:left;
}

table.nv th .pad{
margin-top:1.82em;
}

table.nv td a { 
text-align:left;
line-height:230%;
font-size:1em;
color: #006699;
padding-left:5px;
font-family: Arial, Helvetica, sans-serif;
text-decoration:underline;
margin-left:10px;
}

table.nv td a:hover{
text-align:left;
color: #006699;
text-decoration: none;
}

* html table.nv {
position: relative; /*** IE needs this  ***/
}

hr{border: 0;
height: 1px;
color: #999999;
background-color: #999999;
margin-top:15px; margin-bottom:15px;}

/**************************
SIDE MENU
**************************/

table.ev {
margin: 0em auto;
text-align:center;
position:relative;
margin-bottom:3em;
width:100%;
}

table.ev caption {
text-align:left;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

table.ev th{
color:#990000;
padding:0.55em;
font-family: Arial, Helvetica, sans-serif;
font-size:1em;
font-weight:bold;
margin-top:10%;
text-align:left;
}

table.ev th .pad{
margin-top:1.82em;
}

table.ev td{
padding-left:.4em;
padding-right:.4em;
font-family: Arial, Helvetica, sans-serif;
text-align:left;
font-size:1em;
}

table.ev td a { 
color: #006699;
line-height:200%;
text-decoration:underline;
}

table.ev td a:hover{
text-decoration: none;
}

* html table.ev {
position: relative; /*** IE needs this  ***/
}


table.cnn a{
color: #006699;
}

table.cnn{
font-size: 12px;
color:#333333;
line-height: 150%;
}



/**************************
TABLE DEFINING THE EBOOK FILE AND IN OTHER PAGES AS WELL
**************************/
table.ebook {
text-align:center;
position:relative;

border:solid .1em #999999;
background: #FFFFFF;
background-image: url('/images/boxg.png');
background-repeat: repeat-x;
border-collapse:collapse;
margin-bottom:3em;
}

table.ebook caption {
text-align:left;
background-color:#555555;
background-image:url('/images/hgrad.png');
background-repeat: repeat-x;
background-attachment:relative;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

table.ebook th{
color:#990000;
padding:0.55em;
font-family: Arial, Helvetica, sans-serif;
font-size:1em;
font-weight:bold;
margin-top:10%;
text-align:left;
}

table.ebook td{
padding-left:.4em;
padding-right:.4em;
font-family: Arial, Helvetica, sans-serif;
text-align:left;
font-size:1em;
}

table.ebook td a { 
color: #006699;
line-height:200%;
text-decoration:underline;
}

table.ebook td a:hover{
text-decoration: none;
}

* html table.ebook {
position: relative; /*** IE needs this  ***/
}

/**************************
TABLE LISTING THE STATES, CAN BE FOUND IN STATEFORM.PHP AND STATEREGS FILEs AND MORE
**************************/
table.statev {
margin: 0em auto;
text-align:center;
position:relative;
border-collapse:collapse;
margin-bottom:3em;
}

table.statev caption {
text-align:left;
color:#990000;
font-family: Arial, Helvetica, sans-serif;
font-size:1.3em;
font-weight:bold;
padding:0.55em;
}

table.statev th{
color:#990000;
padding:0.55em;
font-family: Arial, Helvetica, sans-serif;
font-size:1em;
font-weight:bold;
margin-top:10%;
text-align:left;
}

table.statev th .pad{
margin-top:1.82em;
}

table.statev td{
padding-left:1em;
padding-right:1em;
font-family: Arial, Helvetica, sans-serif;
text-align:left;
font-size:1em;
}

table.statev td a { 
color: #006699;
line-height:200%;
text-decoration:underline;
}

table.statev td a:hover{
text-decoration: none;
}

* html table.statev {
position: relative; /*** IE needs this  ***/
}

/**************************
SUMMARY CONTROLS THE TEXT FORMAT
**************************/
#summary{
font-family: Arial, Helvetica, sans-serif;
font-size:110%;
line-height: 150%;
color: #222222;
padding-right:3%;
padding-top:2%;
}

#summary ul{
font-family: Arial, Helvetica, sans-serif;
font-size:100%;
line-height: 150%;
color: #222222;
}

/**************************
THE BACKGROUND OF THE MAIN NAVIGATION TABLE;
ONE-PIXEL WIDTH IMAGE REPEATING ON THE X AXIS
**************************/


.centeredImage
    {
    margin:0em auto;
    display:block;
    }

/***
STATE TABLE; Can be found in the main index.htm; Defines the state columns in the sidemenu
***/
table.state
{
  margin-left: 5%;
  padding: 0;
	font-size:.8em;
	list-style-type:none;
	width:100%;
	border-collapse: collapse;
	white-space:pre;
}

/* If li position is left static, Internet 
Explorer disables hyperlinks in the list 
in all but the final column.

This rule will be processed only by 
Internet Explorer because only IE believes 
that there’s a level above HTML: */

* html table.state
{
	position: relative;
}

/* anchor styling */
table.state a
{
  display: block;
  text-decoration: none;
}
table.state a:hover
{
  text-decoration: underline; /* white */
}

/**Defines Table for Poll**/
table#poll{
width:200px;
}

table#poll td a { 
text-align:left;
line-height:210%;
font-size:.8em;
color: #006699;
font-family: Arial, Helvetica, sans-serif;
text-decoration:underline;
}

table#poll td a:hover{
text-align:left;
color: #006699;
text-decoration: none;
}

/**Defines a tagline**/
#tagline{
font-weight:bold;
font-family: Arial, Helvetica, sans-serif;
color:#990000;
}

/**Defines EXCLUSIVE content and text; Can be found in Minnesota Radio Exclusive**/
#exclusive{
display:inline;
}

#exclusive a img{
float:left;
border:0;
padding-right:8%;
}

#featured {
text-align:left;
}

#featured a{
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #4E8BC3;
font-weight:bold;
text-decoration:none;
}

#featured a:hover {
font-family: Arial, Helvetica, sans-serif;
font-size: 1.1em;
color: #4E8BC3;
font-weight:bold;
text-decoration:underline;
}

#fimage {
float:left;
margin-right:5px;
}

/**Text Ad Code**/
.txtad {
border-style: solid;
border-width:1px;
border-color:#555555;
font-size:1em;
font-family:Arial;
padding:3px;
}

.txtad h3 a {
font-size: 1em;
color:blue;
font-weight:bold;
}

.txtad a {
color: green;
font-size: 1em;
font-weight:normal;
}

/*Sponsor Text Link*/
#sponsor {
float:right;
color: #990000;
text-decoration:underline;
}

.mupdate {
background: #fff url('http://www.workcompresearch.com/images/formbg.gif') repeat-x;
background-position: top;
}
