html, body, body div, span, object, iframe,
h1, h2, h3, h4, h5, h6, 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: 0px;
  padding: 0;
  border: 0;
  font-size: 100%;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q { quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after { content: ""; content: none; }

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; }

table { border-collapse: collapse; border-spacing: 0; }

hr { display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0; }


/**
 * Font normalization inspired by YUI Library's fonts.css: developer.yahoo.com/yui/
 */





/**
 * Minimal base styles.
 */

/* 1) Always force a scrollbar in non-IE
   2) Remove iOS text size adjust without disabling user zoom: www.456bereastreet.com/archive/201012/controlling_text_size_in_safari_for_ios_without_disabling_user_zoom/ */
html { height: 100%; }

/* j.mp/webkit-tap-highlight-color */
a:link {
	-webkit-tap-highlight-color: #0066cc;
	text-decoration: none;
}

/* Accessible focus treatment: people.opera.com/patrickl/experiments/keyboard/test */
a:hover, a:active { outline: none; }

a, a:active, a:visited { color: #0066cc; }
a:hover { color: #3399ff; }

ul, ol { margin-left: 2em; }
ol { list-style-type: decimal; }

/* Remove margins for navigation lists */
nav ul, nav li { margin: 0; list-style:none; list-style-image: none; }

small { font-size: 85%; }
b, strong, th { font-weight: bold; }



/* Set sub, sup without affecting line-height: gist.github.com/413730 */
sub, sup { font-size: 75%; line-height: 0; position: relative; }
sup { top: -0.5em; }
sub { bottom: -0.25em; }

pre {
  /* www.pathf.com/blogs/2008/05/formatting-quoted-code-in-blog-posts-css21-white-space-pre-wrap/ */
  white-space: pre; white-space: pre-wrap; word-wrap: break-word;
  padding: 15px;
}

.ie6 legend, .ie7 legend { margin-left: -7px; }

/* 1) Make inputs and buttons play nice in IE: www.viget.com/inspire/styling-the-button-element-in-internet-explorer/
   2) WebKit browsers add a 2px margin outside the chrome of form elements.
      Firefox adds a 1px margin above and below textareas
   3) Set font-size to match <body>'s, and font-family to sans-serif
   4) Align to baseline */
button, input, select, textarea { width: auto; overflow: visible; margin: 0; font-size: 100%; font-family: sans-serif; vertical-align: baseline; }

/* 1) Remove default scrollbar in IE: www.sitepoint.com/blogs/2010/08/20/ie-remove-textarea-scrollbars/
   2) Align to text-top */
textarea { overflow: auto; vertical-align:text-top; }

/* Hand cursor on clickable input elements */
label, input[type="button"], input[type="submit"], input[type="image"], button { cursor: pointer; }

/* Remove extra padding and inner border in Firefox */
input::-moz-focus-inner,
button::-moz-focus-inner { border: 0; padding: 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; }

/* 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; }


/**
 * You might tweak these..
 */

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;  */
}


/* These selection declarations have to be separate
   No text-shadow: twitter.com/miketaylr/status/12228805301
   Also: hot pink! */
::-moz-selection { background: #fe57a1; color:#fff; text-shadow: none; }
::selection { background:#fe57a1; color:#fff; text-shadow: none; }

/**
 * Primary styles
 *
 * Author:
 */
















/**
 * Non-semantic helper classes: please define your styles before this section.
 */

/* For image replacement */
.ir { display: block; text-indent: -999em; overflow: hidden; background-repeat: no-repeat; text-align: left; direction: ltr; }
.ir br { display: none; }

/* 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: by Jon Neal.
  www.webaim.org/techniques/css/invisiblecontent/  &  j.mp/visuallyhidden */
.visuallyhidden { border: 0; clip: rect(0 0 0 0); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }
/* Extends the .visuallyhidden class to allow the element to be focusable when navigated to via the keyboard: drupal.org/node/897638 */
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus { clip: auto; height: auto; margin: 0; overflow: visible; position: static; width: auto; }

/* Hide visually and from screenreaders, but maintain layout */
.invisible { visibility: hidden; }

/* The Magnificent Clearfix: Updated to prevent margin-collapsing on child elements in most situations.
   nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; clear: both;}



/**
 * Placeholder media queries for responsive design. Modify as design requires.
 * These follow after, and will override, the primary ('mobile first') styles
 * The closing /mediaquery comment is required by respond.js min/max-width Media Query polyfill
 */

@media only screen and (min-width: 480px) {
  /* Style adjustments for viewports 480px and over go here */

}/*/mediaquery*/

@media only screen and (min-width: 768px) {
  /* Style adjustments for viewports 768px and over go here */

}/*/mediaquery*/



/**
 * Print styles.
 *
 * Inlined to avoid required HTTP connection: www.phpied.com/delay-loading-your-print-css/
 */


/** END HTML5 Boilerplate CSS **/


/** START Starkers CSS **/

/* LAYOUT */
/* ----------------------------------------- */

/* These rather presentational classes are generated by WordPress, so it's useful to have some styles for them. Edit as you see fit. More info: http://codex.wordpress.org/CSS */
.aligncenter { display:block; margin:0 auto }
.alignleft {
	float:left;
	margin-right: 20px;
	margin-bottom: 20px;
}
.alignright { float:right }
.wp-caption { border:1px solid #666; text-align:center; background:#ccc; padding:10px; margin:10px }

/* You might find the following useful */
/* div, ul, li { position:relative } This will save you having to declare each div / ul / li's position as 'relative' and allows you to absolutely position elements inside them
br.clear { clear:both; display:block; height:1px; margin:-1px 0 0 0 } /* Use this br class to clear your floated columns */
li#theme-switcher { background:#fff; border:10px solid red; padding:20px; position:fixed; top:0; right:0 } /* Use this if you have the Theme Switcher Reloaded plugin (http://themebot.com/webmaster-tools/1-wordpress-theme-switcher-reloaded) installed and want to make it nice and obvious */

/* TYPOGRAPHY */
/* ----------------------------------------- */

p {
	margin-bottom: 1.5em;
	line-height: 1.5em;
	margin-top: 0px;
}

h1									{
	font-family: MyriadPro,Lucida Sans, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Trebuchet, Arial, sans-serif;
	font-size: 35px;
	font-weight: normal;
	margin-bottom: 10px;
	color: #FFF;
}
h2 {
	font-size: 25px;
	color: #333;
	margin-bottom: .5em;
}

h3 {
	font-size: 25px;

} 

h4 {
	font-size: 17px;
	color: #000;
} 

h5 {
	font-size: 17px;
	color: #3473cb
	

}

h6 {
	font-weight:bold;
	font-size: 15px;
	color: #3473cb;
	margin-top: 5px;
} /* This helps to identify headings at the initial build stage, so I thought it'd be useful to have it */
.alert { background:red; color:white } /* 'alert' has a basic style, since it's useful to have it standing out for testing purposes.



/* Font stack options

	The following represents a list of font stacks, as recommended by Nathan Ford in
	http://unitinteractive.com/blog/2008/06/26/better-css-font-stacks/

	I've added inverted commas around the relevant family names to ensure compatibility.
	p = balanced for paragraphs or body copy
	t = balanced for headlines or titles

	- - - -

Arial, "Helvetica Neue", Helvetica, sans-serif - p, t

Baskerville, "Times New Roman", Times, serif - p
Baskerville, "Times, Times New Roman", serif - t

Cambria, Georgia, Times, "Times New Roman", serif - p, t
"Century Gothic", "Apple Gothic", sans-serif - p, t

Consolas, "Lucida Console", Monaco, monospace - p, t

"Copperplate Light", "Copperplate Gothic Light", serif - p, t

"Courier New", Courier, monospace - p, t

"Franklin Gothic Medium", "Arial Narrow Bold", Arial, sans-serif - p, t

Futura, "Century Gothic", "Apple Gothic", sans-serif - p, t

Garamond, "Hoefler Text", "Times New Roman", Times, serif - p
Garamond, "Hoefler Text", Palatino, "Palatino Linotype", serif - t

Geneva, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", Verdana, sans-serif - p
Geneva, Verdana, "Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - t

Georgia, Palatino, "Palatino Linotype", Times, "Times New Roman", serif - p
Georgia, Times, "Times New Roman", serif - t

GillSans, Calibri, Trebuchet, sans-serif - p
GillSans, Trebuchet, Calibri, sans-serif - t

"Helvetica Neue", Arial, Helvetica, sans-serif - p
Helvetica, "Helvetica Neue", Arial, sans-serif - t

Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif - p, t

"Lucida Sans", "Lucida Grande", "Lucida Sans Unicode", sans-serif - p, t

Palatino, "Palatino Linotype", Georgia, Times, "Times New Roman", serif - p
Palatino, "Palatino Linotype", "Hoefler Text", Times, "Times New Roman", serif - t

Tahoma, Geneva, Verdana - p
Tahoma, Verdana, Geneva - t

Times, "Times New Roman", Georgia, serif - p, t

Trebuchet, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Arial, sans-serif - p
Trebuchet, Tahoma, Arial, sans-serif - t

Verdana, Geneva, Tahoma, sans-serif - p
Verdana, Tahoma, Geneva, sans-serif - t

*/

/** END Starkers CSS **/

/** START WordPress-Defined CSS Classes **/
.wp-caption-text{}
.gallery-caption{}
.bypostauthor{}
.sticky{}
/** END WordPress-Defined CSS Classes **/


/** START Structure Classes **/

body {
	font:13px/1.231 sans-serif;
*font-size:small; 	
	height: 100%;
	font-family: Lucida Sans, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Trebuchet, Arial, sans-serif - p;
	font-size: 12px;
}
.bg-wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -75px; /* the bottom margin is the negative value of the footer's height */
	background-image: url(images/background-img1.png);
	background-repeat: repeat-x;
	background-position: left top;
}
.home .bg-wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -75px; /* the bottom margin is the negative value of the footer's height */
	background-image: url(images/background-img1-home.png);
	background-repeat: repeat-x;
	background-position: left top;
}

.bg2-wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -75px; /* the bottom margin is the negative value of the footer's height */
	background-image: url(images/background-img2.png);
	background-repeat: no-repeat;
	background-position: center top;
}
.home .bg2-wrap {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -75px; /* the bottom margin is the negative value of the footer's height */
	background-image: url(images/background-img2-home.png);
	background-repeat: no-repeat;
	background-position: center top;
}


.footer {
	height: 75px; /* .push must be the same height as .footer */
	background-color: #e6e6e6;
}

.footer .content{
	width: 940px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 30px;
	padding-right: 20px;
	padding-left: 20px;
}

.push {
	height: 150px; /* .push must be the same height as .footer */
}

.wrap {
	width: 980px;
	margin-right: auto;
	margin-left: auto;
	min-height: 700px;
}
.masthead {
	width: 980px;
	height: 95px;
}
.masthead .content{
	padding-top: 20px;
	padding-right: 0px;
	padding-bottom: 20px;
	padding-left: 20px;
	height: 55px;
}
.logo {
	background-image: url(images/logo.png);
	background-repeat: no-repeat;
	height: 41px;
	width: 144px;
	float: left;
	display: block;

}
.tagline {
	background-image: url(../../../images/tagline.png);
	background-repeat: no-repeat;
	float: right;
	height: 37px;
	width: 344px;
	margin-right: 30px;
	background-color: #FFF;
}
.nav {
	height: 37px;
	width: 980px;
}

.intro {
	height: 370px;
	width: 980px;
}
.intro-left {
	float: left;
	width: 430px;
}
.intro-right {
	float: right;
	width: 550px;
}

.intro-txt {
	float: left;
	width: 430px;
	height: 315px;
}
.intro-txt .content{
	padding-top: 50px;
	padding-left: 20px;
}
.intro-cta {
	padding-right: 20px;
	padding-left: 20px;
}

.feat-screenshot {
	background-image: url(images/feat-screenshot.png);
	background-repeat: no-repeat;
	height: 370px;
	width: 550px;
}

.feat-banner {
	float: left;
	width: 980px;
	margin-bottom: 30px;
	height: auto;
}
.feat-banner .content{
	padding-top: 35px;
	padding-right: 20px;
	padding-left: 20px;
}

.feat-callout {
	float: left;
	height: auto;
	width: 300px;
	margin-left: 20px;
}

/*
	SECOND LEVEL PAGE STRUCTURE
*/

@font-face {
  font-family: MyriadPro;
  src: url('fonts/MyriadPro-Regular.otf');
}

.page-title {
	line-height: 115px;

}

.page-banner {
	height: 115px;
	width: 980px;
}

.page-banner .content{
	padding-right: 20px;
	padding-left: 20px;
	line-height: 115px;
}

.maincol {
	float: left;
	width: 600px;
}
.maincol .content{
	padding-top: 20px;
	padding-right: 50px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.maincol2 {
	float: left;
	width: 650px;
}
.maincol2 .content{
	padding-top: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
}

.bullets1 {

}



.bullets1 ul{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1.5em;
	margin-left: 10px;

}

.bullets1 li{
	list-style-type: none;
	list-style-position: outside;
	font-size: 12px;
	background-image: url(images/bullet.png);
	background-position: 0px 7px;
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.bullets2 {
	padding-right: 20px;

}



.bullets2 ul{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;

}

.bullets2 li{
	list-style-type: none;
	list-style-position: outside;
	font-size: 12px;
	background-image: url(images/bullet.png);
	background-position: 0px 5px;
	background-repeat: no-repeat;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}


.newfeatures {
	font-size: 50%;

}

.bullets3 {
	padding-right: 20px;
	font-size: 12px;

}



.bullets3 ul{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 12px;

}

.bullets3 li{
	list-style-type: none;
	list-style-position: outside;
	font-size: 12px;
	background-image: url(images/bullet.png);
	background-position: 0px 5px;
	background-repeat: no-repeat;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.bullets3b ul{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-left: 0px;
	font-size: 12px;

}

.bullets3b li{
	list-style-type: none;
	list-style-position: outside;
	font-size: 12px;
	background-image: url(images/bullet3-gray.png);
	background-position: 0px 5px;
	background-repeat: no-repeat;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 3px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 10px;
}

.product-list ul{
	padding: 0px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 1.5em;
	margin-left: 0px;
}



.product-list li{
	list-style-type: none;
	list-style-position: outside;
	font-size: 15px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 15px;
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.sidebar {
	float: right;
	width: 330px;
}
.sidebar .content{
	padding: 20px;
}
.sidebar-container {
	width: 288px;
	height: auto;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	border-width: 1px;
	border-style: solid;
	border-color: #CCC;
	margin-bottom: 10px;
}
.sidebar-container .content{
	height: auto;
	padding-top: 10px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.sidebar-callout {
	height: auto;
	width: 248px;
	margin-bottom: 0px;
	margin-top: 5px;
}
.sidebar-hr{
	background-image: url(../../../images/dots-hr.png);
	background-repeat: repeat-x;
	height: 1px;
	width: auto;
	margin-top: 10px;
	margin-bottom: 0px;
}

/*
	NAV
*/

.nav ul{
list-style-type: none;
margin:0;
padding:0;
}

.nav li{
	display:inline;
	margin:0;
	padding:0;
	line-height: 37px;
	color: #FFF;
}

.nav a{
	float:left;
	background:url(images/nav-left.png) no-repeat left top;
	height: 37px;
	margin-right: 0px; /*spacing between each tab*/
	padding-left: 10px;
	color:#333333;
	text-decoration:none;
	font-family: Lucida Sans, "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Trebuchet, Arial, sans-serif - p;
	font-size: 12px;
	
}

.nav a span{
	float:left;
	display:block;
	font-weight:normal;
	color:#fff;
	text-decoration:none;
	background-image: url(images/nav-right.png);
	background-position: right top;
	height: 37px;
	padding-top: 0px;
	padding-right: 35px;
	padding-bottom: 0px;
	padding-left: 25px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 1px;
}

.nav .current a{ /*Current style*/
	text-decoration:none;
	background-image: url(images/nav-left.png);
	background-repeat: no-repeat;
	background-position: 0 -74px;
}

.nav .current a span{ /*Current style*/
	color:#fff;
	text-decoration:none;
	background-position: right -74px;
	background-image: url(images/nav-right.png);
}
.nav .current a:hover{ /*onMouseover style*/
	text-decoration:none;
	background-image: url(images/nav-left.png);
	background-repeat: no-repeat;
	background-position: 0 -74px;
}

.nav .current a:hover span{ /*onMouseover style*/
	text-decoration:none;
	background:url(images/nav-right.png);
	background-position: right -74px;
}

.nav a:hover{ /*onMouseover style*/
	text-decoration:none;
	background-image: url(images/nav-left.png);
	background-repeat: no-repeat;
	background-position: 0 -37px;
}

.nav a:hover span{ /*onMouseover style*/
	color:#fff;
	text-decoration:none;
	background:url(images/nav-right.png);
	background-position: right -37px;
}
.nav-vr {
	background-repeat: no-repeat;
	height: 37px;
	width: 1px;
	float: left;
	background-image: url(images/nav-vr.png);
}

/*
	SUBNAV
*/

.subnav-wrap {
	list-style-type: none;
	margin:0;
	padding:0;
	background-image: url(images/subnav-bg.png);
	background-repeat: repeat-x;
	height: 51px;
	width: 980px;
}
.subnav ul{
	list-style-type: none;
	padding:0;
	line-height: 55px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 0;
	margin-left: 0;
}

.subnav li{
	display:inline;
	margin:0;
	line-height: 51px;
	padding-top: 0;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
}

.subnav a{
	float:left;
	height: 51px;
	color:#0066cc;
	text-decoration:none;
	font-family: "Lucida Sans", "Lucida Sans Unicode", "Lucida Grande", "Lucida Sans", Trebuchet, Arial, "sans-serif - p";
	font-size: 15px;
	line-height: 51px;
	padding-right: 20px;
	padding-left: 20px;
}

.subnav a span{
	float:left;
	display:block;
	font-weight:normal;
	color:#0066cc;
	text-decoration:none;
	height: 51px;
	padding-top: 0px;
	padding-right: 35px;
	padding-bottom: 0px;
	padding-left: 25px;
	font-size: 12px;
	font-weight: normal;
	letter-spacing: 1px;
	line-height: 51px;
}

.subnav .current a{ /*Current style*/
	text-decoration:none;
	background-image: url(images/subnav-select.png);
	background-repeat: no-repeat;
	background-position: center bottom;
	color: #666;
}

.subnav .current a span{ /*Current style*/
	text-decoration:none;

}
.subnav .current a:hover{ /*onMouseover style*/
	text-decoration:none;

}

.subnav .current a:hover span{ /*onMouseover style*/
	text-decoration:none;

}

.subnav a:hover{ /*onMouseover style*/
	text-decoration:none;

}

.subnav a:hover span{ /*onMouseover style*/
	text-decoration:none;

}
.subnav-vr {
	background-repeat: no-repeat;
	height: 37px;
	width: 1px;
	float: left;
	background-image: url(images/nav-vr.png);
}

/*
	TOPNAV
*/

.topnav {
	float: right;
	margin-right: 20px;
	font-size: 12px;
	background-color: #096;
}

/*
	BUTTONS
*/
.buttonwrapper{ /* Container you can use to surround a CSS button to clear float */
	overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
	width: 100%;
	text-align: center;
	float: left;
}

.buttonwrapper2{ /* Container you can use to surround a CSS button to clear float */
	overflow: hidden; /*See: http://www.quirksmode.org/css/clearing.html */
	width: 100%;
	text-align: center;
	margin-top: 5px;
	margin-bottom: 0px;
}


.button1 ul{
	list-style-type: none;
	margin:0;
	padding:0;
}

.button1 li{
	display:inline;
	margin:0;
	padding:0;
	line-height: 45px;
	color: #FFF;
}
a:link.button1, a:visited.button1, a:active.button1{
color: #fff; /*button text color*/
}

a.button1{
	background: transparent url('images/btn1-left.png') no-repeat top left;
	display: block;
	float: left; /* Change 13px as desired */
	line-height: 37px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 45px; /* Height of button background height */
	padding-left: 7px; /* Width of left menu image */
	text-decoration: none;
	font-size: 17px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

a.button1 span{
	background: transparent url('images/btn1-right.png') no-repeat top right;
	display: block; /*Set 11px below to match value of 'padding-left' value above*/
	color: #FFF;
	text-shadow: 0px -1px 0px #000;
	padding-top: 4px;
	padding-right: 27px;
	padding-bottom: 4px;
	padding-left: 20px;
}

a.button1:hover{ /* Hover state CSS */
	background-position: 0 -45px;
	color: #FFF; /*button text color*/
}

a.button1:hover span{ /* Hover state CSS */
background-position: right -45px;
color: #FFF; /*button text color*/
}

a.button1:active {
    background-position: bottom left;
	color: #FFF; /*button text color*/
	outline: none; /* hide dotted outline in Firefox */
}

a.button1:active span {
background-position: bottom right;
color: #FFF; /*button text color*/


}

a.button2{
	background: transparent url('images/btn2-left.png') no-repeat top left;
	display: block;
	float: left; /* Change 13px as desired */
	line-height: 23px; /* This value + 4px + 4px (top and bottom padding of SPAN) must equal height of button background (default is 24px) */
	height: 31px; /* Height of button background height */
	padding-left: 7px; /* Width of left menu image */
	text-decoration: none;
	font-size: 15px;
	font-style: normal;
	font-weight: normal;
	font-variant: normal;
}

a.button2 span{
	background: transparent url('images/btn2-right.png') no-repeat top right;
	display: block; /*Set 11px below to match value of 'padding-left' value above*/
	color: #FFF;
	text-shadow: 0px -1px 0px #000;
	padding-top: 4px;
	padding-right: 22px;
	padding-bottom: 4px;
	padding-left: 15px;
}

a.button2:hover{ /* Hover state CSS */
	background-position: 0 -31px;
	color: #FFF; /*button text color*/
}

a.button2:hover span{ /* Hover state CSS */
background-position: right -31px;
color: #FFF; /*button text color*/
}

a.button2:active {
    background-position: bottom left;
	color: #FFF; /*button text color*/
	outline: none; /* hide dotted outline in Firefox */
}

a.button2:active span {
background-position: bottom right;
color: #FFF; /*button text color*/


}
/*
	ICONS
*/
.ico1{
	float: left;
	height: 100px;
	width: 50px;
	margin-right: 10px;
}
.ico2{
	float: left;
	height: 70px;
	width: 39px;
	margin-right: 10px;
}

/*
	Drop Menu
*/

#dropmenu {
	list-style:none;
	width:auto;
	height:43px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	padding-top: 0px;
	padding-right: 20px;
	padding-bottom: 0px;
	padding-left: 20px;
	margin-top: 25px;
}

#dropmenu li {
	float:left;
	display:block;
	text-align:center;
	position:relative;
	padding: 4px 10px 4px 10px;
	margin-right:30px;
	margin-top:7px;
	border:none;
}

#dropmenu li:hover {

	
	/* Background color and gradients */
	
	background: #FFFFFF;
	background: -moz-linear-gradient(top, #ededed, #ffffff);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ededed), to(#ffffff));
	
	/* Rounded corners */
	
	-moz-border-radius: 5px 5px 0px 0px;
	-webkit-border-radius: 5px 5px 0px 0px;
	border-radius: 5px 5px 0px 0px;
}

#dropmenu li a {
	font-size:13px; 
	color: #0066cc;
	display:block;
	outline:0;
	text-decoration:none;
}

#dropmenu li:hover a {
	color:#0066cc;

}
#dropmenu li .drop {
	padding-right:21px;
	background:url("images/drop.png") no-repeat right 4px;
}
#dropmenu li:hover .drop {
	background:url("images/drop.png") no-repeat right 4px;
}

.dropdown_1column, 
.dropdown_2columns, 
.dropdown_3columns, 
.dropdown_4columns,
.dropdown_5columns {
	margin:4px auto;
	float:left;
	position:absolute;
	left:-999em; /* Hides the drop down */
	text-align:left;
	padding:10px 5px 10px 5px;

	
	/* Gradient background */
	background:#FFFFFF;
	background: -moz-linear-gradient(top, #ffffff, #ededed);
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#ffffff), to(#ededed));

	/* Rounded Corners */
	-moz-border-radius: 0px 5px 5px 5px;
	-webkit-border-radius: 0px 5px 5px 5px;
	border-radius: 0px 5px 5px 5px;
}

.dropdown_1column {width: 180px;}
.dropdown_2columns {width: 220px;}
.dropdown_3columns {width: 220px;}
.dropdown_4columns {width: 560px;}
.dropdown_5columns {width: 700px;}

#dropmenu li:hover .dropdown_1column, 
#dropmenu li:hover .dropdown_2columns, 
#dropmenu li:hover .dropdown_3columns,
#dropmenu li:hover .dropdown_4columns,
#dropmenu li:hover .dropdown_5columns {
	left:-1px;
	top:auto;
}

.col_1,
.col_2,
.col_3,
.col_4,
.col_5 {
	display:inline;
	float: left;
	position: relative;
	margin-left: 5px;
	margin-right: 5px;
}
.col_1 {width:180px;}
.col_2 {width:270px;}
.col_3 {width:270px;}
.col_4 {width:550px;}
.col_5 {width:690px;}

#dropmenu .menu_right {
	float:right;
	margin-right:0px;
}
#dropmenu li .align_right {
	/* Rounded Corners */
	-moz-border-radius: 5px 0px 5px 5px;
    -webkit-border-radius: 5px 0px 5px 5px;
    border-radius: 5px 0px 5px 5px;
}

#dropmenu li:hover .align_right {
	left:auto;
	right:-1px;
	top:auto;
}

#dropmenu p, #dropmenu h2, #dropmenu h3, #dropmenu ul li {
	font-family:Arial, Helvetica, sans-serif;
	line-height:21px;
	font-size:12px;
	text-align:left;
	text-shadow: 1px 1px 1px #FFFFFF;
}
#dropmenu h2 {
	font-size:21px;
	font-weight:400;
	letter-spacing:-1px;
	margin:7px 0 14px 0;
	padding-bottom:14px;
	border-bottom:1px solid #666666;
}
#dropmenu h3 {
	font-size:14px;
	margin:7px 0 14px 0;
	padding-bottom:7px;
	border-bottom:1px solid #888888;
}
#dropmenu p {
	line-height:18px;
	margin:0 0 10px 0;
}

#dropmenu li:hover div a {
	font-size:13px;
	color:#0066cc;
}
#dropmenu li:hover div a:hover {
	color:#3399ff;
}


.strong {
	font-weight:bold;
}
.italic {
	font-style:italic;
}

.imgshadow { /* Better style on light background */
	background:#FFFFFF;
	padding:4px;
	border:1px solid #777777;
	margin-top:5px;
	-moz-box-shadow:0px 0px 5px #666666;
	-webkit-box-shadow:0px 0px 5px #666666;
	box-shadow:0px 0px 5px #666666;
}
.img_left { /* Image sticks to the left */
	width:auto;
	float:left;
	margin:5px 15px 5px 5px;
}



#dropmenu li ul {
	list-style:none;
	padding:0;
	margin:0 0 12px 0;
}
#dropmenu li ul li {
	font-size:12px;
	line-height:24px;
	position:relative;
	text-shadow: 1px 1px 1px #ffffff;
	padding:0;
	margin:0;
	float:none;
	text-align:left;
	width:auto;
}
#dropmenu li ul li:hover {
	background:none;
	border:none;
	padding:0;
	margin:0;
}

#dropmenu li .greybox li {
	background:#F4F4F4;
	border:1px solid #bbbbbb;
	margin:0px 0px 4px 0px;
	padding:4px 6px 4px 6px;
	width:116px;

	/* Rounded Corners */
	-moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    -khtml-border-radius: 5px;
    border-radius: 5px;
}
#dropmenu li .greybox li:hover {
	background:#ffffff;
	border:1px solid #aaaaaa;
	padding:4px 6px 4px 6px;
	margin:0px 0px 4px 0px;
}


.tour-launch {
	height: auto;
	width: 580px;
	margin-bottom: 1.5em;
	background-color: #CCC;
}

.contact-row {
	width: 580px;
	margin-bottom: 1.5em;
	height: auto;
	background-image: url(images/dots-hr.png);
	background-repeat: repeat-x;
	background-position: bottom;
}
.contact-left {
	float: left;
	width: 270px;
	margin-bottom: 15px;
}
.contact-right {
	float: right;
	width: 310px;
	margin-bottom: 15px;
}
.contact-colspan {
	width: 580px;
	height: auto;
	padding-bottom: 15px;
}
.contact-trow {
	padding-top: 2px;
	padding-right: 15px;
	padding-bottom: 2px;
	vertical-align: middle;
}

.bullets-container1 {
	width: 580px;
	margin-bottom: 1.5em;
	background-color: #f2f1ef;
	-moz-border-radius: 5px;
	border-radius: 5px;
	-webkit-border-radius: 5px 5px 5px 5px;
	height: auto;
}

.bullets-container1 .content{
	padding-top: 15px;
	padding-right: 20px;
	padding-bottom: 10px;
	padding-left: 20px;
}
.bullets-left {
	float: left;
	width: 260px;
}
.bullets-right {
	float: right;
	width: 260px;
}

.new {
	font-size: 14px;
	font-weight: bold;
	color: #d84824;
}
.getsocial {
	float: right;
	height: 51px;
}
.getsocial .content{
	padding-top: 20px;
	padding-right: 10px;
}

.colheader1{
	background-color: #ebebeb;
	padding: 5px;
}
.row1{
	padding: 5px;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #CCC;
}
.visithc-1000employees{
	background-image: url(images/visithc-1000employees.png);
	background-repeat: no-repeat;
	height: 75px;
	width: 290px;
	margin-bottom: 10px;
}

/* Comparison Table */

.compare-table{
	width: 750px;
	float: left;
}

.compare-table .row1{
	border-color: #999999;
}
.compare-table .cell1{
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	border-right-width: 1px;
	border-right-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	line-height: normal;
	border-left-width: 1px;
	border-left-style: solid;
	padding-left: 10px;
}
.compare-table .cell2{
	padding-top: 2px;
	padding-right: 10px;
	padding-bottom: 2px;
	border-right-width: 1px;
	border-right-style: solid;
	border-top-color: #999999;
	border-right-color: #999999;
	border-bottom-color: #999999;
	border-left-color: #999999;
	line-height: normal;
}


.table-hr1{
	background-image: url(images/dots-hr-blue.png);
	background-repeat: repeat-x;
	height: 39px;
	width: auto;
	margin-top: 5px;
	margin-bottom: 0px;
	background-position: center;
}