
/*
 * SenCSS 0.4 - Sensible Standards CSS framework
 *
 * Copyright (c) 2008 Kilian Valkhof (kilianvalkhof.com)
 * Visit sencss.kilianvalkhof.com for more information. 
 * Licensed under the MIT license.
 */
 
/* Basic reset
 * By Eric meyer and Paul Chaplin, http://meyerweb.com/eric/tools/css/reset/
*/

html,body,div,span,applet,object,iframe,pre,abbr,address,cite,code,del,dfn,em,img,ins,
kbd,q,strong,tt,var,dl,dt,dd,blockquote,fieldset,form,label,legend,table,
caption,tbody,tfoot,thead,tr,th,td {
	background:transparent;
	margin:0;
	padding:0;
	vertical-align:baseline;
}
body {
	background:#fff;
	color:#000;
	font:75%/1.5em Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
	position:relative;
}
textarea {
	font:100%/1.5em Helvetica, Arial, "Bitstream Vera Sans", sans-serif;
}
blockquote,q {
	quotes:none;
}

:focus {
	outline:0;
}
/* tables still need 'cellspacing="0"' in the markup */
table {
	border-collapse:collapse;
	border-spacing:0;
}
/* Baseline and common looks *****
 * Sets a vertical rhythm and styles the different elements.
*/
a {
	color:inherit;
	text-decoration:underline;
}
a:hover,a:focus {
	text-decoration:none;
}
abbr {
	border-bottom:1px dotted;
	cursor:help;
	font-variant:small-caps;
}
address,cite,em {
	font-style:italic;
}
blockquote p {
	background:#eee;
	margin:0 1.5em 1.5em;
	padding:0.75em;
}
code,kbd,tt {
	font:1em/1.5em "Courier New", Courier, monospace;
	font-variant:small-caps;
}
dd {
	padding-left:1.5em;
}
del {
	text-decoration:line-through;
}
dfn {
	border-bottom:1px dashed;
	font-style:italic;
}
dl {
	margin:0 0 1.5em;
}
dt,strong {
	font-weight:700;
}
h1 {
	font-size:2em;
	font-weight:700;
	margin:0 0 0.75em;
}
h2 {
	font-size:1.5em;
	margin:0 0 1em;
}
h3 {
	font-size:1.1666em;
	margin:0 0 1.285em;
}
h4 {
	font-size:1em;
	margin:0 0 1.5em;
}
h5 {
	font-size:0.8333em;
	margin:0 0 1.8em;
}
h6 {
	font-size:0.666em;
	margin:0 0 2.25em;
}
img {
	display:inline-block;
	font-size:1em;
	border: 0;
}
ins {
	text-decoration:overline;
}
ol li {
	list-style:inside decimal;
}
p {
	font-weight:300;
	margin:0 0 1.5em;
}
pre {
	font:1em/1.5em "Courier New", Courier, monospace;
	margin-bottom:1.5em;
	padding-left:1.5em;
}
sub {
	font-size:0.8em;
	line-height:0.8em;
	vertical-align:sub;
}
sup {
	font-size:0.8em;
	line-height:0.8em;
	vertical-align:super;
}
ul,
ol {
	margin:0 0 1.5em;
	padding:0;
}
ul li {
	list-style:outside disc;
	margin-left: 1em;
}
li li {
	padding-left:1.5em;
}
/* Common classes *****
 * Some base classes for pretty typography, asides and messages.
*/
.amp {
	font-family:Baskerville, "Goudy Old Style", Palatino, "Book Antiqua", "URW Chancery L", Gentium, serif;
	font-style:italic;
}

.error {
	background:#fee;
	border:1px solid red;
	margin:1.5em;
	padding:0.666em;
	text-align:center;
}
.notice {
	background:#eef;
	border:1px solid #00f;
	margin:1.5em;
	padding:0.666em;
	text-align:center;
}
.success {
	background:#efe;
	border:1px solid #0f0;
	margin:1.5em;
	padding:0.666em;
	text-align:center;
}
.quo {
	font-family:Georgia, Gentium, "Times New Roman", Times, serif;
}
.lquo {
	font-family:Georgia, Gentium, "Times New Roman", Times, serif;
	margin-left:-0.55em;
}
.section {
	position:relative;
}
/* Form stylings *****
 * Basic styling for forms, including a vertical, horizontal and sea
100  5276  100  5276    0     0   6876      0 --:--:-- --:--:-- --:--:-- 84551
rchform version. 
 * Does not include any styles on form elements, just layout.
 * This section still needs work.
*/
form button {
	cursor:pointer;
	font-size:1em;
	margin-top:1.5em;
}
form fieldset {
	border:0;
	margin-bottom:1.5em;
}
form fieldset fieldset {
	clear:both;
	margin-top:1.5em;
	padding-left:1.5em;
}
/*form input,
form select,
form textarea {
	width:100%;
}
form label {
	cursor:pointer;
	display:block;
	margin-top:1.5em;
	width:100%;
}*/
form label input {
	margin:0;
	vertical-align:top;
	width:auto;
}
form legend {
	font-size:1.1666em;
	font-weight:700;
}
/* Horizontal form stylings *****
*/
.horizontalForm button {
	clear:left;
	float:left;
}
.horizontalForm input,
.horizontalForm select,
.horizontalForm textarea {
	float:left;
	margin-top:1.5em;
	width:49%;
}
.horizontalForm label {
	clear:left;
	float:left;
	width:49%;
}
.horizontalForm label input {
	height:1em;
	line-height:1;
	margin-top:0;
	width:auto;
}
.horizontalForm select {
	width:49.8%;
}

.left {
	margin-left:0;
	margin-right: auto;
}

.axleft {
	position:absolute;
	left:0;
}
.fleft {
	float:left;
}
.chleft {
	text-align:left;
}
.center {
	margin-left: auto;
	margin-right: auto;

}
.chcenter {
	text-align:center;
}
.right {
	margin-left: auto;
	margin-right:0;
}
.axright {
	position:absolute;
	right:0;
}	
.fright {
	float:right;
}
.chright {
	text-align:right;
}
.clear {
	clear:both;
}
.hidden {
	display:none;
}
.ih {
	height:inherit;
}
ul.tabber {
	padding:0;
}
ul.tabber li {
	background:transparent;
	padding:0;
	margin:0;
}
ul.tabber li a{
	padding:0;
	margin:0;
}
/*colors*/

	.bg_color_a { background-color: #1b79c2;}
	.bg_colora h4  a,.bg_colora h4 a:hover,.bg_colora h4 a:visited { color: #fff}
	.fg_color_a { color: #1b79c2; }
	.b_color_a { border-color: #1b79c2; }

	.bg_color_b { background-color: #fc0;}
	.bg_colorb h4  a,.bg_colorb h4 a:hover,.bg_colorb h4 a:visited { color: #fff}
	.fg_color_b { color: #fc0; }
	.b_color_b { border-color: #fc0; }

	.bg_color_c { background-color: #323461;}
	.bg_colorc h4  a,.bg_colorc h4 a:hover,.bg_colorc h4 a:visited { color: #fff}
	.fg_color_c { color: #323461; }
	.b_color_c { border-color: #323461; }

	.bg_color_d { background-color: #cb0000;}
	.bg_colord h4  a,.bg_colord h4 a:hover,.bg_colord h4 a:visited { color: #fff}
	.fg_color_d { color: #cb0000; }
	.b_color_d { border-color: #cb0000; }



dl.sight {

}
	dl.sight dt {
		
	
		
	}
	dl.sight dd {
		margin-left: 9em;
	}
.ml5 {
	margin-left:5px;
}


.pad {
	padding: 1em;
}
.margin {
	margin: 1em;
}

	@media print {
		.screenonly { 
			display: none;
			border: 1px solid #f0f;
		}
		 .printonly {	
			display:block;
		}
		.noprint {
			display:none;
		}
		 
	}



.section {
	border-width: 0px;	
}
.section h4 {
	padding:0; padding: .35em;
	margin:0;
	color: #fff;
	overflow: hidden;
	display:block;
	text-transform: uppercase;
	
	border-color: inherit;
	background:transparent;
	font-size: 1.52em;
}
.section .sc {
	padding: .35em;
	border-width: 2px;
	border-style: solid;
	border-color: inherit;
	background-color: #fff;

}


#top {
	z-index: -100;
	color: #fff;
	min-width: 800px;
	margin:0;
	width:100%;
}
#header {
	margin:0;
	width:100%;;
}
#top a {
	color: #fff;
}

	#header {
		width: 100%;
		height: 120px;

		/*border-bottom: 1px double #eee;*/
		background: transparent url('/images/lm-hbackground-4.6.gif') repeat-x;;
	}
@media print {
	#header {
		background: none;
		
	}	
}
	

		#home_logo {
			width: 330px;	
		}
		#custom_logo {
		    position:absolute;
		    padding: 1em;
		    top: 40px;
		    line-height: .65em;
		}
		 #custom_logo h1 {
		   font-weight: bold;
		   
		}
		#custom_logo h1 a {
			color: #fff;
			text-decoration:none;
		}
		 #custom_logo h2 {
		    font-weight: normal;
		
		}
		
		#view_settings {
			position: absolute;
			top: 40px;
			right: 10.5em;
			padding: 1em;
			
			
		}
		
		#login {
			padding: 5px;
			font-size: 1.33em;
		}
	

#home {
	margin-left:auto;
	margin-right:auto;
	width: 800px;
	padding-top: 11px;
	padding-bottom: 11px;
}

	#main {
			
	}
	
		#sidebar_left {
			float:left;
			width: 200px;	
			/*opacity: 0.86;*/
		}
			#testimonials {
				height: 455px;
				overflow: hidden;
				
			}	
				.testimonial {
					margin-bottom: .79em;
					
				}
		#content_right {
			float: left;	
      padding-left: 13px;
		}
			#statemap {
				/*opacity: 0.86;*/
			}
		
		#content_bottom {
			width: 680px;
			clear:both;
		}

body {
	background: #fff url('/images/lm-pgbackground-4.6.gif') no-repeat fixed;
}
#page {
	
	
	padding: 1em;
	
		font-size: 0.95em;

}
a,a:active,a:visited {
	color: #1b79c2;
}

a:hover {
	font-weight: bold;
}

#footer {
	text-align:center;
	padding: 1em;
	width: 100%;
	background: transparent;
	color: #000;
	bottom: 0px;
  }
#notifiers {
    position: fixed;
    width: 38%;
    right: 31%;
    height: auto;
    top: 0;
    /*opacity: 0.97;*/
    background: none;
    padding: 0.5em;
    z-index: 1002;
    display:none;
    line-height: 1.71em;



}
.notifier_message {
    background: #fc0;
    border: 2px solid #000;
    color: #000;
    text-align:center;
    width: 90%;
    margin-top: 0.5em;
    margin-left: auto;
    margin-right: auto;
    -moz-border-radius: 0.5em;
    padding: .5em;
    font-size: 1.9em;
}
.notifier_message .notifier_subtext {
    color: #555;
    font-size: 0.6175em; 
}


.notifier_message a, .notifier_message a:hover, .notifier_message a:active, .notifier_message a:visited {
  text-decoration:none;
}
.notifier_close {
  float:right;
    top:0.5em;
    right:1em;
    margin: 0.15em;
    margin-left: 1em;
}


.warning,.error,.notice, .errors{
	padding: 1em;;
	font-size: 1.52em;
	font-weight: bold;
	margin: 1em;
}
.warning {
	background: #fc0;
	color: #000;
}
.error,.errors {
	background: #cb0000;
	color: #fff;
}


	.lw_state_label {
		background: #fff;
		
	}
	.lw_selected_state_label {
		background: #fff;
		font-weight: bolder;
	}
	.sentence_form {
			
	}
	.sentence_form input, .sentence_form select  {
		width: auto;
	}	

table.results {
	margin-left: auto;
	margin-right: auto;
	width: 90%;
	background: #fff url('/images/results_bg.jpg') repeat-x 50% 100%;
	font-size: 0.95em;
}
	table.results caption {
		background: #fc0;
		color: #000;
		font-weight: bold;
		text-align:center;	
	}
	table.results thead a {
		color: #000;
	}
	.results .covered {
		background: #666;
		color: #fff;
	}
	span.new {
            font-weight:bold;
        }
        span.covered {
            background: #000;
            color: #fff !important;
        }
	.even, .even td{
		background: #ddd;
		color: #000;
	}
	.odd, .odd td {
		background: #fff ;
		border-bottom: #eeeeee;
	}
	.new,.new td {
		font-weight: bold;
    }
    tr.subscriber .contact {
    background: url('/images/icons/logo.png') no-repeat 50% 60%;
  }
	.results tbody td {
		border: 1px dotted #fff;
		padding: 2px;
              }
        tr.vismode_private td {
          color: #a0a;    
        }
        tr.takemode_protected td {
          font-style: italic;
        }
	/*ul.actions*/
	ul.actions li {
		list-style-type: none;
		padding:2px;
		margin:0;
		width: 6em;
		background: #1b79c2;
		border-bottom: 1px solid #fff;
	}
	
	ul.actions li a {
		text-decoration:none;
		color: #fff;
	}
	ul.actions li a:visited {
		text-decoration:none;
		color: #000;
	}
	/*credit*/
	.grade_general_score {
		text-align:center;
		font-size: 16pt;
		width: 15pt;
	}
	.grade_background {
		text-align:center;
		padding: 1pt 1pt 1pt 1pt;
		margin: 1pt 1pt 1pt 1pt;
		border-top: 2px solid #000;
		background: transparent;
	}
	
	.grade_A {
		font-size:13pt;
		font-weight: bold;
		color: #0a0;
	}
	.grade_B {
		font-size:13pt;
		font-weight: bold;
		color: #aa0;
	}
	
	.grade_C {
		font-size:13pt;
		font-weight: bold;
		color: #a80;
	}
	
	.grade_D{
		font-size:13pt;
		font-weight: bold;
		color: #a00;
	}
	
	.grade_N{
		font-size:13pt;
		font-weight: bold;
		color: #000;
	}



form.defined label {
		
}
form.defined  dd {
	border-bottom: 1px solid #1b79c2;
	padding: .5em .5em .5em .5em;
	margin: 0em 0em 0em  25em;
} 
form.defined div.hint {
}
form.defined span.format {
	color: #aaa;	
	font-size: .7em;
}

form.defined dt {
	padding: .5em .5em .5em .5em;
	margin: 0;
	text-align:right;
	border-bottom: 1px solid #fc0;
	background: transparent;
	
	width: 24em;
	float: left;
	clear:left;
}
form.defined dd.submit {
	width:100%;
	text-align:right;	
}


/* form */

		form.cmxform {
			background: transparent;
		}
		form.cmxform span.format {
			margin-left: 2em;
			font-size: .7em;
			color: #d9cca6;

			letter-spacing: 2px;
		}
		form.cmxform fieldset {
		  margin-bottom: 10px;
		  border: none;
		  border-top: 1px solid #D9CCA6;
		  background: transparent;
		}
		form.cmxform fieldset ol li fieldset {
			background:none;	
		}
		form.cmxform legend {
		  padding: 0 2px;
		  font-weight: bold;
		}
		form.cmxform label {
		  display: inline-block;
		  line-height: 1.8;
		  vertical-align: top;
		}
		form.cmxform fieldset ol, form.cmxform fieldset ul {
		  margin: 0;
		  padding: 0;
		}
		form.cmxform fieldset ol li, form.cmxform fieldset ul li {
		  list-style: none;
		  padding: 5px;
		  margin: 0;
		  background: url(/images/field_divider.gif) left bottom repeat-x;
		  clear:both;
		}

		.caption {
			font-size: .85em;
			color: #454599;
			line-height: 1.2em;
		}
		form.cmxform fieldset fieldset {
		  border: none;
		  margin: 3px 0 0;
		}
		form.cmxform fieldset fieldset legend {
		  padding: 0 0 5px;
		  font-weight: normal;
		}
		form.cmxform fieldset fieldset label {
		
		  display: block;
		  width: auto;
		}
		form.cmxform em {
		  font-weight: bold;
		  font-style: normal;
		  font-size: 1.1em;
		  color: #a40;
		}
		form.cmxform label {
		  width: 170px; /* Width of labels */
		  font-size: .9em;
		  padding-left: 3em;
		}
		form.cmxform label {
			float:left;
		}
		form.cmxform input, form.cmxform select, form.cmxform textarea {
			margin-left: 4em;	
		}
	

ul.menu {
    top:97px;
    left:100px;
    margin:0;
    position:absolute;
}
ul.menu, ul.menu * {
	z-index: 1000;
	background: #fff;
	font-size: 1.0em;
}
ul.menu2 * {
  z-index: 900 !important;
}
ul.menu,ul.menu ul { /* all lists */
	padding: 0;
	margin: 0;
	list-style: none;
}

ul.menu li { 
	font-size: 1.3em;
	font-weight:bold;
	float: left;
	position: relative;
	width: 7em;
	list-style:none;
	margin:0;padding:0;
}
ul.menu li li {
       border: 1px solid #eee;

}
ul.menu li li a {
        background:none;
        display:block;
        padding: .35em;
        border: 1px double #aaa;

}

ul.menu li * {
	color: #000 !important;
	text-decoration:none;
}
ul.menu li ul li {
	font-weight:normal;
	font-size: 1.15em;
}
ul.menu li ul { /* second-level lists */
	display: none;
	position: absolute;
	top: 1em;
	left: 0;
}
ul.menu li>ul { /* to override top and left in browsers other than IE, which will position to the top right of the containing li, rather than bottom left */
	top: auto;
	left: auto;
}

ul.menu li:hover ul, ul.menu li.over ul { /* lists nested under hovered list items */
	display: block;
}






/* Caution! Ensure accessibility in print and other media types... */
@media projection, screen { /* Use class for showing/hiding tab content, so that visibility can be better controlled in different media types... */
    .ui-tabs-hide {
        display: none;
    }
}

/* Hide useless elements in print layouts... */
@media print {
    .ui-tabs-nav {
        display: none;
    }
}

/* global */
#cluetip-close img {
  border: 0;
}
#cluetip-title {
  overflow: hidden;
}
#cluetip-title #cluetip-close {
  float: right;
  position: relative;
}
#cluetip-waitimage {
  width: 43px;
  height: 11px;
  position: absolute;
  background-image: url(/images/wait.gif);
}
.cluetip-arrows {
  display: none;
  position: absolute;
  top: 0;
  left: -11px;
  height: 22px;
  width: 11px;
  background-repeat: no-repeat;
  background-position: 0 0;
}
#cluetip-extra {
  display: none;
}
/***************************************
   =cluetipClass: 'default' 
-------------------------------------- */

.cluetip-default {
  background-color: #d9d9c2;
}
.cluetip-default #cluetip-outer {
  position: relative;
  margin: 0;
  background-color: #d9d9c2;
}
.cluetip-default h3#cluetip-title {
  margin: 0 0 5px;
  padding: 8px 10px 4px;
  font-size: 1.1em;
  font-weight: normal;
  background-color: #87876a;
  color: #fff;
}
.cluetip-default #cluetip-title a {
  color: #d9d9c2;
  font-size: 0.95em;
}  
.cluetip-default #cluetip-inner {
  padding: 10px;
}
.cluetip-default div#cluetip-close { 
  text-align: right;
  margin: 0 5px 5px;
  color: #900;
}

/* default arrows */

.clue-right-default .cluetip-arrows {
  background-image: url(/images/darrowleft.gif);
}
.clue-left-default .cluetip-arrows {
  background-image: url(/images/darrowright.gif);
  left: 100%;
  margin-right: -11px;
}
.clue-top-default .cluetip-arrows {
  background-image: url(/images/darrowdown.gif);
  top: 100%;
  left: 50%;
  margin-left: -11px;
  height: 11px;
  width: 22px;  
}  
.clue-bottom-default .cluetip-arrows {
  background-image: url(/images/darrowup.gif);
  top: -11px;
  left: 50%;
  margin-left: -11px;
  height: 11px;
  width: 22px;
}

/***************************************
   =cluetipClass: 'jtip'
-------------------------------------- */
.cluetip-jtip {
  background-color: transparent;
}
.cluetip-jtip #cluetip-outer {
  border: 2px solid #ccc;
  position: relative;
  background-color: #fff;
}

.cluetip-jtip h3#cluetip-title {
  margin: 0 0 5px;
  padding: 2px 5px;
  font-size: 1.3em;
  font-weight: normal;
  background-color: #ccc;
  color: #333;
}

.cluetip-jtip #cluetip-inner {
  padding: 0 5px 5px;
  display: inline-block;
}
.cluetip-jtip div#cluetip-close { 
  text-align: right;
  margin: 0 5px 5px;
  color: #900;
}

/* jtip arrows */

.clue-right-jtip .cluetip-arrows {
  background-image: url(images/arrowleft.gif);
}
.clue-left-jtip .cluetip-arrows {
  background-image: url(images/arrowright.gif);
  left: 100%;
  margin-right: -11px;
}
.clue-top-jtip .cluetip-arrows {
  background-image: url(images/arrowdown.gif);
  top: 100%;
  left: 50%;
  margin-left: -11px;
  height: 11px;
  width: 22px;  
}  
.clue-bottom-jtip .cluetip-arrows {
  background-image: url(images/arrowup.gif);
  top: -11px;
  left: 50%;
  margin-left: -11px;
  height: 11px;
  width: 22px;
}


/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> global settings needed for thickbox <<<-----------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
*{padding: 0; margin: 0;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox specific link and font settings <<<------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_window {
	font: 12px Arial, Helvetica, sans-serif;
	color: #333333;
}

#TB_secondLine {
	font: 10px Arial, Helvetica, sans-serif;
	color:#666666;
}

#TB_window a:link {color: #666666;}
#TB_window a:visited {color: #666666;}
#TB_window a:hover {color: #000;}
#TB_window a:active {color: #666666;}
#TB_window a:focus{color: #666666;}

/* ----------------------------------------------------------------------------------------------------------------*/
/* ---------->>> thickbox settings <<<-----------------------------------------------------------------------------*/
/* ----------------------------------------------------------------------------------------------------------------*/
#TB_overlay {
	position: fixed;
	z-index:100;
	top: 0px;
	left: 0px;
	height:100%;
	width:100%;
}

.TB_overlayMacFFBGHack {background: url(macFFBgHack.png) repeat;}
.TB_overlayBG {
	background-color:#000;
	filter:alpha(opacity=75);
	-moz-opacity: 0.75;
	opacity: 0.75;
}

* html #TB_overlay { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_window {
	position: fixed;
	background: #ffffff;
	z-index: 102;
	color:#000000;
	display:none;
	border: 4px solid #525252;
	text-align:left;
	top:50%;
	left:50%;
}

* html #TB_window { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_window img#TB_Image {
	display:block;
	margin: 15px 0 0 15px;
	border-right: 1px solid #ccc;
	border-bottom: 1px solid #ccc;
	border-top: 1px solid #666;
	border-left: 1px solid #666;
}

#TB_caption{
	height:25px;
	padding:7px 30px 10px 25px;
	float:left;
}

#TB_closeWindow{
	height:25px;
	padding:11px 25px 10px 0;
	float:right;
}

#TB_closeAjaxWindow{
	padding:7px 10px 5px 0;
	margin-bottom:1px;
	text-align:right;
	float:right;
}

#TB_ajaxWindowTitle{
	float:left;
	padding:7px 0 5px 10px;
	margin-bottom:1px;
}

#TB_title{
	background-color:#e8e8e8;
	height:27px;
}

#TB_ajaxContent{
	clear:both;
	padding:2px 15px 15px 15px;
	overflow:auto;
	text-align:left;
	line-height:1.4em;
}

#TB_ajaxContent.TB_modal{
	padding:15px;
}

#TB_ajaxContent p{
	padding:5px 0px 5px 0px;
}

#TB_load{
	position: fixed;
	display:none;
	height:13px;
	width:208px;
	z-index:103;
	top: 50%;
	left: 50%;
	margin: -6px 0 0 -104px; /* -height/2 0 0 -width/2 */
}

* html #TB_load { /* ie6 hack */
position: absolute;
margin-top: expression(0 - parseInt(this.offsetHeight / 2) + (TBWindowMargin = document.documentElement && document.documentElement.scrollTop || document.body.scrollTop) + 'px');
}

#TB_HideSelect{
	z-index:99;
	position:fixed;
	top: 0;
	left: 0;
	background-color:#fff;
	border:none;
	filter:alpha(opacity=0);
	-moz-opacity: 0;
	opacity: 0;
	height:100%;
	width:100%;
}

* html #TB_HideSelect { /* ie6 hack */
     position: absolute;
     height: expression(document.body.scrollHeight > document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

#TB_iframeContent{
	clear:both;
	border:none;
	margin-bottom:-1px;
	margin-top:1px;
	_margin-bottom:1px;
}

