/*************************************************************************************************/
/* UNIVERSAL Selectors */
/*************************************************************************************************/

*
{
	padding: 0;
	margin: 0;
}

/*************************************************************************************************/


/*************************************************************************************************/
/* ELEMENT Selectors */
/*************************************************************************************************/

html
{
}

body
{
	background: #e7f4fb url(../images/bodyBg.jpg) top center repeat-x;
	color: #4d4e53;
	font: 62.5%/1.2 Arial, Helvetica, sans-serif;
}

strong.codeRed,span.codeRed, body.results p.codeRed
{
	color: #e61414;
}

strong.codeAmber, span.codeAmber, p.codeAmber
{
	color: #d6ab17;
}

strong.codeGreen, span.codeGreen, p.codeGreen
{
	color: #17af1e;
}

h1 { border-bottom: 1px solid #cf932d; color: #0197d7; display:block; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 240%; font-weight: bold; margin: 1em 0em 1.5em 0em; }
h2 { border-bottom: 1px solid #cf932d; color: #0197d7; display:block; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 210%; font-weight: normal; margin: 2em 0em 2em 0em; }
h3 { border-bottom: none; color: #0197d7; display:block; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 180%; font-weight: normal; margin: 2em 0em 1em 0em; }
h4 { border-bottom: none; color: #0197d7; display:block; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 150%; font-weight: normal; margin: 2em 0em 1em 0em; }
h5 { border-bottom: none; color: #0197d7; display:block; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 130%; font-weight: normal; margin: 2em 0em 1em 0em; }
h6 { border-bottom: none; color: #0197d7; display:block; font-family: "Trebuchet MS", Arial, Helvetica, sans-serif; font-size: 110%; font-weight: normal; margin: 2em 0em 1em 0em; }

p
{
	display: block;
	font-size: 130%;
	line-height: 1.4em;
	margin: 1em 0em 1em 0em;
}

a
{
	color: #0197d7;
	text-decoration: underline;
}

/*a:active { outline: none; }*/
a:hover { color: #cc6600; }
/*a:focus { outline: none; }*/

img
{
	border: none;
}

img.imgFloatLeft
{
	float: left;
	margin: 10px 20px 10px 0px;
}

img.imgFloatRight
{
	float: right;
	margin: 10px 0px 10px 20px;
}

em { font-style: italic; display: inline; }
strong { font-weight: bold; display: inline; }

sup
{
	vertical-align: text-top;
	font-size: 75%;
	line-height:normal;
}

/* FORM Elements */

form
{
	display: block;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

/*form button:active { outline: none; }
form button:focus { outline: none; }*/

form button.goBtn
{
	background: url(../images/goBtnBg.png) 0px 0px no-repeat;
	border: none;
	height: 22px;
	margin: 0px 0px 0px 2px;
	overflow: hidden;
	text-indent: -9999px;
	width: 38px;
}

form button.goBtn:hover
{
	background-position: 0px -22px;
	cursor: pointer;
}

form button.submitBtn
{
	background: url(../images/submitBtnBg.png) 0px 0px no-repeat;
	border: none;
	height: 26px;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	text-indent: -9999px;
	width: 80px;
}

form button.genericBtn
{
	background: url(../images/btnBgGeneric.png) 0px 0px no-repeat;
	border: none;
	height: 26px;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	width: 120px;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1em;
}

form button.submitBtn:hover,
form button.genericBtn:hover
{
	background-position: 0px -26px;
	cursor: pointer;
}

form fieldset
{
	border: none;
	border-bottom: 1px solid #ffffff;
	margin: 0em 0em 2em 0em;
	padding: 0em 0em 2em 0em;
}

form fieldset legend
{
	color: #3f83c8;
	font-size: 140%;
	font-weight: bold;
	margin: 0px 0px 20px 0px;
	padding: 10px 0px 0px 0px;
}

form input
{
	font-size: 120%;
}

form input.textfieldInput
{
	margin: 0px 0px 0px 0px;
	width: 60%;
}

form label
{
	color: #ffffff;
	float: left;
  clear: left;
	font-size: 120%;
	font-weight: bold;
	margin: 0px 10px 0px 0px;
	text-align: right;
	width: 30%;
}

form.crud input {
	width: 300px;
}

form.crud label {
  height: 50px;
}

form.crud label span.note {
	display: block; 
	width: 300px; 
	text-align: left; 
	padding-left: 155px; 
	padding-top: 5px; 
	color: yellow; 
	font-weight: normal;
}

form.crud input[type=checkbox] {
  width: auto;
}

form.crud input[readonly] {
  background: #ccc;
}

.yummyform {
  width: 90%;
  margin: 2em auto;
}

.yummyform form label {
  color: #000;
  text-align: left;
}

.yummyform form label.error {
  color: red;
  text-align: right;
}

.hide {
    display: none;
}

form label.inlineLabel
{
	float: none;
	margin: 0px 10px 0px 5px;
	text-align: left;
	width: auto;
}

form select
{
	font-size: 120%;
}

form textarea
{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 130%;
	height: 5em;
	width: 60%;
}

form div
{
	margin: 0px 0px 8px 0px;
  clear: left;
}

form div.formButtons
{
	margin: 0px 0px 0px 0px;
	padding: 0% 7% 0% 0%;
	text-align: right;
}

form span.required
{
	color: #ff0000;
	margin: 0px 5px 0px 5px;
}

form span.em
{
  font-size:1.2em;
}

form p.formErrorMessage
{
	color: #ff0000;
	font-size: 110%;
	margin: 0.3em 0em 0.3em 0em;
	text-align: right;
}

form input.hasDatepicker {
  background:#FFFFFF url(/images/calendar_icon.gif) no-repeat scroll right center;
  border-style:inset;
  border-width:1px;
  cursor:pointer;
  width:90px !important;
}

/* individual forms */
#loginForm input,
#accountForm input,
#contactForm input,
#registerProgramForm input,
#programRegForm input,
#forgottenPasswordForm input,
#userRegForm input,
#programPurchaseForm input,
#paymentForm input {
  margin:0;
  width:60%;
}

#registerProgramForm #programregistration_terms_disclosure,
#registerProgramForm #programregistration_privacy_disclosure,
#accountForm #user_Privacy,
#accountForm #user_Terms,
#accountForm #user_IsAllowAdvertising,
#userRegForm #user_Privacy,
#userRegForm #user_Terms,
#userRegForm #user_IsAllowAdvertising {
  width: auto;
}

#loginForm ul.radio_list,
#accountForm ul.radio_list,
#unsubscribeForm ul.radio_list,
#programRegForm ul.radio_list,
#deregisterProgramForm ul.radio_list,
#forgottenPasswordForm ul.radio_list,
#userRegForm ul.radio_list
{
  list-style-type: none;
  margin: 0;
}

#loginForm ul.radio_list li,
#accountForm ul.radio_list li,
#unsubscribeForm ul.radio_list li,
#programRegForm ul.radio_list li,
#deregisterProgramForm ul.radio_list li,
#forgottenPasswordForm ul.radio_list li,
#userRegForm ul.radio_list li {
  display: inline;
  list-style: none;
  background: none;
  margin: 0;
  padding: 0;
}

#loginForm ul.radio_list input,
#accountForm ul.radio_list input,
#unsubscribeForm ul.radio_list input,
#deregisterProgramForm ul.radio_list input,
#userRegForm ul.radio_list input {
  width: auto;
}

#loginForm ul.radio_list label,
#accountForm ul.radio_list label,
#unsubscribeForm ul.radio_list label,
#deregisterProgramForm ul.radio_list label,
#userRegForm ul.radio_list label {
  width: auto;
  float: none;
  font-size: 95%;
}

#accountForm #account_IsAllowAdvertising,
#userRegForm #account_IsAllowAdvertising {
  width: auto;
}

#accountForm .checkbox label,
#userRegForm .checkbox label {
  width: auto;
  float: none;
}

#accountForm #account_DOB,
#userRegForm #account_DOB {
  width: 100px;
}

#contactForm fieldset div {
  clear: left;
}

#accountForm input.cc_date,
#userRegForm input.cc_date,
#paymentForm input.cc_date,
#programPurchaseForm input.cc_date{
  display: inline;
  width: 35px;
}

#accountForm p.input,
#userRegForm p.input,
#paymentForm p.input  {
  width: 60%;
  display: inline;
}

#userRegForm #voucherText,
#programPurchaseForm #voucherText {
	display: none;
}

#userRegForm #apply_voucher,
#programPurchaseForm #apply_voucher {
	width: 100px; margin-left: 320px;
}


ul.error_list {
  color:red;
  display:block;
  float:right;
  margin:0.7em 4em 0.2em;
  padding:5px;
  width:60%;
}

label.error {
  color: yellow;
  display: block;
  width: 92%;
  clear: right;
  padding: 5px;
}

div.chromeBg form ul.error_list li {
  background: none;
  background-image: none;
}

/* LIST Elements */

ul
{
	list-style: none;
	list-style-position: outside;
	margin: 2em 0em 2em 3em;
}

ul li
{
	background: url(../images/ulBulletBlue.png) 0em 0.5em no-repeat;
	font-size: 130%;
	margin: 0em 0em 0.5em 0em;
	padding: 0em 0em 0em 1em;
}

ul li a
{
}

ul li p
{
	font-size: 100%;
}

ul li ul
{
	margin: 0.5em 0em 0.8em 0em;
	padding: 0em 0em 0em 1em;
}

ul li ul li
{
	font-size: 100%;
}

ul li ul li a
{	
}

ol
{
	color: #0197d7;
	font-size: 130%;
	font-weight: bold;
	list-style-position: outside;
	list-style-type: decimal;
	margin: 1.5em 0em 1.5em 4em;
	padding: 0em 0em 0em 0em;
	
}

ol li
{
	margin: 0em 0em 0.5em 0em;
}

ol li p
{
	color: #4d4e53;
	font-size: 100%;
	font-weight: normal;
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0em 0em;
}

dl
{
	display:block;
	font-size: 120%;
	margin: 2em 0em 2em 0em;
}

dt
{
	display:block;
	font-weight: bold;
	margin: 0em 0em 0.5em 0em;
}

dd
{
	display: block;
	margin: 0em 0em 1em 0em;
}

dl p
{
	font-size: 100%;
}

dl ol
{
	font-size: 100%;
}


/* TABLE Elements */

table
{
	border: 2px solid #ffffff;
	border-collapse: collapse;
	border-spacing: 2px;
	font-size: 130%;
	margin: 2em 0em 2em 0em;
	width: 100%;
}

tr.alt td
{
	background: #dfdfdf url(../images/tableTdAltBg.jpg) top left repeat-x;
}

td
{
	background: #f2f2f2 url(../images/tableTdBg.jpg) top left repeat-x;
	border: 2px solid #ffffff;
	padding: 5px;
	text-align: left;
	vertical-align: top;
}

td.setLeft
{
	text-align: left;
}

th
{
	background: #434343 url(../images/tableThBg.jpg) top left repeat-x;
	border: 2px solid #ffffff;
	color: #ffffff;
	font-weight: bold;
	padding: 5px;
	text-align: center;
	vertical-align: top;
}

th span.sub {
	font-size: 85%;
	display: block;
	font-weight: normal;
}

table.packages th {
	width: 100px;
	text-align: left;
}

table.vouchers th {
  width: auto;
  text-align: left;
}

table.vouchers td.actions {
  width: 40px;
}

table.packages span.add {
	float: right;
}

table.packages span.add a {
	color: #fff;
}

table.membergroupprograms {
	color: #000;
}

table.membergroupprograms td input {
  width: 70px;
	font-size: 100%;
}

table.membergroupprograms th input,
table.membergroupprograms th select {
  font-size: 100%;
}

caption
{
	text-align: center;
}

table p
{
	font-size: 100%;
}

table ul
{
	margin: 2em 0em 1em 1.5em;
}

table ul li
{
	font-size: 100%;
}

table ol
{
	margin: 1em 0em 1em 2.5em;
}

table ol li
{
	font-size: 77%;
}

table ol li p
{
	font-size: 100%;
}

/*************************************************************************************************/


/*************************************************************************************************/
/* LAYOUT Selectors */
/*************************************************************************************************/

body.lifestyleCentre div#showcases
{
	background: url(../images/lifestyleCentreShowcasesBg.jpg) top right no-repeat;
	height: 350px;
	margin: 10px 0px 0px 0px;
}

div.audioPlayer
{
	margin: 20px 0;
}

a.btn
{
	background: url(../images/btnBg.jpg) top right no-repeat;
	color: #ffffff;
	display: block;
	float: left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	height: 17px;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	padding: 5px 11px 0px 11px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

a.btn span
{
	background: url(../images/btnBgLeft.jpg) top right no-repeat;
	display: block;
	height: 22px;
	left: 0px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	top: 0px;
	width: 11px;
}

a.btn:hover
{
	background-position: bottom right;
}

a.btn:hover span
{
	background-position: bottom right;
}

a.btnTransparent
{
	background: url(../images/btnBg.png) top right no-repeat;
	color: #ffffff;
	display: block;
	float: left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	height: 17px;
	margin: 0px 0px 0px 0px;
	/*overflow: hidden;*/
	padding: 5px 11px 0px 0px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
}

a.btnTransparent span
{
	background: url(../images/btnBgLeft.png) top right no-repeat;
	display: block;
	height: 22px;
	left: -11px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	top: 0px;
	width: 11px;
}

a.btnTransparent:hover
{
	background-position: bottom right;
}

a.btnTransparent:hover span
{
	background-position: bottom right;
}

div.errorMessage, p.errorMessage
{
	background: #fcffcf;
	border-bottom: 1px solid #ff0000;
	border-top: 1px solid #ff0000;
	color: #ff0000;
	font-weight: bold;
	padding: 10px 10px 10px 10px;
	margin: 10px 0px 10px 0px;
}

form div.formFootnote
{
	margin: 2em 0em 1em 0em;
}

form div.formFootnote p
{
	font-size: 110%;
	margin: 0.5em 0em 0.5em 0em;
	
}


form div.formHeadnote
{
  margin: 0em 0em 1em 0em;
}

form div.formHeadnote p
{
  font-size: 110%;
  margin: 0.5em 0em 0.5em 0em;
  
}

p.lead
{
	font-size: 140%;
	font-weight: bold;
}

div#banner
{
	background: url(../images/bannerBg.jpg) 0px 0px no-repeat;
	height: 150px;
	position: relative;
}
div#bannerSales
{
	background: url(../images/salesBanner.jpg) 0px 0px no-repeat;
	height: 150px;
	position: relative;
}

div#content
{
	background: url(../images/contentBgBody.png) 0px 0px repeat-y;
	float: left;
	margin: 15px 0px 15px 0px;
	padding: 0px 35px 0px 35px;
	position: relative;
	width: 670px;
	z-index: 2;
}

div#content div.sectionTopBg { background: url(../images/contentBgTop.png) 0px 0px no-repeat; height: 15px; left: 0px; position: absolute; top: -15px; width: 740px; }
div#content div.sectionBottomBg { background: url(../images/contentBgBottom.png) 0px 0px no-repeat; height: 15px; left: -35px; position: relative; bottom: -15px; width: 740px; }

div#contentNav
{	
	background: url(../images/contentNavBgBody.png) 0px 0px repeat-y;
	float: left;
	margin: 15px 0px 15px 0px;
	padding: 10px 20px 30px 20px;
	position: relative;
	width: 190px;
	z-index: 2;
}

div#contentNav div.sectionTopBg { background: url(../images/contentNavBgTop.png) 0px 0px no-repeat; height: 15px; left: -20px; position: relative; top: -25px; width: 230px; }
div#contentNav div.sectionBottomBg { background: url(../images/contentNavBgBottom.png) 0px 0px no-repeat; height: 15px; left: -20px; position: relative; bottom: -45px; width: 230px; }

div#contentNav ul
{
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	width: 190px;
}

div#contentNav ul li
{
	background: #3f83c8 url(../images/contentNavLinkBgRight.jpg) top right repeat-y;
	font-size: 120%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
}

div#contentNav ul li a
{
	background: url(../images/contentNavLinkBgLeft.jpg) 0px 0px repeat-y;
	border-bottom: 1px solid #3b80b4;
	border-top: 1px solid #81b4da;
	color: #ffffff;
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-weight: normal;
	margin: 0em 0em 0em 0em;
	padding: 5px 10px 5px 20px;
	text-decoration: none;
	z-index: 2;
}

div#contentNav ul li a:hover
{
	background: #6faadb url(../images/contentNavLinkBgLeftRo.jpg) 0px 0px repeat-y;
	color: #29639e;
}

div#contentNav ul li a.disabled
{
	background-image: url(../images/contentNavLinkBgLeft.jpg);
	color: #a1d4ec;
}

div#contentNav ul li a.disabled:hover
{
	background: url(../images/contentNavLinkBgLeft.jpg) 0px 0px repeat-y;
	color: #a1d4ec;
}

div#contentNav ul li ul li
{
	font-size: 100%;
}

div#contentNav ul li ul li a
{
	padding-left: 35px;
}

div#contentNav ul li ul li ul li a
{
	padding-left: 50px;
}

div#contentNav ul li a span
{
	background: url(../images/contentNavBullet.png) 0px 0px no-repeat;
	display: block;
	height: 10px;
	left: 7px;
	overflow: hidden;
	position: absolute;
	top: 9px;
	width: 10px;
	z-index: 3;
}

div#contentNav ul li a:hover span
{
	background-position: 0px -10px;
}

div#contentNav ul li ul li a span
{
	left: 22px;
}

div#contentNav ul li ul li ul li a span
{
	left: 37px;
}

div#contentNav ul li.open > a span
{
	background-image: url(../images/contentNavBulletOpen.png);
}

div#contentNav ul li a.disabled span
{
	background-position: 0px -20px;
}

div#contentNav ul li.open ul
{
	display: block;
}

div#contentNav ul li.close ul
{
	display: none;
}

div#contentNav h3
{
	background: url(../images/contentNavHeaderBg.jpg) 0px 0px no-repeat;
	border-bottom: 1px solid #3b80b4;
	color: #3f83c8;
	font-size: 160%;
	height: 25px;
	margin: 0px 0px 0px 0px;
	padding: 25px 0px 0px 10px;
}

div#contentNav div.contentNavFooter
{
	background: url(../images/contentNavFooterBg.jpg) 0px 0px no-repeat;
	height: 52px;
}

div#dsBanner
{
	background: url(../images/dsBannerBg.jpg) 0px 0px no-repeat;
	height: 180px;
	margin: 10px 0px 35px 0px;
	position: relative;
	width: 100%;
}

div#dsBanner img {
  padding:10px 5px;
}


div#dsBanner div#dsBanner1
{
	background: url(../images/ds1BannerHeroGeneric.png) 0px 0px no-repeat;
	height: 129px;
	left: 5px;
	overflow: hidden;
	position: absolute;
	top: 10px;
	width: 472px;
}

div#dsBanner div#dsBanner2
{
	background: url(../images/ds2BannerHeroGeneric.png) 0px 0px no-repeat;
	height: 129px;
	left: 487px;
	overflow: hidden;
	position: absolute;
	top: 10px;
	width: 170px;
}

div#dsBanner div#dsBanner1.ds_1{ background-image: url(../images/ds1BannerHeroBelieve.png); }
div#dsBanner div#dsBanner2.ds_1{ background-image: url(../images/ds2BannerHeroBelieve.png); }
div#dsBanner div#dsBanner1.ds_2{ background-image: url(../images/ds1BannerHeroGeneric.png); }
div#dsBanner div#dsBanner2.ds_2{ background-image: url(../images/ds2BannerHeroGeneric.png); }
div#dsBanner div#dsBanner1.ds_3{ background-image: url(../images/ds1BannerHeroBelieve.png); }
div#dsBanner div#dsBanner2.ds_3{ background-image: url(../images/ds2BannerHeroBelieve.png); }
div#dsBanner div#dsBanner1.ds_113{ background-image: url(../images/ds1BannerHeroBeActive.png); }
div#dsBanner div#dsBanner2.ds_114{ background-image: url(../images/ds2BannerHeroWorkCoverSa.png); }

div#dsBanner div#dsBanner1.default{ background-image: url(../images/ds1BannerHeroGeneric.png); }
div#dsBanner div#dsBanner2.default{ background-image: url(../images/ds2BannerHeroGeneric.png); }

div#footer
{
	background: url(../images/footerBg.png) 0px 0px no-repeat;
	clear: both;
	height: 35px;
	margin: 0px 0px 0px 0px;
	padding: 20px 30px 30px 30px;
	overflow: hidden;
	position: relative;
	width: 910px;
	z-index: 2;
}

div#footer ul
{
	color: #ffffff;
	list-style: none;
	margin: 5px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div#footer ul li
{
	background: none;
	color: #ffffff;
	display: inline;
	font-size: 110%;
	margin: 0px 10px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div#footer ul li a
{
	background: none;
	border-left: 1px solid #ffffff;
	color: #ffffff;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 8px;
	text-decoration: none;
}

div#footer ul li a:hover
{
	text-decoration: underline;
}

div#header
{
	background: url(../images/headerBg.jpg) left bottom repeat-x;
	height: 70px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

div#header a.alphaOne
{
	background: url(../images/headerAlphaOneLogo.png) 0px 0px no-repeat;
	display: block;
	height: 54px;
	left: 20px;
	overflow: hidden;
	position: absolute;
	text-align: left;
	text-indent: -9999px;
	top: 5px;
	width: 180px;
}

div#header form#setLanguageForm
{
	margin: 0px 0px 0px 0px;
	padding: 0px 47px 0px 0px;
	position: absolute;
	right: 20px;
	top: 23px;
}

div#header form#setLanguageForm label
{
	color: #0197d7;
	float: none;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 120%;
	margin: 0px 7px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-transform: uppercase;
	vertical-align: baseline;
}

div#header form#setLanguageForm span.flag
{
	background: 0px 0px no-repeat;
	border: 1px solid #000000;
	display: block;
	height: 18px;
	position: absolute;
	right: 0px;
	top: 1px;
	width: 38px;
}
div#header form#setLanguageForm span.eng { background-image: url(../images/headerFlagEng.jpg); }
div#header form#setLanguageForm span.spa { background-image: url(../images/headerFlagSpa.jpg); }

div#mainNav
{
	background: url(../images/mainNavBg.jpg) 0px 0px repeat-x;
	height: 40px;
	overflow: hidden;
	position: relative;
	width: 100%;
}

div#mainNav ul
{
	list-style: none;
	margin: 8px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div#mainNav ul li
{
	background: none;
	display: inline;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div#mainNav ul li a
{
	background: url(../images/mainNavBtnBg.png) top right;
	color: #ffffff;
	display: block;
	float: left;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 100%;
	height: 22px;
	line-height: 22px;
	margin: 0px 0px 0px 17px;
	padding: 0px 12px 0px 5px;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	vertical-align: middle;
}

div#mainNav ul li a:hover {	background-position: bottom right; }

div#mainNav ul li a span
{
	background: url(../images/mainNavBtnBgLeft.png) 0px 0px no-repeat;
	display: block;
	height: 22px;
	left: -7px;
	position: absolute;
	top: 0px;
	width: 7px;
	z-index: 1;
}

div#mainNav ul li a:hover span { background-position: 0px -22px; }

div#page
{
	background: url(../images/pageBgBody.png) 0px 0px repeat-y;
	margin: 44px auto 50px auto;
	min-height: 600px;
	padding: 0px 15px 0px 15px;
	position: relative;
	width: 970px;
	z-index: 2;
}

div#page div#pageTopBg { background: url(../images/pageBgTop.png) 0px 0px no-repeat; height: 20px; left: 0px; position: absolute; top: -20px; width: 1000px; }
div#page div#pageBottomBg {	background: url(../images/pageBgBottom.png) 0px 0px no-repeat; height: 20px; left: 0px;	position: absolute;	bottom: -20px; width: 1000px; }

div#pageBg
{
	
	background: url(../images/bodyBg2.png) top center no-repeat;
	height: 400px;
	position: absolute;
	top: 0px;
	width: 100%;
	z-index: 1;
}

div#page div#contentBg
{
	background: url(../images/pageContentBg.jpg) 0px 0px repeat-x;
	height: 330px;
	left: 15px;
	position: absolute;
	top: 260px;
	width: 970px;
	z-index: 1;
}

div#userArea
{
	background: url(../images/userAreaBgBody.png) 0px 0px repeat-y;
	margin: 20px 0px 15px 0px;
	padding: 0px 20px 0px 20px;
	position: relative;
	width: 930px;
	z-index: 2;
}

div#userArea div.sectionTopBg { background: url(../images/userAreaBgTop.png) 0px 0px no-repeat; height: 15px; left: 0px; position: absolute; top: -15px; width: 970px; }
div#userArea div.sectionBottomBg { background: url(../images/userAreaBgBottom.png) 0px 0px no-repeat; height: 15px; left: 0px; position: absolute; bottom: -15px; width: 970px; }

div#userArea ul#breadcrumbs
{
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div#userArea ul#breadcrumbs li
{
	background: url(../images/ulBulletMustard.png) 0px 6px no-repeat;
	display: inline;
	margin: 0px 15px 0px 0px;
	padding: 0px 0px 0px 10px;
}

div#userArea ul#breadcrumbs a
{
	background: none;
	color: #afafaf;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	text-decoration: none;
}

div#userArea ul#breadcrumbs a:hover
{
	color: #cf932d;
	text-decoration: underline;
}

div#userArea p.userMessage
{
	color: #afafaf;
	display: inline;
	font-weight: bold;
	line-height: 1em;
	margin: 0em 0em 0em 0em;
	padding: 0em 0em 0em 0em;
	position: absolute;
	right: 30px;
	top: 0px;
	white-space: nowrap;
}

/*************************************************************************************************/

div.breakOutBox
{
	margin: 20px 0px 20px 0px;
	width: 370px;
}

div.breakOutBox div.breakOutBoxTop
{
	background: url(../images/breakOutBoxBgTop.jpg);
	padding: 12px 20px 5px 20px;
}

div.breakOutBox div.breakOutBoxBody
{
	background: url(../images/breakOutBoxBgBody.jpg);
	min-height: 70px;
	padding: 15px 30px 10px 30px;
}

div.breakOutBox div.breakOutBoxBottom
{
	background: url(../images/breakOutBoxBgBottom.jpg);
	height: 25px;
	width: 100%;
}

div.breakOutBox h3
{
	color: #ffffff;
	font-size: 180%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div.breakOutBox ul
{
	margin: 0em 1em 0em 1em;
	padding: 0px 0px 0px 0px;
}




div.chromeBg
{
	background: url(../images/chromeBgBody.jpg) 0px 0px repeat-y;
	clear: both;
	margin: 25px auto 25px auto;
	padding: 40px 40px 0px 40px;
	position: relative;
	width: 480px;
}

div.chromeBg div.chromeBgTop
{
	background: url(../images/chromeBgTop.jpg) 0px 0px repeat-y;
	height: 40px;
	left: 0px;
	position: absolute;
	top: 0px;
	width: 560px;
	z-index: 1;
}

div.chromeBg div.chromeBgBottom
{
	background: url(../images/chromeBgBottom.jpg) 0px 0px repeat-y;
	bottom: 0px;
	height: 20px;
	left: -40px;
	position: relative;
	width: 560px;
	z-index: 1;
}

div.chromeFullBg { background-image: url(../images/chromeFullBgBody.jpg); width: 590px; }
div.chromeFullBg div.chromeBgTop { background-image: url(../images/chromeFullBgTop.jpg); width: 670px; }
div.chromeFullBg div.chromeBgBottom { background-image: url(../images/chromeFullBgBottom.jpg); width: 670px; }

div.chromeSmallBg { background-image: url(../images/chromeSmallBgBody.jpg); width: 270px; }
div.chromeSmallBg div.chromeBgTop { background-image: url(../images/chromeSmallBgTop.jpg); width: 350px; }
div.chromeSmallBg div.chromeBgBottom { background-image: url(../images/chromeSmallBgBottom.jpg); width: 350px; }

div.chromeSmallBg form div.formButtons { padding-right: 5%; }

div.chromeBg div.chromeBgContent
{
	margin: -10px 0px 0px 0px;
	position: relative;
	z-index: 5;
}

div.chromeBg form
{
	color: #ffffff;
	margin: 2em 0em 2em 0em;
}

div.chromeBg form a
{
	color: #ffffff;
}

div.chromeBg form a:hover
{
	color: #ff0000;
}

div.chromeBg form ul li
{
	background-image: url(../images/ulBulletWhite.png);
}

div.chromeBg form .double_list {
  padding: 10px 0 0 22px; 
	clear: both;
}

div.chromeBg form .double_list select {
	width: 220px;
}

div.chromeBg form .double_list div {
	clear: none;
}

div.chromeBg h3
{
	color: #ffffff;
	font-size: 180%;
	margin: 0em 0em 0em 0em;
}

div.chromeBg h4
{
	color: #ffffff;
	font-size: 150%;
	margin: 0.5em 0em 1em 0em;
}

div.elementCentre, p.elementCentre
{
	clear: both;
	text-align: center;
}

div#feedback
{
	background: #666666;
	color: #ffffff;
	display: none;
	right: 0px;
	padding: 10px;
	position: absolute;
	top: 0px;
	z-index: 20;
}


div.healthTool
{
	background: url(../images/healthToolsBg.png) 0px 0px no-repeat;
	margin: 0px 0px 0px 0px;
	padding: 20px 0px 20px 20px;
	/*text-align: center;*/
}

div.healthTool iframe
{
	height: 500px;
	margin: 0px 0px 0px 0px;
	width: 550px;
}

div.healthTool h3
{
	left: -9999px;
	position: absolute;
}


div.showcase
{
	float: left;
	margin: 0px 20px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	width: 201px;
}

div.showcase h3
{
	background: url(../images/showcasesHdrBg.jpg) top left no-repeat;
	font-size: 180%;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	padding: 12px 20px 5px 15px;
	position: relative;
}

div.showcase h3 span
{
	background: url(../images/showcasesHdrBgRight.jpg) top left no-repeat;
	display: block;
	font-size: 180%;
	height: 86px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 20px;
}

div.showcase div.showcaseBody
{
	background: url(../images/showcasesBodyBg.jpg) top left no-repeat;
	height: 14em;
	margin: 0px 0px 0px 0px;
	overflow: hidden;
	padding: 100px 20px 35px 15px;
	position: relative;
}

div.showcase div.showcaseBody span.ender
{
	background: url(../images/showcasesBodyBgRight.jpg) top left no-repeat;
	display: block;
	height: 402px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 20px;
	z-index: 3;
}

div.showcase div.showcaseBody p
{
	line-height: 1.3em;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: relative;
	z-index: 5;
}

div.showcase div.showcaseBody div.showcaseHero
{
	background: 0px 0px no-repeat;
	height: 150px;
	left: 6px;
	position: absolute;
	top: 0px;
	width: 184px;
	z-index: 4;
}

div.showcasePrograms div.showcaseBody div.showcaseHero { background-image: url(../images/showcaseHeroPrograms.jpg); }
div.showcaseResources div.showcaseBody div.showcaseHero { background-image: url(../images/showcaseHeroResources.jpg); }

div.showcase div.showcaseFooter
{
	background: url(../images/showcasesFooterBg.jpg) top left no-repeat;
	height: 21px;
	position: relative;
}

div.showcase div.showcaseFooter span
{
	background: url(../images/showcasesFooterBgRight.jpg) top left no-repeat;
	display: block;
	height: 21px;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	position: absolute;
	right: 0px;
	top: 0px;
	width: 20px;
	z-index: 3;
}

div.showcase a.btn
{
	margin: 10px 0px 0px 0px;
	position: absolute;
	bottom: 3px;
	right: 20px;
	z-index: 7;
}


div#toc
{
	background: url(../images/tocNavBg.jpg) top right no-repeat;
	margin: 0px 0px 0px 0px;
	min-height: 315px;
	padding: 0px 0px 0px 0px;
}

div#toc h2
{
	border-bottom: none;
	color: #cf932d;
	margin: 0em 0em 0.5em 0em;
}

div#toc ul
{
	list-style: none;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div#toc ul li
{
	background-image: none;
	margin: 0px 0px 4px 0px;
	padding: 0px 0px 0px 0px;
}

div#toc ul li a
{
	background: url(../images/tocNavNodeBg.jpg) 0px 0px no-repeat;
	display: block;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 110%;
	font-weight: bold;
	margin: 0px 0px 0px 0px;
	min-height: 18px;
	overflow: hidden;
	padding: 5px 30px 4px 40px;
	text-decoration: none;
	width: 290px;
}

div#toc ul li a:hover
{
	background-position: 0px -132px;
	color: #ffffff;
}

body.weeklyContent h2
{
	border-bottom: none;
	margin-top: 0em;
}

body.weeklyContent div.horSep, div.horSep
{
	background: url(../images/weeklySegHorSep.jpg) 0px 0px repeat-x;
	clear: both;
	height: 60px;
	margin: 70px 0px 40px 0px;
	position: relative;
	text-align: right;
	width: 100%;
}
body.weeklyContent div.horSepClear, div.horSepClear
{
	
	background: url(../images/weeklySegHorSepClear.jpg) 0px 0px repeat-x;
	clear: both;
	height: 5px;
	margin: 40px 0px 20px 0px;
	position: relative;
	text-align: right;
	width: 100%;
}


body.weeklyContent div.horSep.first,
.horSep.first {
  margin-top: 0 !important;
}

body.weeklyContent div.horSep a.topBtn, div.horSep a.topBtn
{
	position: absolute;
	right: 10px;
	top: 6px;
}

body.weeklyContent table td.planNum
{
	font-weight: bold;
	text-align: center;
	width: 10%;
}

body.weeklyContent table td.planCheck
{
	/*background: url(../images/plan-check-box.gif) 10px 10px no-repeat;*/
	width: 32px;
}

div.weeklySegmentWelcome
{
	/*background: url(../images/welcomeAmbassador.jpg) 0px 0px no-repeat;
	padding: 0px 0px 0px 230px;*/
}

dl#weeklyOverview dt a
{
	color: #4d4e53;
	text-decoration: none;
}

dl#weeklyOverview dt a:hover
{
	text-decoration: underline;
}

body.weeklyPrintContent
{
	background: #ffffff;
}

div#printPage
{
	color: #000000;
	margin: 10px auto 10px 10px;
	width: 500px;
}

div#printPage h1,div#printPage h2,div#printPage h3
{
	border-bottom: none;
	color: #000000;
}

div#printPage a
{
	color: #000000;
	text-decoration: none;
}

div#printPage ul li
{
	background-image: url(../images/ulBulletBlack.png);
}

div#printPage ol, div#printPage ol p
{
	color: #000000;
}

div#printPage table
{
	border: 1px solid #000000;
}

div#printPage th, div#printPage td
{
	background: #ffffff;
	border: 1px solid #000000;
	color: #000000;
}

ul.resourceList
{
	list-style: none;
	margin: 0px 30px 0px 30px;
	padding: 0px 0px 0px 0px;
}

ul.resourceList li
{
	background: 0px 0px no-repeat;
	border-bottom: 1px solid #0197d7;
	height: 142px;
	margin: 0px 0px 25px 0px;
	padding: 0px 0px 0px 95px;
	position: relative;
}

ul.resourceList li.dietAndNutrition { background-image: url(../images/lcResListHeroDietAndNutrition.jpg); }
ul.resourceList li.emotionalAndPsychologicalHealth { background-image: url(../images/lcResListHeroEmotionalAndPsychologicalHealth.jpg); }
ul.resourceList li.exerciseAndFitness { background-image: url(../images/lcResListHeroExerciseAndFitness.jpg); }
ul.resourceList li.lifestyle { background-image: url(../images/lcResListHeroLifestyle.jpg); }
ul.resourceList li.medicalConditions { background-image: url(../images/lcResListHeroMedicalConditions.jpg); }

ul.resourceList li a.btn
{
	bottom: 10px;
	font-size: 80%;
	position: absolute;
	right: 0px;
}

ul.resourceList li h3
{
	clear: both;
	font-size: 120%;
	margin: 0em 0em 0.5em 0em;
	padding: 0em 0em 0em 0em;
}

ul.resourceList li p
{
	clear: both;
	font-size: 92%;
	margin: 0em 0em 0.5em 0em;
	padding: 0em 0em 0em 0em;
}


/* form support */
.message {
  border: 1px solid #ccc; 
  padding: 20px 10px;
  margin: 10px 0;
  font-size: 120%;
  font-weight: bold;
  background: #A0D6F0;
  color: #000;
}

/* login page */
#login {
  margin: auto; 
  width: 670px;
}

#login .chromeBg {
  margin-top: 15px;
}

#login div#dsBanner {
  margin-bottom: 15px;
}

#login h1 {
  margin-bottom: 0.5em;
}

#login-link {
  float: right;
  padding: 20px 30px;
}

#login-link a {
  font-size: 120%;
}


h1.sales { padding-left: 250px;}
.salesContent { width: 650px; margin-left: 250px;}

.salesLists { }
.salesLists ul { width: 239px; float: left; display: block; height: 127px; padding: 10px; background: url(../images/panel.jpg) top left no-repeat;}
.salesLists ul li {color: #fff;}


a.sales { background-image: url(../images/register.jpg); width: 121px; height: 22px; display: block; font-size: 0.1em; color: #35b1e6;}




#mainContent {
	float: right;
	width: 626px;
}
#sideContent {
	background: url(../images/bg-side.jpg) top right no-repeat;
	float: left;
	height: 486px;
	padding: 50px 0 0 0;
	width: 240px;
	position: relative;
	top: -10px;
	z-index: 5000;
}
#sideContent ul {
border-top: 1px solid #cfe1ec;
	padding: 0;
	margin: 0;
}
#sideContent ul li {
	background-image: none; 
	padding: 0px 0;
	margin: 0;
    border-bottom: 1px solid #cfe1ec;
    border-right: 1px solid #cfe1ec;
}
#sideContent ul li.active{
    background-color: #fff;
    border-right: none;
}
#sideContent ul li a{

	display: block;
	padding: 10px 0 10px 10px;
	margin: 0;
}
#sideContent ul li a:link, #sideContent ul li a:visited{
text-decoration: none;
}
#sideContent ul li:hover {
text-decoration: none;
background-color: #fff;
}



#sideContent ul li ul {
    display: none;
    font-size: 0.9em;
}
#sideContent ul li.active ul {
    display: block;
    border: none;
}
#sideContent ul li.active ul li {
    border: none;
}
#sideContent ul li.active ul li a {
    padding: 5px 0 5px 25px;
}


/* reporting and dynamic placeholder widgets */
strong.codeRed, span.codeRed, p.codeRed
{
  color: #e61414;
}

strong.codeAmber, span.codeAmber, p.codeAmber
{
  color: #d6ab17;
}

strong.codeGreen, span.codeGreen, p.codeGreen
{
  color: #17af1e;
}

div.resultsCodeBob
{
  background: url(../images/resultsCodeBobBg.jpg) 0px 0px no-repeat;
  float: right;
  margin: 0px 0px 10px 10px;
  min-height: 66px;
  padding: 52px 0px 30px 0px;
  position: relative;
  width: 272px;
}

div.resultsCodeBob div.header { background: url(../images/resultsCodeBobHdr.jpg) 0px 0px repeat-y; height: 42px; left: 0px; position: absolute; top: 0px; width: 272px; z-index: 1; }
div.resultsCodeBob div.footer { background: url(../images/resultsCodeBobFtr.jpg) 0px 0px repeat-y; height: 26px; left: 0px; position: absolute; bottom: 0px; width: 272px; z-index: 1; }

div.resultsCodeBob p
{
  float: left;
  margin: 0px 0px 0px 15px;
  padding: 0px 0px 0px 12px;
}

div.resultsCodeBob p.code
{
  font-size: 150%;
  font-weight: bold;
  width: 95px;
}

div.resultsCodeBob p.action
{
  border-left: 1px solid #0096d7;
  font-weight: bold;
  min-height: 66px;
  width: 95px;
}

.divider {
	border-top: 1px solid #CF932D;
	margin-top: 2.7em;
}

.divider hr {
  display: none;
}

div.breakOutBoxSmallLeft
{
	margin: 0px 20px 20px 0px;
	Float: left;
	width: 272px;
}

div.breakOutBoxSmallLeft div.breakOutBoxTopSmall
{
	background: url(../images/breakOutBoxBgTopSmall.jpg);
	padding: 12px 20px 5px 20px;
}

div.breakOutBoxSmallLeft div.breakOutBoxBodySmall
{
	background: url(../images/breakOutBoxBgBodySmall.jpg);
	min-height: 60px;
	padding: 15px 30px 10px 30px;
}

div.breakOutBoxSmallLeft div.breakOutBoxBottomSmall
{
	background: url(../images/breakOutBoxBgBottomSmall.jpg);
	height: 15px;
	width: 100%;
}

div.breakOutBoxSmallLeft h3
{
	color: #ffffff;
	font-size: 180%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div.breakOutBoxSmallLeft ul
{
	margin: 0em 1em 0em 1em;
	padding: 0px 0px 0px 0px;
}

div.breakOutBoxSmallRight
{
	margin: 0px 0px 20px 20px;
	Float: right;
	width: 272px;
}

div.breakOutBoxSmallRight div.breakOutBoxTopSmall
{
	background: url(../images/breakOutBoxBgTopSmall.jpg);
	padding: 12px 20px 5px 20px;
}

div.breakOutBoxSmallRight div.breakOutBoxBodySmall
{
	background: url(../images/breakOutBoxBgBodySmall.jpg);
	min-height: 60px;
	padding: 15px 30px 10px 30px;
}

div.breakOutBoxSmallRight div.breakOutBoxBottomSmall
{
	background: url(../images/breakOutBoxBgBottomSmall.jpg);
	height: 15px;
	width: 100%;
}

div.breakOutBoxSmallRight h3
{
	color: #ffffff;
	font-size: 180%;
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
}

div.breakOutBoxSmallRight ul
{
	margin: 0em 1em 0em 1em;
	padding: 0px 0px 0px 0px;
}


#crumbs {
	float: right;
}

body.portal {
	background: #F0F0F0 url(/images/bg-portal.jpg) center top no-repeat;
}

a.portal {
	float: right;
	font-weight: bold;
	font-family: "Trebuchet MS", verdana, arial, sans-serif;
	text-decoration: none;
	color: #333333;
	text-shadow: #bab6b6 3pt 3pt 3pt;
	font-size: 25px;
	padding-right: 25px;
	padding-top: 10px;
}

/* landing pages for Lifestyle Programs */
.landing h1 {
	margin-bottom: 1em;
	color: #4D4E53;
	font-size: 180%;
	border: none;
}

.landing h2 {
  font-size: 160%;
  border: none;
	margin: 0.7em 0 0.3em;
}

.landing h3 {
  font-size: 170%;
  border: none;
  margin: 0.7em 0 0.3em;
}

.landing h4 {
  font-size: 140%;
  border: none;
  margin: 0.7em 0;
	color: #4D4E53;
	font-weight: bold;
}

.landing p {
  margin-top: 0;
}

.landing .col {
	width: 45%;
	margin-right: 3%;
	float: left;
}

.landing .last {
  margin-right: 0;
	width: 52%;
}

.landing .col .testimonial {
  margin: 2em 0;
  padding: 2em 0.5em;
	text-align: center;
}

.landing .col .testimonial blockquote {
	font-style: italic;
	color: #D1963D;
	font-weight: bold;
}

.landing .col .testimonial cite {
  font-style: normal;
	color: #0197D7;
	font-weight: bold;
}

.landing .col .yummyform {
	width: 105%;
	margin: 1em 0 0;
}

.landing .col .yummyform label {
  letter-spacing: -0.7px;
	width: 35%;
}

.landing .col .yummyform fieldset {
	margin-bottom: 0;
	padding-bottom: 0;
}

.landing .col .yummyform fieldset p i {
  font-size: 80%;
}

.landing .col .yummyform div.formButtons {
  padding-right: 1%;
}

.landing .section {
	border-top: 1px solid #CF932D;
	clear: both;
	font-size: 110%;
}

.landing .section {
  border-top: 1px solid #CF932D;
  clear: both;
  font-size: 110%;
	padding: 1em 0;
}

.landing .section .testimonial {
  margin: 1em 0;
}

.landing .section .testimonial blockquote {
  font-size: 130%;
	display: inline;
	font-style: italic;
}

.landing .section .testimonial p {

}

.landing .section .testimonial cite {
  font-style: normal;
  color: #0197D7;
}

.landing .section .yummyform fieldset {
  margin: 0;
	padding: 0;
}

.landing .section .yummyform form input {
	width: 50%;
}

.dialog_window {
	background: none;
}



