@charset "utf-8";
/**********************************
	BASIC ADJUSTMENTS
**********************************/


a {
	color:#035884;
	text-decoration:none;
}
a:hover, a:active, a:focus {
	color:#669bb9;
	outline:none;
	-moz-outline-style:none;
}

/**********************************
	LAYOUT STYLES
**********************************/

#centering01{
	position:relative;
	width:947px;
	height:auto;
	margin:0 auto;
}
#wrapper01 {	
	position:relative;
	width:947px;
	height:auto;
	float:left;
}


/********************************************
 ********************************************
			HEADER STRUCTURES
********************************************
********************************************/


#logo01 {
	padding: 0px 0px 0px 25px;
}

/**********************************
	SEARCH BOX
**********************************/
.search {
	position:absolute;
	top:15px;
	right:20px;
}
.search input.searchButton {
	position:relative;
	top:3px;
	filter:alpha(opacity=60);
	-moz-opacity: 0.6;
	opacity: 0.6;
	-khtml-opacity: 0.6;
	border-right:1px #003a5a solid;
	padding-right:8px;
}
.search input.searchButton:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
	-khtml-opacity: 1.0; 
}
.search input.searchButton:active {
	outline:none;
}
.search input.searchButton:focus {
	-moz-outline-style:none;
}
.search input.searchButton:visted {
	outline:none;
	-moz-outline-style:none;
}
.search input.searchButton:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1.0;
	opacity: 1.0;
	-khtml-opacity: 1.0; 
}
.search input.searchBox {
	position:absolute;
	top:8px;
	left:-154px;
	border:none;
	width:140px;
	background:none;
	color:#666666;
	font-size:10px;
}
.search .searchBG {
	z-index:-1;
	position:absolute;
	top:0px;
	right:110px;
	vertical-align:top;
	border:none;
	background-image:url(../images/bg_searchBox_transparent.png);
	width:159px;
	height:30px;
	background-repeat: no-repeat;
}
.search a {
	font-size:11px;
	font-family: Arial, Helvetica, sans-serif;
	vertical-align:middle;
	text-decoration:none;
	padding: 0px 0px 10px 2px;
}

/**********************************
	BREAD CRUMB TRAIL
**********************************/

#crumbs {
	list-style-type:none;
	width:910px;
	height:1.3em;
	border:1px solid #dedede;
	font-size:10px;
	margin:0 auto 5px ;
	text-transform:lowercase;
	}
#crumbs li {
	float:left;
	line-height:1.3em;
	color:#777;
	padding-left:1.3em;
	}		
#crumbs li a {
	background:url(../images/crumbsArrow.gif) no-repeat right center;
	display:block;
	padding:0 15px 0 0;
	}							
#crumbs li a:link,
#crumbs li a:visited {
	text-decoration:none;
	}	
a:link, a:visited,	
#crumbs li a:hover,
#crumbs li a:focus {
	}
	
	

/**********************************

	DROP DOWN MENU
	
**********************************/

/*******************************************************************************

 LAYOUT INFORMATION: describes box model, positioning, z-order

 *******************************************************************************/

/* The outermost container of the Menu Bar, an auto width box with no margin or padding */
ul.MenuBarHorizontal
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	cursor: default;
	width: auto;
}
/* Set the active Menu Bar with this class, currently setting z-index to accomodate IE rendering bug: http://therealcrisp.xs4all.nl/meuk/IE-zindexbug.html */
ul.MenuBarActive
{
	z-index: 1000;
}
/* Menu item containers, position children relative to this container and are a fixed width */
ul.MenuBarHorizontal li
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	position: relative;
	text-align: left;
	cursor: pointer;
	float: left;
	font-family: sans-serif, Arial, Helvetica;
	font-size: 9pt;
	white-space:nowrap;
}
/* Submenus should appear below their parent (top: 0) with a higher z-index, but they are initially off the left side of the screen (-1000em) */
ul.MenuBarHorizontal ul
{
	margin: 0;
	padding: 0;
	list-style-type: none;
	z-index: 1020;
	cursor: default;
	width: 8.2em;
	position: absolute;
	left: -1000em;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to auto so it comes onto the screen below its parent menu item */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible
{
	left: auto;
}
/* Menu item containers are same fixed width as parent */
ul.MenuBarHorizontal ul li
{
	width: 8.2em;
}
/* Submenus should appear slightly overlapping to the right (95%) and up (-5%) */
ul.MenuBarHorizontal ul ul
{
	position: absolute;
	margin: -5% 0 0 95%;
}
/* Submenu that is showing with class designation MenuBarSubmenuVisible, we set left to 0 so it comes onto the screen */
ul.MenuBarHorizontal ul.MenuBarSubmenuVisible ul.MenuBarSubmenuVisible
{
	left: auto;
	top: 0;
}

/*******************************************************************************

 DESIGN INFORMATION: describes color scheme, borders, fonts

 *******************************************************************************/

/* Submenu containers have borders on all sides */
ul.MenuBarHorizontal ul
{
	border: 1px solid #CCC;
}
/* Menu items are a light gray block with padding and no text decoration */
ul.MenuBarHorizontal a
{
	display: block;
	cursor: pointer;
	/*background-color: #EEE;*/
	color: #035884;
	text-decoration: none;
}
/* Menu items that have mouse over or focus have a blue background and white text */
ul.MenuBarHorizontal a:hover, ul.MenuBarHorizontal a:focus
{
	/*background-color: #33C;*/
	color: #a3a329;
}
/* Menu items that are open with submenus are set to MenuBarItemHover with a blue background and white text */
ul.MenuBarHorizontal a.MenuBarItemHover, ul.MenuBarHorizontal a.MenuBarItemSubmenuHover, ul.MenuBarHorizontal a.MenuBarSubmenuVisible
{
	/*background-color: #33C;*/
	color: #a3a329;
}

/*******************************************************************************

 SUBMENU INDICATION: styles if there is a submenu under a given menu item

 *******************************************************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenu
{
	/*background-image: url(SpryMenuBarDown.gif);*/
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenu
{
	background-image: url(../SpryAssets/SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color: #cbcc66;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.MenuBarItemSubmenuHover
{
	background-image: url(../SpryAssets/SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.MenuBarItemSubmenuHover
{
	background-image: url(../SpryAssets/SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}


/******************************************

SUB MENU ADDED MANUALLY

******************************************/

/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.LevelTwoMenuItem
{
	background-image: url(SpryMenuBarDown.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color: #cbcc66;
	font-size:10px;
}
/* Menu items that have a submenu have the class designation MenuBarItemSubmenu and are set to use a background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.LevelTwoMenuItem
{
	background-image: url(SpryMenuBarRight.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
	background-color: #cbcc66;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal a.LevelTwoMenuItemHover
{
	background-image: url(SpryMenuBarDownHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}
/* Menu items that are open with submenus have the class designation MenuBarItemSubmenuHover and are set to use a "hover" background image positioned on the far left (95%) and centered vertically (50%) */
ul.MenuBarHorizontal ul a.LevelTwoMenuItemHover
{
	background-image: url(SpryMenuBarRightHover.gif);
	background-repeat: no-repeat;
	background-position: 95% 50%;
}


/*******************************************************************************

 BROWSER HACKS: the hacks below should not be changed unless you are an expert

 *******************************************************************************/

/* HACK FOR IE: to make sure the sub menus show above form controls, we underlay each submenu with an iframe */
ul.MenuBarHorizontal iframe
{
	position: absolute;
	z-index: 1010;
}
/* HACK FOR IE: to stabilize appearance of menu items; the slash in float is to keep IE 5.0 from parsing */
@media screen, projection
{
	ul.MenuBarHorizontal li.MenuBarItemIE
	{
	display: inline;
	background: transparent;
	}
}

#MenuBar1 #whatIsSimplifi {
	background-color: transparent;
	width: 160px;
	text-align: center;
	vertical-align: middle;
}
#MenuBar1 #whyPlan {
	background-color:transparent;
	width: 95px;
	text-align: center;
	border-left:1px #A3A329 solid;
}
#MenuBar1 #demos {
	background-color: transparent;
	width: 95px;
	text-align: center;
	vertical-align: middle;
	border-left:1px #A3A329 solid;
}
#MenuBar1 #blog {
	width: 70px;
	background-color: transparent;
	text-align: center;
	vertical-align: middle;
	border-left:1px #A3A329 solid;
}
#MenuBar1 #aboutUs {
	background-color: transparent;
	width: 90px;
	text-align: center;
	border-left:1px #A3A329 solid;
}
#MenuBar1 #tools {
	background-color: transparent;
	width: 102px;
	text-align: center;
	border-left:1px #A3A329 solid;
	white-space:nowrap;
}
#MenuBar1 .LevelTwoMenuItem {
	background-color: #C8CA5F;
	padding-top:7px;
	padding-bottom:3px;
	width:180px;
	background-color:#fff;
	height:auto;
}
#MenuBar1 .LevelTwoMenuItem li {
	padding-top:7px;
	padding-left:3px;
	font-variant:small-caps;
}
#MenuBar1 .LevelTwoMenuItem li ul {
	padding-top:7px;
	padding-left:3px;
	font-variant:small-caps;
}


/******************************************

		BRANDING CSS
	
******************************************/
.cse-branding-bottom,
.cse-branding-right {
margin:0;
padding:0
}
.cse-branding-bottom,
.cse-branding-right {
zoom: 1;
}
.cse-branding-bottom:after,
.cse-branding-right:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden
}
.cse-branding-text { 
font: 10px Arial;
}
.cse-branding-form form {
margin-bottom: 0;
padding-bottom: 0;
}
/* Bottom-specific selectors */
.cse-branding-bottom .cse-branding-logo, 
.cse-branding-bottom .cse-branding-text {
display: block; 
float: left
}
.cse-branding-bottom .cse-branding-form {
margin-bottom: 3px;
}
.cse-branding-bottom .cse-branding-logo {
padding: 0
}
.cse-branding-bottom .cse-branding-text {
padding-top: 4px
}
.cse-branding-right .cse-branding-form {
float: left;
}
/* Right-specific selectors */
.cse-branding-right .cse-branding-logo, 
.cse-branding-right .cse-branding-text {
margin-left: 4px;
}
.cse-branding-right .cse-branding-form {
float: left;
margin-right: 4px;
}
.cse-branding-right .cse-branding-logo {
padding: 0
}
.cse-branding-right .cse-branding-text {
margin-top: -4px
}

/******************************************

		PREMIUM CONTENT CSS
	
******************************************/

.plussteps {
	position:relative;
	margin:auto;	
}

.plusdiv {
	position:relative;
	width:175px;
	height:215px;
	margin:auto;
	background:url(../images/plan-do-manage_mid.png);
	background-repeat:repeat-y;
}

.plussteps .bottom {
	position:relative;
	bottom:0px;
	width:175px;
	height:23px;
	background:url(../images/plan-do-manage_bottom.png);
	background-repeat: no-repeat;
	background-position:bottom;
	margin:0 0 20px 0;
}

#planTop {
	position:relative;
	width:175px;
	height:48px;
	background:url(../images/plan-do-manage_plan.png);
	background-repeat: no-repeat;
	background-position:top;
}

#doTop {
	position:relative;
	width:175px;
	height:48px;
	background:url(../images/plan-do-manage_do.png);
	background-repeat: no-repeat;
	background-position:top;
}

#manageTop {
	position:relative;
	width:175px;
	height:48px;
	background:url(../images/plan-do-manage_manage.png);
	background-repeat: no-repeat;
	background-position:top;
}

.plusdiv p {
	text-align:center;
	font-size:10px;
	margin-top:0;
	margin-left:12px;
	margin-right:12px;
	padding:0;
}
.plusdiv table {
	position:relative;
	margin:auto;	
}
.plusdiv table tr td{
	font-size:10px;
	padding-left:5px;
	padding-right:5px;
	padding-top:2px;
	padding-bottom:2px;
}
.region1 .heading {
	color: #6c43a1;
}
/******************************************

		SAVE TEAM CSS
	
******************************************/

.saveteam {
	position:relative;
	margin:auto;
}
.saveteam table {
	margin:0;
	padding:0;
	margin-left:15px;
}
.savediv {
	position:relative;
	width:190px;
	height:385px;
	margin:auto;
	background:url(../images/purple-mid.png);
	background-repeat:repeat-y;
}

.saveteam .bottom {
	position:relative;
	bottom:0px;
	width:190px;
	height:32px;
	background:url(../images/purple-bottom.png);
	background-repeat: no-repeat;
	background-position:bottom;

}
.saveteam .top {
	position:relative;
	width:190px;
	height:39px;
	background:url(../images/purple-top-round.png);
	background-repeat: no-repeat;
	text-align:center;
	
}

.saveteam .top p {
	position:relative;
	text-align:center;
	color:#FFFFFF;
	font-size:12px;
	font-weight:bold;
	top:10px;
}

.saveteam .upper {
	color:#6c43a1;
	text-align:center;
	font-size:12px;
	font-weight:bold;
}

.saveteam p {
	margin-top:0;
	margin-left:15px;
	margin-right:15px;
	padding:0;
	font-size:10px;
}
.saveteam .italictext {
	font-style:italic;
}

.saveteam .boldtext {
	font-weight:bold;
}