/* 
  HTML5 ✰ Boilerplate 
  
  style.css contains a reset, font normalization and some base styles.
  
  credit is left where credit is due.
  much inspiration was taken from these projects:
    yui.yahooapis.com/2.8.1/build/base/base.css
    camendesign.com/design/
    praegnanz.de/weblog/htmlcssjs-kickstart
*/

/* 
  html5doctor.com Reset Stylesheet (Eric Meyer's Reset Reloaded + HTML5 baseline)
  v1.4 2009-07-27 | Authors: Eric Meyer & Richard Clark
  html5doctor.com/html-5-reset-stylesheet/
*/

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;
}                  

html, body { height: 100%; }

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: Helvetica, sans-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; }

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: #f0dddd; }


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

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

/* 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; }


 /* Primary Styles
    Author: 
 */


div.label { position: relative; float: left; }

label.over-apply { color: #aaa; font-weight:100; position: absolute; top: 3px; left: 5px; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/ }


body { 
background-color:#eed;
/*
background: #EEE url(../images/tex_bg.png) repeat-x; 
*/
}

#container { width:980px; margin: 0 auto; padding:0px; }

#head_bar { 
	width:980px; height: 169px; margin:0px; 
	
	/*background: #363030 url(../images/bar_bg.png) repeat-x; */
	background-color:#444;
	 
	position:relative; 
	-moz-border-radius-bottomright: 10px; 
	border-bottom-right-radius: 10px; 
	-moz-border-radius-bottomleft: 10px; 
	border-bottom-left-radius: 10px;
	}

#login_block { width:180px; float:right; margin-right:10px; margin-top:60px; }
#login_block div.label { color:#333; }
#login_block div, #login_block input { float:right; }
input.eb_text_input { width:180px; height:18px; border:1px solid #666; padding:0px; color:#444; background-color: #fff; margin-bottom:5px; margin-right:20px; 
	-moz-border-radius: 4px; 
	border-radius: 4px; 
	}
#login_block a { color:#aaa; text-decoration: none; font-weight:100; padding-top:18px;  }
#login_block a:hover { color:#fff; text-decoration: underline; }
#login_block input.eb_submit { width:60px; height:27px; padding:2px 8px; color:#444; background-color:#999; border:0px; 
	-moz-border-radius: 4px; 
	border-radius: 4px; 
	}
	
/*
#index div#logo_mark 		{ width:79px; height:87px; display:block; background: #363030 url(../images/logo_mark_01.png) no-repeat; position:absolute; top:39px; left:77px; }	
#demo div#logo_mark, #login div#logo_mark  		{ width:77px; height:85px; display:block; background: #363030 url(../images/logo_mark_02.png) no-repeat; position:absolute; top:40px; left:78px; }	
#pricing div#logo_mark 		{ width:79px; height:87px; display:block; background: #363030 url(../images/logo_mark_03.png) no-repeat; position:absolute; top:40px; left:78px; }	
#supplier_hub div#logo_mark { width:79px; height:87px; display:block; background: #363030 url(../images/logo_mark_04.png) no-repeat; position:absolute; top:40px; left:77px; }	
#news div#logo_mark 		{ width:79px; height:87px; display:block; background: #363030 url(../images/logo_mark_05.png) no-repeat; position:absolute; top:40px; left:78px; }	
#about_us div#logo_mark 	{ width:79px; height:87px; display:block; background: #363030 url(../images/logo_mark_06.png) no-repeat; position:absolute; top:40px; left:78px; }	
*/
div#logo_mark 		{ width:79px; height:86px; display:block; background: transparent url(../images/logo_knockout.png) no-repeat; position:absolute; top:39px; left:77px; }	
#logo_text { width:148px; height:27px; display:block; background: #444 url(../images/logo_text.png) no-repeat; position: absolute; top:125px; left:230px; }	

#menu_bar { width:980px; height:45px; margin:0px; margin-top:15px; 
	/*
	background: #363030 url(../images/bar_bg.png) repeat-x; 
	*/
	background-color:#444; 
	position:relative; 
	-moz-border-radius: 10px; 
	border-radius: 10px; 
	}

ul#main_menu { display:inline; position:absolute; left:375px; width:605px; height:45px; margin:0px; padding:0px; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/ }
ul#main_menu li { list-style: none; float:left; margin-left:10px; }
ul#main_menu li a { text-decoration: none; color:#fff; display:block; padding:0px 14px; padding-top:12px; padding-bottom:4px; font-size:1em; font-weight:100; }
ul#main_menu li a:hover { text-decoration: none; }

li#nav_index a.sel 			{ border-bottom:6px solid #fff; }
li#nav_demo a.sel 			{ border-bottom:6px solid #8CC63F; }
li#nav_pricing a.sel 		{ border-bottom:6px solid #F7931E; }
li#nav_supplier_hub a.sel 	{ border-bottom:6px solid #FCEE21; }
li#nav_news a.sel 			{ border-bottom:6px solid #C7B299; }
li#nav_about_us a.sel 		{ border-bottom:6px solid #00FFFF; }

li#nav_index  a:hover 		{ color: #FFF; }
li#nav_demo a:hover 		{ color: #8CC63F; }
li#nav_pricing a:hover 		{ color: #F7931E; }
li#nav_supplier_hub a:hover { color: #FCEE21; }
li#nav_news a:hover 		{ color: #C7B299; }
li#nav_about_us a:hover 	{ color: #00FFFF; }

.demo_col 		{ color: #8CC63F; }
.pricing_col 	{ color: #F7931E; }
.supplier_col 	{ color: #FCEE21; }
.news_col 		{ color: #C7B299; }
.about_us_col 	{ color: #00FFFF; }

#main { width:980px; min-height:363px; background-color:#FFF; border:1px solid #aaa; margin-top:15px; position:relative; 
	-moz-border-radius: 10px; 
	border-radius: 10px; 
	}
	
#left_main_block { width: 375px; border-right:1px solid #eee; position:absolute; left:0px; top:0px; min-height:363px; margin:0px; padding:0px; }
#left_main_block h1 { margin:14px 12px; 
	/*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/ 
	font-weight: 100;
	font-size:2.4em; 
	color:#534741; 
	}
#left_main_block h1.strong { font-weight: 200; }


h2 { margin-bottom:10px; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/ 
	font-weight: 500;
	font-size:2em; 
	color:#534741;
	}
	

#main_sub_nav { width: 368px; border-right:14px solid ; position:absolute; left:0px; top:0px; height:100%; margin:0px; padding:0px; overflow: hidden; }
#main_sub_nav ul { margin:0px; padding:0px; }
#main_sub_nav ul li { list-style: none; width: 368px; height:45px; border-bottom: 1px solid #ccc;}
#main_sub_nav ul li a.first { -moz-border-radius-topleft: 10px; border-top-left-radius: 10px; }
#main_sub_nav ul li a { width:348px; height:31px; display: block; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/  font-size:1.2em; font-weight:100; text-decoration: none; color:#534741; padding-top:14px; padding-left:20px; }
#main_sub_nav ul li a:hover { background-color: #eee; }
#main_sub_nav ul li a.first:hover { background-color: #eee; -moz-border-radius-topleft: 10px; border-top-left-radius: 10px; }
#main_sub_nav ul li a.sel, #main_sub_nav ul li a.sel:hover { color:#fff; }
#main_sub_nav ul li a strong { font-weight: 300; }

#main_sub_nav.pricing { border-color:#F7931E; }
#main_sub_nav.pricing ul li a.sel, #main_sub_nav.pricing ul li a.sel:hover { color:#fff; background-color: #F7931E; }
.pricing_table { width:100%; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/  font-size:1em; font-weight:200; }
.pricing_table th { padding:10px 0px; }
.pricing_table td { border:1px solid #eee; padding:8px 4px; }

#main_sub_nav.demo { border-color:#8CC63F; }
#main_sub_nav.demo ul li a.sel, #main_sub_nav.demo ul li a.sel:hover { color:#fff; background-color: #8CC63F; }

#main_sub_nav.login { border-color:#8CC63F; }
#main_sub_nav.login ul li a.sel, #main_sub_nav.login ul li a.sel:hover { color:#fff; background-color: #8CC63F; }

#main_sub_nav.supplier_hub { border-color:#FCEE21; }
#main_sub_nav.supplier_hub ul li a.sel, #main_sub_nav.supplier_hub ul li a.sel:hover { color:#444; background-color: #FCEE21; }

#main_sub_nav.news { border-color:#C7B299; }
#main_sub_nav.news ul li a.sel, #main_sub_nav.news ul li a.sel:hover { color:#444; background-color: #C7B299; }

#main_sub_nav.about_us { border-color:#00FFFF; }
#main_sub_nav.about_us ul li a.sel, #main_sub_nav.about_us ul li a.sel:hover { color:#444; background-color: #00FFFF; }

#right_image_block span.home_scroll { position:relative; left:388px; top:0px; width:565px; min-height:335px; display:block; margin:10px; }
#right_image_block span.home_scroll p { font-size:1.2em; line-height:24px; font-weight:300; margin-bottom:10px; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/  }
#right_image_block span.home_scroll p strong { font-weight:500; }

#secondary { width:980px; height:244px; margin-top:15px; margin-bottom:25px; position:relative; padding:0px; display:block;
	/*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/ 
	}

.pad_10 { margin:10px; display:block;}	

#secondary h1 { font-size:1.1em; margin-bottom:10px; }
#secondary p { font-size:1.2em; margin-bottom:13px; font-weight: 300; line-height:24px; }
#secondary form { margin-bottom:20px; }
.chunky_form input.eb_text_input { width:240px; height:22px; border:1px solid #aaa; padding:2px; color:#444; margin-right:10px;
	-moz-border-radius: 4px; 
	border-radius: 4px; 
	}
.chunky_form textarea.eb_textarea_input { width:400px; height:220px; border:1px solid #aaa; padding:2px; color:#444; margin-right:10px;
	-moz-border-radius: 4px; 
	border-radius: 4px; 
	}
#secondary form input.default {
	color:#ddd;
	}
	
input.eb_submit { height:27px; padding:2px 6px; color:#fff; background-color:#999; border:0px; 
	-moz-border-radius: 4px; 
	border-radius: 4px; 
	}
	
#sign_up_block { width:368px; min-height:262px; background-color:#fafafa; border:1px solid #aaa; margin:0px; float:left; 
	-moz-border-radius: 10px; 
	border-radius: 10px; 
	}
#sign_up_block h1, #statement_block h1 { font-weight:200; font-size:2em; text-shadow: 1px 1px 1px #FFF;  }


/*
#free_trial_tag { z-index: 999; position:absolute; margin-top:-140px; margin-left:192px; background: transparent url(../images/30_days_tag.png) no-repeat; width:181px; height:189px; }
*/

#free_trial_tag { z-index: 999; position:absolute; margin-top:-170px; margin-left:210px; background: transparent url(../images/30_days_tag_2.png) no-repeat; width:205px; height:219px; }
#free_trial_tag a { width:205px; height:219px; display:block; }

.valid { border:1px solid #6f6 !important; }
.invalid { border:1px solid #f66 !important; }

#statement_block { width:598px; min-height:262px; background-color:#fafafa; border:1px solid #aaa; margin:0px;margin-right:-2px; float:right; 
	-moz-border-radius: 10px; 
	border-radius: 10px; 
	}

#statement_block span.main_statement h1 { font-size:2em; font-weight:200 !important; margin-top:10px; text-shadow: 0px 0px 2px #FFF; line-height:32px; }

* {outline: none;}

/*  
Sticky Footer Solution
by Steve Hatcher 
http://stever.ca
http://www.cssstickyfooter.com
*/

#wrap {min-height: 100%;width:1000px; padding:0px; margin:0px auto;}

#container { padding-bottom: 150px; }  /* must be same height as the footer */

#footer {position: relative;
	margin:0px auto;
	margin-top: -150px; /* negative value of footer height */
	height: 150px;
	clear:both;
	width:980px;
	/*
	background: #363030 url(../images/bar_bg.png) repeat-x; position:relative; 
	*/
	background-color:#444; 
	-moz-border-radius-topright: 10px; 
	border-top-right-radius: 10px; 
	-moz-border-radius-topleft: 10px; 
	border-top-left-radius: 10px;
	} 

#footer div.footer_col { width:220px; margin-top:20px; float:left;margin-left:20px; /*font-family: "futura-pt-1","futura-pt-2",sans-serif;*/  }
#footer div.footer_col h1 { font-size:1em; font-weight: 500; margin-bottom: 12px; color:#eee; }
#footer div.footer_col p {  font-size:0.8em; font-weight: 100; margin-bottom: 8px; color:#ddd; }
#footer a, #footer a:hover { text-decoration: none; }

#twitter_footer { position: absolute; width:32px; height:22px; margin-left:180px; margin-top:-10px; z-index: 998; }

/*Opera Fix*/
body:before {/* thanks to Maleika (Kohoutec)*/
	content:"";
	height:100%;
	float:left;
	width:0;
	margin-top:-32767px;/* thank you Erik J - negate effect of float*/
	}
	
/*
 * 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; }
}




