/* 
!================================================ RESET and BASE STYLES 
*/

/* put up april 4 2011 */

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin:0;
  padding:0;
  border:0;
  outline:0;
  font-size:100%;
  vertical-align:baseline;
  background:transparent;
  -webkit-background-clip: padding-box;
}                  

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { 
    display:block;
}

nav ul { list-style:none; }

blockquote, q { quotes:none; }

blockquote:before, blockquote:after,
q:before, q:after { content:''; content:none; }

a { margin:0; padding:0; font-size:100%; vertical-align:baseline; background:transparent; }

ins { background-color:#ff9; color:#000; text-decoration:none; }

mark { background-color:#ff9; color:#000; font-style:italic; font-weight:bold; }

del { text-decoration: line-through; }

abbr[title], dfn[title] { border-bottom:1px dotted; cursor:help; }

/* tables still need cellspacing="0" in the markup */
table { border-collapse:collapse; border-spacing:0; }

hr { display:block; height:1px; border:0; border-top:1px solid #ccc; margin:1em 0; padding:0; }

input, select { vertical-align:middle; }

/* END RESET CSS */


/* fonts.css from the YUI Library: developer.yahoo.com/yui/
   Refer to developer.yahoo.com/yui/3/cssfonts/ for font sizing percentages

  There are three custom edits:
   * remove arial, helvetica from explicit font stack
   * we normalize monospace styles ourselves
   * table font-size is reset in the HTML5 reset above so there is no need to repeat
*/
body { font:13px/1.231 sans-serif; *font-size:small; } /* hack retained to preserve specificity */

select, input, textarea, button { font:99% sans-serif; }

/* normalize monospace sizing 
 * en.wikipedia.org/wiki/MediaWiki_talk:Common.css/Archive_11#Teletype_style_fix_for_Chrome
 */
pre, code, kbd, samp { font-family: monospace, sans-serif; }
 

/* 
 * minimal base styles 
 */


body, select, input, textarea { 
  /* #444 looks better than black: twitter.com/H_FJ/statuses/11800719859 */ 
  color: #444; 
  /* set your base font here, to apply evenly */
  /* font-family: Georgia, serif;  */   
}

/* Headers (h1,h2,etc) have no default font-size or margin,
   you'll want to define those yourself. */ 
h1,h2,h3,h4,h5,h6 { font-weight: bold; }

/* always force a scrollbar in non-IE */ 
html {
	overflow-y: scroll;
	}

 
/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #607890; }
a:hover { color: #036; }


ul, ol { margin-left: 1.8em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; } 

small { font-size: 85%; }
strong, th { font-weight: bold; }
.center {text-align: center;}
td, td img { vertical-align: top; } 

sub { vertical-align: sub; font-size: smaller; }
sup { vertical-align: super; font-size: smaller; }

pre { 
  padding: 15px; 
  
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; /* CSS2 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3 (and 2.1 as well, actually) */
  word-wrap: break-word; /* IE */
}
 
textarea { overflow: auto; } /* thnx ivannikolic! www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/ */

.ie6 legend, .ie7 legend { margin-left: -7px; } /* thnx ivannikolic! */

/* align checkboxes, radios, text inputs with their label
   by: Thierry Koblentz tjkdesign.com/ez-css/css/base.css  */
input[type="radio"] { vertical-align: text-bottom; }
input[type="checkbox"] { vertical-align: bottom; }
.ie7 input[type="checkbox"] { vertical-align: baseline; }
.ie6 input { vertical-align: text-bottom; }

/* hand cursor on clickable input elements */
label, input[type=button], input[type=submit], button { cursor: pointer; }
 
/* webkit browsers add a 2px margin outside the chrome of form elements */  
button, input, select, textarea { margin: 0; }

/* colors for form validity */
input:valid, textarea:valid   {  }
input:invalid, textarea:invalid { 
      border-radius: 1px;
    -moz-box-shadow: 0px 0px 5px red; 
 -webkit-box-shadow: 0px 0px 5px red; 
         box-shadow: 0px 0px 5px red;
}
.no-boxshadow input:invalid, 
.no-boxshadow textarea:invalid { background-color: #DDE3F0; }


/* These selection declarations have to be separate.
   No text-shadow: twitter.com/miketaylr/status/12228805301 
   Also: hot pink. */
::-moz-selection{ background: #00487F; color:#fff; text-shadow: none; }
::selection { background:#00487F; color:#fff; text-shadow: none; } 

/*  j.mp/webkit-tap-highlight-color */
a:link { -webkit-tap-highlight-color: #00487F; } 

/* make buttons play nice in IE:    
   www.viget.com/inspire/styling-the-button-element-in-internet-explorer/ */
button {  width: auto; overflow: visible; }
 
/* bicubic resizing for non-native sized IMG: 
   code.flickr.com/blog/2008/11/12/on-ui-quality-the-little-things-client-side-image-resizing/ */
.ie7 img { -ms-interpolation-mode: bicubic; }



/* 
 * Non-semantic helper classes 
 */

/* for image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }

/* Hide for both screenreaders and browsers
   css-discuss.incutio.com/wiki/Screenreader_Visibility */
.hidden { display: none; visibility: hidden; } 

/* Hide only visually, but have it available for screenreaders 
   www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden  */
.visuallyhidden { position: absolute !important;    
  clip: rect(1px 1px 1px 1px); /* IE6, IE7 */
  clip: rect(1px, 1px, 1px, 1px); }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* >> The Magnificent CLEARFIX: Updated to prevent margin-collapsing on child elements << j.mp/bestclearfix */
.clearfix:before, .clearfix:after {
  content: "\0020"; display: block; height: 0; visibility: hidden;	
} 

.clearfix:after { clear: both; }
/* Fix clearfix: blueprintcss.lighthouseapp.com/projects/15318/tickets/5-extra-margin-padding-bottom-of-page */
.clearfix { zoom: 1; }

/*
 * Media queries for responsive design
 * These follow after primary styles so they will successfully override. 
 */

@media all and (orientation:portrait) { 
  /* Style adjustments for portrait mode goes here */
  
}

@media all and (orientation:landscape) { 
  /* Style adjustments for landscape mode goes here */
  
}

/* Grade-A Mobile Browsers (Opera Mobile, iPhone Safari, Android Chrome)  
   Consider this: www.cloudfour.com/css-media-query-for-mobile-is-fools-gold/ */
@media screen and (max-device-width: 480px) {
  
  
  /* Uncomment if you don't want iOS and WinMobile to mobile-optimize the text for you
     j.mp/textsizeadjust 
  html { -webkit-text-size-adjust:none; -ms-text-size-adjust:none; } */
}

/* 
 * print styles
 * inlined to avoid required HTTP connection www.phpied.com/delay-loading-your-print-css/ 
 */
@media print {
  * { background: transparent !important; color: #444 !important; text-shadow: none !important; }
  a, a:visited { color: #444 !important; text-decoration: underline; }
  a:after { content: " (" attr(href) ")"; } 
  abbr:after { content: " (" attr(title) ")"; }
  .ir a:after { content: ""; }  /* Don't show links for images */
  pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
  thead { display: table-header-group; } /* css-discuss.incutio.com/wiki/Printing_Tables */ 
  tr, img { page-break-inside: avoid; }
  @page { margin: 0.5cm; }
  p, h2, h3 { orphans: 3; widows: 3; }
  h2, h3{ page-break-after: avoid; }
}


/* 
!================================================ SPECIFIC STYLES 
*/

/* 
  Styles for layout, colors and images
*/

html {
	background: #274464 url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/bg.jpg) top left repeat-x;
	height: 100%;
	}
body {
	background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/bg-center.jpg) 50% 77px no-repeat;
	min-height: 100%;
	width: 955px;
	margin: 0px auto;
	padding-bottom: 80px;
	}
	* html body {
		width: 990px;
		}
/* Base structure */

#header {height: 60px; padding: 17px 0 0 0;}
#herobox {height: 325px;margin-bottom: 10px;}
#footer {margin-top: 20px;}
#customer-quotes {float: left; width: 435px;}
#plan-info {float: right; width: 515px;}

/* base text */
blockquote {
	font-family: "Times New Roman", Times, serif;
	color: #354C68;
	font-size: 18px;}
cite {
	font-family: Verdana, Arial, sans-serif;
	font-size: 11px;
	color: #A1ABB7;
	}

/* universals */
.buttonish {
	color: #fff !important;
	display: inline-block;
	background: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) 0px -150px no-repeat;
	width: 235px;
	height: 48px;
	text-indent: -1000em;
	overflow: hidden;
	vertical-align: middle;
	}
	.buttonish:hover {
		background-position: 0px -200px;
		}
.float-left {float: left;}
.float-right {float: right;}
.column45 {width: 45%;}
.column60 {width: 60%;}
.font-handwriting {font-family: 'Reenie Beanie', arial, serif; }

	/* Buttons */
	#header .buttonish {
		background-position: 0px -50px;
		width: 155px;
		height: 40px; 
		}
		#header .buttonish:hover {
			background-position: 0px -100px;}
	#herobox .buttonish {
		width: 277px;
		height: 94px;
		background-position: 0px -250px;
		margin-top: 30px;
		}
		#herobox .buttonish:hover {
			background-position: 0px -350px;}
	#footer .buttonish {
		margin: -12px 0px;}

/* Header */
	#header {
		color: #A5C2DD;
		font-size: 16px;}
	#logo {
		background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) 0px 0px no-repeat;
		height: 47px;
		width: 280px;
		text-indent: -1000em;
		float: left;
		}
	#header-contact {float: right;}
	#header-contact strong {
		font-size: 20px;
		color: #fff;
		font-weight: normal;
		}

/* herobox */
	#herobox {
		color: #154E81;
		font-weight: bold;
		text-align: center;
		position: relative;
		}
		#herobox .title {
			position: relative;
			z-index: 5;
			padding: 50px 55px 0 445px;
			}
		#herobox h1 {
			font-size: 3em;
			}
		#herobox h2 {
			font-size: 1.7em;
			}
	#trial-start {
		background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/heroshot.png) 0px 0px no-repeat;
		width: 455px;
		height: 270px;
		position: absolute;
		left: 15px;
		bottom: -89px;
		z-index: 4;
		padding: 135px 40px 0px 450px;
		}
	#trial-bonus {
		float: left;
		width:  180px;
		position: relative;
		}
		#trial-bonus h4 {
			position: absolute;
			top:0px;
			left: 0px;
			width: 148px;
			height: 77px;
			background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) 0px -600px no-repeat;
			text-indent: -10000em;
			overflow: hidden;
			}
		.report-icon {
			padding: 63px 0px 0px 64px;
			font-size: 13px;
			color: #7495B6;
			font-weight: normal;
			text-align: left;
			position: relative;
			}
			.report-icon .icon {
				background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) -167px -50px no-repeat;
				width: 60px;
				height: 70px;
				position: absolute;
				top:53px;
				left: 3px;
				}
			#nissan-logo {
				display: inline-block;
				overflow: hidden;
				text-indent: -1000px;
				background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) 0px -467px no-repeat;
				height: 9px;
				width: 64px;
				}
	#trial-signup {
		float: right;
		width: 275px;
		height: 150px;
		position: relative;
		}
		#trial-signup,
		#trial-signup small,
		#trial-signup a {
			color: #72b0da;
			font-size: 12px;
			font-weight: normal;
			zoom: 1;
			}
		#trial-signup .buttonish {
			position: absolute;
			top:0px;
			right: 0px;}
		#trial-signup small {
			position: absolute;
			bottom: 10px;
			left:0px;
			width: 100%;
			text-align: center;}
		
/* content */
#content {
	z-index: 10;
	position: relative;
	border-radius: 0px 0px 14px 14px;}
#plan-info {
	position: relative;
	z-index:5;
	font-size: 11px;
	color: #808080;
	}
	#plan-info ul {padding: 30px 0px 0px 11px; font-size: 14px;}
	#plan-info li {margin: 0px 0px 5px 0px;}
	#plan-info>a {margin-left: 200px;}
	#plan-info .title,
	#plan-info ul {
		padding-right: 210px;
		}
	#plan-info .title {
		color: #8F9CAF;
		font-size: 32px;}
del {
	text-decoration: none;
	position: relative;
	z-index: 1;
	}
	del:before {
		content: "";
		background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) -160px -464px no-repeat;
		display: block;
		height: 23px;
		width: 100px;
		left: -4px;
		top:0px;
		position: absolute;
		z-index: 3;
		}
	del small {font-size: 19px;}
	#discount {
		position: absolute;
		top:22px;
		left: 60px;
		font-size: 35px;
		color: #BB3700;
		font-weight: normal;
		z-index: 3
		}
	

.decorative-person {
	width: 227px;
	height: 276px;
	background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/person.jpg) 0px 0px no-repeat;
	position: absolute;
	top:-34px;
	right:0px;
	z-index: 2;
	}
	
/* quote */
#customer-quotes {
	margin-left: 33px;
	}
.quote {
	height: 90px;
	background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/blocks.png) -955px -96px no-repeat;
	margin-bottom: 15px;
	position: relative;
	padding: 5px 15px 0px 170px;
	}
	.quote:first-child {
		background-position: -955px 0px;
		}
	.quote .logo {
		background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/elements.png) no-repeat;
		text-indent: -1000em;
		width: 160px;
		height: 40px;
		top:30px;
		left: 20px;
		position: absolute;
		}
	.quote cite {
		text-align: right;
		display: block;}
	
	/* logos and padding */
	#garden-fresh {padding-top: 20px;height: 75px;}
	#garden-fresh .logo {
		background-position: 0px -494px;
		top:25px;
		}
	#Discovery .logo {
		background-position: 0px -551px;
		}

/* footer */
#footer {
	width: 955px;
	margin: 0px auto;
	padding-top: 20px;
	}
	#footer,
	#footer a {
		color: #9FBCCF;
		text-align: center;
		}
#footer-contact {
	background: transparent url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/blocks.png) top left no-repeat;
	height: 50px;
	padding: 25px 10px 10px 25px;
	color: #274464;
	font-size: 16px;
	}
	#footer-contact strong {
		font-size: 20px;}
	#footer-contact .float-right {
		color: #65778B;}
	
/* footer nav */
.nav {text-align: center;}
.nav li {display: inline;}
	.nav li:before {content: " \2022 \A0";}
	.nav li:first-child:before {content: "";}
.nav a {text-decoration: none;}
.nav a:hover {text-decoration: underline;}

/* ligthbox */
#fancybox-inner {
	background: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/modal-bg.jpg) top right no-repeat #fff;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;
	}
	#signup {
		padding: 25px;}
	#fancybox-inner h1 {
		margin: 0px 0px 20px 0px;
		color: #154E81;
		font-weight: bold;
		font-size: 2.2em;
		}
	#signup .float-left {
		margin-left: 35px;
		}
		#fancybox-inner .sg_Table td,
		#fancybox-inner .sg_Table th {
			padding: 4px 5px 3px 2px;
			white-space: nowrap;
			}
		#fancybox-inner .sg_Table th {
			text-align: right;
			line-height: 24px;
			}
		#agreetable td {
			white-space: normal !important;}
	#fancybox-inner small {
		display: block;
		font-style: italic;
		color: #666;
		padding: 2px 5px;
		}
	#fancybox-inner input {
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
		border-radius: 3px;
		-moz-box-shadow: inset 0px 0px 5px rgba(0,0,0,.2);
		-webkit-box-shadow: inset 0px 0px 5px rgba(0,0,0,.2);
		box-shadow: inset 0px 0px 5px rgba(0,0,0,.2);
		border:1px solid #94A0BA;
		padding: 5px 4px 4px 4px;
		color: #828996;
		}
		#fancybox-inner input:focus {
			-moz-box-shadow: inset 0px 1px 1px rgba(0,0,0,.4);
			-webkit-box-shadow: inset 0px 1px 1px rgba(0,0,0,.4);
			box-shadow: inset 0px 1px 1px rgba(0,0,0,.4);
			border:1px solid #596682;
			color: #000;
			
		}
		#fancybox-inner .sg_Checkbox {
			border: 0px none;}
	#agreetable {margin: 10px 0px 0px 0px;}
	.row-final label {text-align: center; display: block;padding: 10px 0px 30px 0px; cursor: default;}
	#fancybox-inner .button {
		-moz-border-radius: 7px;
		-webkit-border-radius: 7px;
		border-radius: 7px;
		
		-moz-box-shadow: 0px 1px 1px rgba(0,0,0,.4), inset 0px 0px 3px #FFF22F;
		-webkit-box-shadow: 0px 1px 1px rgba(0,0,0,.4), inset 0px 0px 3px #FFF22F;
		box-shadow: 0px 1px 1px rgba(0,0,0,.4), inset 0px 0px 3px #FFF22F;
		
		background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #EF5E17),color-stop(1, #FFAB35));
		background-image: -moz-linear-gradient(center bottom,#EF5E17 0%,#FFAB35 100%);
		
		font-size: 18px;
		border:1px solid #000;
		padding: 6px 12px;
		color: #fff;
		background-color: #F96300;
		text-shadow: 0px 1px 1px #000;
		}
		#fancybox-inner .button:hover,
		#fancybox-inner .button:focus {
			background-color: #FC902A;
			background-image: -webkit-gradient(linear,left bottom,left top,color-stop(0, #FF8235),color-stop(1, #FFC249));
			background-image: -moz-linear-gradient(center bottom,#FF8235 0%,#FFC249 100%);
			
			-moz-box-shadow: 0px 0px 1px rgba(0,0,0,.4), inset 0px 0px 3px #FFF22F;
			-webkit-box-shadow: 0px 0px 1px rgba(0,0,0,.4), inset 0px 0px 3px #FFF22F;
			box-shadow: 0px 0px 1px rgba(0,0,0,.4), inset 0px 0px 3px #FFF22F;
		
			color: #fff;
			}
	#fancybox-inner .legal {
		font-size: 11px;
		padding: 10px;
		color: #898989;}
		
/* WP admin */
.post-edit-link {
	position: fixed;
	bottom: 0px;
	left: 5px;
	background: rgba(255,255,255,.5);
	-moz-border-radius:6px 6px 0px 0px;
	padding: 5px;
	}
	.post-edit-link:hover {
	background: rgba(255,255,255,.65);
	}
	
	
	
/* IE6 */
	.ie6 .buttonish,
	.ie6 #logo,
	.ie6 #trial-bonus h4,
	.ie6 .report-icon .icon,
	.ie6 #nissan-logo,
	.ie6 .quote .logo {
		background-image: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/ie6-elements.png);
		}
	.ie6 #trial-start {
		background-image: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/ie6-heroshot.png);
		}
	.ie6 .report-icon .icon {
		left: -60px;
		}
	.ie6 #customer-quotes {
		margin: 0px;
		}	
	.ie6 #trial-start {
		bottom: -105px;
		}
		
		
		
/* !------------------------------------------ ENTERPRISE PAGE */

.notebook-paper {
	width: 462px;
	height: 617px;
	background: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/landing-notepad.png) top left no-repeat;
	position: absolute;
	top:-14px;
	right: 0px;
	z-index: 100;
	}
.notepad-text {
	width: 462px;
	height: 617px;
	background: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/landing-text.png) 21% 52% no-repeat;
	}
	.notepad-text li {
		display: none;}
	#content {
		padding-right: 500px;}
	#content img {
		padding: 0px 25px 100px 0px;}
	#herobox .title {
		padding: 80px 25px 0px 20px;
		text-align: left;}
	#herobox .button-container {
		padding: 20px 560px 0px 20px;}
		#herobox .buttonish {margin: 0px;}
#content {
	color: #808080;
	line-height: 18px;
	
	height: auto;
	background: #fff;	
	padding-right: 36em;
	
	}
	#content p {
		padding: 0px 0px 10px 10px;}
	#content h2 {
		color: #154E81;
		font-size: 1.6em;
		padding: 10px 0px 15px 0px;
		} 


/* IE */

.ie8 #content {
	padding-bottom: 20px;
	}

.ie7 #main {overflow: visible;}
.ie7 #herobox {
	z-index: 50;}
.ie7 #content {
	z-index: 40;
	position: relative;
	overflow: visible;
	padding-bottom: 20px;
	}
	.ie7 #content p, .ie7 #content h2 {
	padding-left: 170px;
	overflow: visible;}
	.ie7 #content img {
		position: absolute;
		top:0px;
		left: 0x;}
.ie7 #hero-button {
	position: absolute;
	top:180px;
	left: 140px;}
	
.ie6 #main {overflow: visible;}
.ie6 #herobox {
	z-index: 50;}
.ie6 #content {
	z-index: 40;
	position: relative;
	overflow: visible;
	padding-bottom: 20px;
  height: 1%;

	}
	.ie6 #content p, .ie6 #content h2 {
	padding-left: 170px;
	overflow: visible;
	background: #fff;}
	.ie6 #content img {
		position: absolute;
		top:0px;
		left: 0x;}
.ie6 #hero-button {
	position: absolute;
	top:180px;
	left: 140px;}
.ie6 #footer-button {
	line-height: 0px;
	padding: 0px;
	margin: 0px;
	zoom: 1;
	height: 40px;
	display: inline-block;
	}
.ie6 #footer-contact .float-right {
	position: relative;
	top:-10px;}	

.ie6 .notebook-paper {
	background: url(//d34wpjv4rf3nwa.cloudfront.net/www1/wp-content/themes/trelane/___gui/landing/landing-notepad-ie6.png) top left no-repeat;
	}

.ie6 #fancybox-wrap,
.ie7 #fancybox-wrap,
.ie8 #fancybox-wrap {
	background: #000;}
	.ie6 #fancybox-overlay {
		visibility: hidden;
		background: transparent;}