@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
/*
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
/*
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END MEYER RESET */

/*PWC Reset*/
h3, p {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: Arial, Helvetica, sans-serif;
	vertical-align: baseline;
}
sup {
	vertical-align: super
}

.test {
	background-color: red;	
}
/*END PWC Reset*/
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	background-color: #029AFF;
	color: #333;
	padding: 0px;
	text-align: left;
	margin-top: 1px;
	margin-right: auto;
	margin-bottom: 15px;
	margin-left: auto;
	width: 100%;
	position: relative;
	line-height: 22px;
	font-weight: normal;
	min-width: 950px;
}
/* Commonly used to style page titles. */
h1 {
	color: #270033;
	font-size: 20px;
	font-weight: bold;
	line-height: 26px;
	letter-spacing: 0.1em;
}
/* Commonly used to style section titles. */
h2 {
	color: #270033;
	font-size: 16px;
	font-weight: normal;
	line-height: 26px;
	letter-spacing: 0.1em;
}
h3 {
	color: #FFFFFF;
	font-size: 16px;
	font-weight: normal;
	line-height: 26px;
	letter-spacing: 0.1em;
	background-color: #029AFF;
	padding-left: 10px;
	width: auto;
}
h4 {
	color: #270033;
	font-size: 14px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.1em;
}
h5 {
	color: #270033;
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.1em;
}
h6 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 8px;
	font-style: normal;
	line-height: normal;
	font-weight: normal;
	color: #270033;
	text-decoration: none;
}
h7 {
	color: #88BA3d;
	font-size: 16px;
	font-weight: normal;
	line-height: normal;
	letter-spacing: 0.1em;
	background-color: #FFFFFF;
	padding-left: 10px;
}
p {
	margin: 1em 0;
}
.fontRedBold {
	color:red;
	font-weight:bolder;
	font-size:14px;	
}
/* Sets the style for unvisited links. */
#nav {
	width: 100%;
	padding: 0px;
	left: 0px;
	position: relative;
	height: 43px;
	/* [disabled]float: left; */
	z-index: 100;
	background-image: url(../images/nav-backg.jpg);
	clear: both;
}
a img {
	border: none;

}
a {
	color: #003300;
	/* [disabled]transition: all 0.2s ease-out 0s; */
	text-decoration: none;
}
a:hover {
	color: #000000;
	text-decoration: underline;
}
a:visited {
	color: #003300;
}
a:visited:hover {
	color: #000;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #FFF;
	text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color: #000;
}
/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
	text-align: left; /* Redefines the text alignment defined by the body element. */
	width: 950px;
	margin-top: 0;
	margin-right: auto;
	margin-bottom: 0;
	margin-left: auto;
	border: 1px none #999999;
	position: relative;
	height: auto;
	/* [disabled]min-height: 650px; */
	background-color: #FFF;
}
#outerWrapper #header {
	font-size: 18px;
	font-weight: normal;
	height: 100px;
	padding-top: 1px;
	overflow: visible;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
	background-color: #000;
	color: #FFF;
	width: 950px;
}
#outerWrapper #contentWrapper {
	overflow: hidden;
	position: relative;
	clear: both;
	/* [disabled]background-image: url(../images/backgrd2.jpg); */
	background-repeat: no-repeat;
	background-position: center top;
	background-attachment: scroll;
	box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.4);
	height: auto;
	width: auto;
}

#outerWrapper #contentWrapper #leftColumn1 {
	float: left; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 575px;
	height: auto;
	min-height: 600px;
	/* [disabled]overflow:hidden; */
}

#outerWrapper #contentWrapper #rightColumn1 {
	float: right; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 350px;
	height: auto;
	min-height: 600px;
}

#outerWrapper #footer {
	padding: 10px;
	width: auto;
	clear: both;
	margin-top: 25px;
	background-color: #ddd;
	font-size: 12px;
}
#footer {
	font-size: 12px;
	clear: both;
	padding: 10px;
}
#content {
	padding-right: 10px;
	padding-left: 30px;
	margin-top: 0px;
	height: auto;
}
.content {
	padding-right: 0px;
	padding-left: 0px;
	margin-top: 0px;
	height: auto;
}
.grpsocial {
	float: right;
	height:1px; /* prevents pushing down on footer when img expand */
}
.grpsocial img {
	transition: all 0.2s ease-out 0s;
	vertical-align: top;
	float:left;
}
#logo {
	width: 950px;
	float: left;
	background-color: #000;
}
#topfold {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 18px;
	color: #000;
	overflow: visible;
	/* [disabled]min-height: 600px; */
}
#homepageContent {
	height: auto;
	width: 100%;
	overflow: visible;
	line-height: 22px;
	position: relative;
}
.homepageBottom {
	height: 182px;
	width: 220px;
	float: left;
	overflow: hidden;
	position: relative;
	padding: 8px 7px 8px 7px;
	font-size: 12px;
}
.homepageBottom img {
	width:100%;
	height:100%;
	outline: 1;
}
.homepageBottomText a{
	color:#fff;
	text-decoration:none;
}
.homepageBottomText a:hover {
	color:#fff;
	text-decoration:underline;
}
.homepageBottomText {
	color:#FFF;
	top:150px;
	position: absolute;
	width: 215px;
	padding-left: 5px;
	overflow: hidden;
	height: 40px;
	background-image: url(../images/backfade.png);
	line-height: 1.5;
}
#homepageBottomWrapper {
	height: auto;
	/* [disabled]width: 950px; */
	clear: both;
	position: relative;
	/* [disabled]padding-left: 6px; */
	/* [disabled]padding-right: 4px; */
	margin: 20px 10px 10px 10px;
	overflow: visible;
}
#leftside {
	display: inherit;
	float: left;
	height: auto;
	width: 68%;
	/* [disabled]background-image: url(../images/greenbox_80wide.png); */
	padding-left: 25px;
	padding-top: 20px;
	min-height: 575px;
	padding-right: 5px;
}
#rightside {
	/* [disabled]display: inherit; */
	float: right;
	height: auto;
	width: 25%;
	padding-left: 10px;
	padding-top: 20px;
	/* [disabled]min-height: 575px; */
	padding-right: 10px;
	background-color: #DDD;
	border-left: solid gray 1px;
	border-bottom: solid gray 1px;
}
#leftrightside {
	display: inherit;
	height: auto;
	width: inherit;
	/* [disabled]background-image: url(../images/greenbox_80wide.png); */
	padding-left: 25px;
	padding-top: 20px;
	min-height: 575px;
	padding-right: 25px;
	position: inherit;
	margin: 0 auto;
}
#homepageContent #container #homepageRight {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.33em;
	color: #FFF;
	height: 180px;
	width: 330px;
	position: inherit;
	overflow: hidden;
	float: right;
	margin: 10px;
}
#footer #foot {
	line-height: 1.1em;
	height: auto;
	padding: 10px;
	clear: both;
}
#headerLinks {
	/* [disabled]background-color: #333; */
	padding: 5px 10px 2px 10px;
	height: 20px;
	width: 350px;
	position: relative;
	/* [disabled]clear: both; */
	margin: 0px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	color: #FFF;
	line-height: normal;
	letter-spacing: 2px;
	float: right;
	text-align: center;
	margin-top: 10px;
}
#headerLinks a {
	color: #FFF;
	text-decoration:none;
}
#headerLinks a:hover {
	color: #FFF;
	text-decoration: underline;
}
#homepageLeft {
	float: left;
	height: auto;
	width: 20%;
	text-align: left;
	position: inherit;
	background-color: #CCC;
	padding: 10px;
}
#homepageMiddle {
	float: left;
	height: auto;
	width: 53%;
	position: inherit;
	padding: 10px;
}
#homepageRight {
	float: right;
	height: auto;
	width: 20%;
	position: inherit;
	background-color: #CCC;
	/* [disabled]text-align: center; */
	padding: 10px;
}
.whiteFont, .whiteFont a, .whiteFont a:hover {
	color: #FFF;
	letter-spacing: 1px;
}
.carouselTitle {
	font-size: 2.5em;
	text-transform: uppercase;
	color: #FFF;
	letter-spacing: 1px;
	text-align: center;
	display: block;
	margin-right: auto;
	margin-left: auto;
	position: relative;
	top: 306px;
	line-height: 1em;
	/* [disabled]width: 40%; */
	background-color: #666666;
	padding: 20px;
}
#caroTop {
	padding:5px 75px 0px 75px;
	background-image: url(../images/carousel/upper-bg.gif);
	background-repeat: repeat-x;
}
#caroTop input {
	text-align: center;
	border: none;
	outline: none;	
}
#caroButtons {
	background-color:transparent;
	width:91px;
	height:17px;
	float:right;
	position:relative;
	margin: 0 auto;
}
#left-but {
	background-image: url(../images/carousel/next.png);
	float: right;
	width: 30px;
	height: 30px;
	cursor:pointer;
}
#right-but {
	background-image: url(../images/carousel/prev.png);
	float: right;
	width: 30px;
	height: 30px;
	cursor:pointer;
}
#pause-but {
	float: right;
	width: 30px;
	height: 30px;
	cursor:pointer;
}
#restart-but {
	/* [disabled]background-image: url(../images/carousel/prevlabel.gif); */
	float: right;
	width: 42px;
	height: 30px;
}
#learnButton {
	font-size: 14px;
	width: 100%;
	height: 35px;
	letter-spacing: 0.1em;
	color: #FFF;
	text-transform: uppercase;
	border-radius: 15px;
	border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
	background-image: url(../images/nav-backg.jpg);
	
}
#learnButton:hover {
	font-size: 14px;
	width: 100%;
	height: 35px;
	letter-spacing: 0.1em;
	color: #FFF;
	text-transform: uppercase;
	border-radius: 15px;
	border-color: #9ecaed;
    box-shadow: 0 0 10px #9ecaed;
	background-image: url(../images/nav-backg.jpg);
	text-decoration:underline;	
}
#boxSevenstep {
	/* [disabled]margin-top: 15px; */
	padding: 0 5px 5px 5px;
	background-color: #CCC;
	width: 225px;
	border-left: solid gray 1px;
	border-right: solid gray 1px;
	border-bottom: solid gray 2px;
}
#boxNotices {
	/* [disabled]padding: 5px; */
	/* [disabled]background-color: #CCC; */
	/* [disabled]border: dotted black 1px; */
	/* [disabled]margin-bottom: 10px; */
	/* [disabled]height: 120px; */
	font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
	font-size: 18px;
}

.pageNavleft {
	float: left;
	width: 40%;
	text-align: left;
	text-transform: uppercase;
	font-style: italic;
	background-image: url(../images/nav-prev.png);
	background-repeat: no-repeat;
	padding-left: 35px;
}
.pageNavright {
	float: right;
	width: 40%;
	text-align: right;
	text-transform: uppercase;
	font-style: italic;
	background-image: url(../images/nav-next.png);
	background-position: right;
	background-repeat: no-repeat;
	padding-right: 35px;
}
.emailSignup {
	/* [disabled]width:211px; */
	/* [disabled]height:15px; */
	position:relative;
	margin-right: 35px;
	float:right;
	top: 10px;
}
/************* begin box overlay css ************/
.overlay{
    background:transparent url(../images/overlay.png) repeat top left;
    position:fixed;
    top:0px;
    bottom:0px;
    left:0px;
    right:0px;
    z-index:100;
}
.box{
	position:fixed;
	bottom:-200px;
	/* [disabled]left:30%; */
	/* [disabled]right:30%; */
	background-color:rgba(0,0,0,0.8);
	color:#FFFFFF;
	/* [disabled]padding:20px; */
	border:2px solid #ccc;
	-moz-border-radius: 20px;
	-webkit-border-radius:20px;
	-khtml-border-radius:20px;
	-moz-box-shadow: 0 1px 5px #333;
	-webkit-box-shadow: 0 1px 5px #333;
	z-index:101;
	width: 916px;
	height: 75px;
	padding: 15px;
}
.boxPrice{
	position:fixed;
	right:-250px;
	bottom:20px;
	/* [disabled]left:30%; */
	/* [disabled]right:30%; */
	background-color:rgba(0,0,0,0.8);
	color:#FFFFFF;
	/* [disabled]padding:20px; */
	border:2px solid #ccc;
	-moz-border-radius: 20px;
	-webkit-border-radius:20px;
	-khtml-border-radius:20px;
	-moz-box-shadow: 0 1px 5px #333;
	-webkit-box-shadow: 0 1px 5px #333;
	z-index:101;
	width: 185px;
	height: auto;
	padding: 10px;
	text-align:center;
}
a.boxclose{
    float:right;
    width:26px;
    height:26px;
    background:transparent url(../images/cancel.png) repeat top left;
    margin-top:-24px;
    margin-right:-24px;
    cursor:pointer;
}
.box h1{
    display: none; /* drg diaabled via display none */
	border-bottom: 1px dashed #7F7F7F;
    margin:-20px -20px 0px -20px;
    padding:10px;
    background-color:#FFEFEF;
    color:#EF7777;
    -moz-border-radius:20px 20px 0px 0px;
    -webkit-border-top-left-radius: 20px;
    -webkit-border-top-right-radius: 20px;
    -khtml-border-top-left-radius: 20px;
    -khtml-border-top-right-radius: 20px;
}
/************* end box overlay css ************/
.pricingCol1 {
	float: left;
	height: auto;
	width: 700px;
	margin-left: 25px;
}
.pricingCol1 p {
	color: #333;
	font-size: 14px;
	font-style: italic;
	font-weight: bolder;
	text-transform: uppercase;
}
.pricingCol2 {
	float: left;
	height: auto;
	width: 525px;
	/* [disabled]clear: both; */
	padding-left: 35px;
	background-image: url(../images/arrow-r.png);
	background-repeat: no-repeat;
	background-position: 23px 4px;
}
#pricing {
	height: auto;
	width: 750px;
	margin-left: auto;
	margin-right: auto;
}
.pricingCol3 {
	float: right;
	height: auto;
	width: 100px;
	text-align: center;
	/* [disabled]clear: inherit; */
	/* [disabled]margin-bottom: 25px; */
	color: #F00;
	font-weight: bolder;
	font-size: 14px;
}
.pricingCol3biz {
	float: right;
	height: 61px;
	width: 100px;
	text-align: center;
	/* [disabled]clear: inherit; */
	/* [disabled]margin-bottom: 25px; */
	color: #F00;
	font-weight: bolder;
	font-size: 14px;
	background-image: url(../images/good-for-small-business.jpg);
	background-repeat: no-repeat;
}
