/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* 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 {
	background-color: #434243;
	color: #8d8b8b;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 20px;
	margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: center; /* Centers the page content container in IE 5 browsers. */
	background-image: url(../images/mainBg.gif);
	background-repeat: repeat;
}
/* Commonly used to style page titles. */
h1 {
	color: #7f7e7f;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 30px;
	line-height: 36px;
	font-weight: normal;
}
/* Commonly used to style section titles. */
h2 {
	color: #ff0190;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 34px;
	line-height: 34px;
	font-weight: normal;
}
/* Sets the style for the h3 header. */
h3 {
  color: #adacad;
  font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 17px;
  font-weight: normal;
}
/* Sets the style for the h4 header. */
h4 {
  color: #2a292a;
  font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
  font-size: 26px;
  line-height: 26px;
  font-weight: normal;
}
/* Sets the style for the h5 header. */
h5 {
	color: #ff0190;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 24px;
	line-height: 30px;
	padding-bottom: 12px;
	font-weight: normal;
}
/* Sets the style for unvisited links. */
a,  a:link {
  color: #ff0190;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
/* Sets the style for visited links. */
a:visited {
  color: #ff0190;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
/* Sets the style for links on mouseover. */
a:hover {
  color: #ff0190;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
  color: #ff0190;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #ff0190;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  text-decoration: underline;
}
p {
	margin:0px;
	padding:0px;
}
/* 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 {
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 966px;
}
#outerWrapper #header {
	background-image: url(../images/headerFullBg.png);
	background-position: center 45px;
	background-repeat: no-repeat;
	font-size: 18px;
	font-weight: bold;
	height: 180px;
	line-height: 15px;
	width: 966px;
}
#outerWrapper #contentWrapper {
  background-image: url(../images/contentAreaBg.png);
  background-position: top center;
  background-repeat: repeat-y;
  height: auto;
  width: 966px;
}
#outerWrapper #contentWrapper #hamlet {
	background-image: url(../images/hamlet.jpg);
	background-position: 680px bottom;
	background-repeat: no-repeat;
	height: 100%;
	width: 966px;
}
#outerWrapper #contentWrapper #homeLeftColumn {
	float: left;
	height: auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width: 545px;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 75px;
	margin-left: 19px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #homeContent {
  height: auto;
  margin: 0 69px 75px 564px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 333px;
}
#outerWrapper #contentWrapper #contentLeftColumn {
	float: left;
	height: auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width: 189px;
	margin: 0 0 75px 82px;
	padding-top: 65px;
}
/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #contentRightColumn {
	height: auto;
	margin: 0 69px 75px 272px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding-top: 70px;
	width: 585px;
}
#outerWrapper #contentWrapper #contentRegister {
	height: auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	width: 750px;
	padding-top: 70px;
	float: left;
	margin-top: 0;
	margin-right: 0;
	margin-bottom: 75px;
	margin-left: 96px;
}
/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: left;
  display: block;
}
#outerWrapper #footer {
	background-image: url(../images/footerBg.png);
	background-position: top center;
	background-repeat: repeat-y;
	height: 230px;
	width: 916px;
	padding-top: 50px;
	padding-left: 50px;
}
#outerWrapper #footerCurve {
	background-image: url(../images/footerBotCurve.png);
	background-position: top center;
	background-repeat: no-repeat;
	height: 45px;
	width: 936px;
	padding-top: 29px;
	padding-left: 30px;
}
.nav-new {
	background-image: url(../images/IAmNewBtnBg.png);
	background-position: center top;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #ff0190;
	line-height:20px;
	text-decoration: none;
	float:left;
	padding-top: 11px;
	font-weight: bold;
}
.nav-new-over {
	background-image: url(../images/IAmNewBtnBg-over.png);
	background-position: center top;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #ffffff;
	line-height:20px;
	text-decoration: none;
	float:left;
	padding-top: 11px;
	cursor: pointer;
	font-weight: bold;
}
.nav-login {
	background-image: url(../images/loginBtnBg.png);
	background-position: center top;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #ff0190;
	line-height:20px;
	text-decoration: none;
	float:left;
	padding-top: 11px;
	margin-left: 9px;
	font-weight: bold;
}
.nav-login-over {
	background-image: url(../images/loginBtnBg-over.png);
	background-position: center top;
	background-repeat: no-repeat;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 17px;
	color: #ffffff;
	line-height:20px;
	text-decoration: none;
	float:left;
	padding-top: 11px;
	margin-left: 9px;
	cursor: pointer;
	font-weight: bold;
}
.nav-giveOthers {
	width:110px; 
	height:36px; 
	margin:7px 0 0 15px; 
	background-image:url(../images/giveOthersBtnBg.png); 
	background-repeat:no-repeat; 
	float:left;  
	padding-top:7px;
	font-weight:normal;
}
.nav-advisors {
	width:130px; 
	height:36px; 
	margin:7px 0 0 9px; 
	background-image:url(../images/advisorsBtnBg.png); 
	background-repeat:no-repeat; 
	float:left;  
	padding-top:7px;
	font-weight:normal;
}
.homesearchText {
	font-family: Arial, Helvetica, sans-serif; 
	font-size:12px; 
	color:#FFFFFF;
	text-decoration: none;
}
.homesearchText a:link {
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.homesearchText a:visited {
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.homesearchText a:hover {
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.homesearchText a:active {
	font-size: 12px;
	color: #FFFFFF;
	text-decoration: none;
}
.homesearchFormField {
	font-size: 20px;
	color: #949094;
	background-image: url(../images/searchBarBg.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #FFFFFF;
	height: 34px;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
}
.homesearchFormBtn {
	background-image: url(../images/searchBtn.png);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	height: 48px;
	width: 62px;
	border: none;
	vertical-align: top;
	cursor: pointer;
	margin-left: 4px;
}

/*Top level list items*/

  #profileNavigation {
	height:56px;
	background-image:url(../images/dashboard/dash-navBg.gif);
	background-repeat:repeat-x;
	margin:0px;
	padding:0px;
	width: 555px;
  }

  #menu li {
	float: left;
	display: block;
	color: #7f7e7f;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
	text-align:center;
	text-decoration:none;
	position: relative;
  }

  #menu li a {
	display: block;
	font-weight: normal;
	color: #7f7e7f;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	width:123px;
	height:40px;
	font-size: 13px;
	text-decoration:none;
	padding-top: 16px;
	padding-right: 0;
	padding-bottom: 0;
	padding-left: 0;
  }

  #menu li a:hover, #menu li a.active {
	background-image:url(../images/dashboard/dash-navLargeBg-over.gif);
	background-repeat:no-repeat;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	color: #ff0190;
	font-size: 13px;
	text-decoration:none;
  }

  #menu li ul {
	left : -999em;
	position : absolute;
	width: 180px;
	margin:-21px 0 0 0;
	padding:0px;
	z-index: 21;
  }

  #menu li ul li { float : none; }

  #menu li ul a {
    color: #403f40;
	font-size: 13px;
	float:left;
	background-image:url(../images/dashboard/dashNav-subBg.png);
	background-repeat:repeat-y;
	display:block;
	width:180px;
	height:23px;
	text-align: left;
	padding:0 0 0 20px;
	text-decoration:none;
  } 

  #menu li ul a:hover {
    color: #FFF;
	background-image:url(../images/dashboard/dashNav-subBg-over.png);
	background-repeat:repeat-y;
  }

  #menu li:hover ul, #menu li.sfhover ul {
	left: 0;
  }

.subnavText {
	color: #7f7e7f;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
}
.subnavText-over {
	color: #ff0190;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
	background-image:url(../images/dashboard/dash-navSmallBg-over.gif);
	background-repeat:no-repeat;
	cursor: pointer;
}
.subnavLargeText-over {
	color: #ff0190;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
	background-image:url(../images/dashboard/dash-navLargeBg-over.gif);
	background-repeat:no-repeat;
	cursor: pointer;
}
.subnavXLargeText-over {
	color: #ff0190;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight:normal;
	background-image:url(../images/dashboard/dash-navXLargeBg-over.gif);
	background-repeat:no-repeat;
	cursor: pointer;
}

.statusDate {
	width:365px; 
	color:#a9a6a8; 
	font-size:11px;
	font-style:italic; 
	padding-bottom:7px; 
	margin-left:32px; 
	border-bottom:1px dotted #a9a6a8; 
}
.statusText {
	color:#8d8b8b;
	font-size:30px;
	font-weight:bold;
	padding:25px 0 35px 0;
	margin-left:32px;
	line-height: 32px;
}
.homeChildName {
	color: #343434;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 16px;
	padding-left: 13px;
	font-weight:normal;
}
.homeChildLoc {
	color: #343434;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 16px;
	padding-left: 13px;
	font-weight:normal;
}
.submenu {
	color: #979797;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight:normal;
	padding: 11px 0 9px 0;
	border-bottom: dashed 1px #efc7dd;
	width: 120px;
	display: block;
}
.submenu a:link {
	color: #979797;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight:normal;
	text-decoration:none;
}
.submenu a:visited {
	color: #979797;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight:normal;
	text-decoration:none;
}
.submenu a:hover {
	color: #838383;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight:normal;
	text-decoration:none;
}
.submenu a:active {
	color: #979797;
	font-family: "Arial Rounded MT Bold", Arial, Helvetica, sans-serif;
	font-size: 16px;
	font-weight:normal;
	text-decoration:none;
}
.zipSearchFormField {
	font-size: 17px;
	color: #9f9e9f;
	background-image: url(../images/searchZipcodeBg.gif);
	background-repeat: no-repeat;
	background-position: right bottom;
	background-color: #FFFFFF;
	height: 27px;
	border: none;
	font-family: Arial, Helvetica, sans-serif;
}
.zipSearchFormBtn {
	background-image: url(../images/searchZipcodeBtn.gif);
	background-repeat: no-repeat;
	background-position: left top;
	background-color: #FFFFFF;
	height: 37px;
	width: 62px;
	border: none;
	vertical-align: top;
	cursor: pointer;
	margin-left: 4px;
}
.contactFormBtn {
	background-image: url(../images/dashboard/sendBtn.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 42px;
	width: 85px;
	border: none;
	vertical-align: top;
	cursor: pointer;
	background-color: #FFFFFF;
}
.formText {
	color: #aba9a9;
  	font-size: 14px;
	padding-right: 5px;
}
.formInput {
	font-size: 14px;
	font-weight: normal;
	color: #ff0190;
	border: 1px solid #434243;
	padding: 3px;
}
.error {
	color: #CC6600;
	font-size: 13px;
	padding-left: 10px;
}
.regFormText {
	color: #7f7e7f;
  	font-size: 18px;
	padding-left: 7px;
}
.regFormInput {
	font-size: 16px;
	font-weight: normal;
	color: #ff0190;
	border: 1px solid #171717;
	margin-bottom: 20px;
	padding: 13px 5px 0 5px;
	height:37px;
	width:265px;
}
.regFormBtn {
	background-image: url(../images/youreDoneBtn.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 42px;
	width: 125px;
	border: none;
	vertical-align: top;
	cursor: pointer;
	background-color: #FFFFFF;
}
.newFormBtn {
	background-image: url(../images/nextBtn.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 42px;
	width: 85px;
	border: none;
	vertical-align: top;
	cursor: pointer;
	background-color: #090909;
}
.loginFormBtn {
	background-image: url(../images/loginBtn.png);
	background-repeat: no-repeat;
	background-position: left top;
	height: 42px;
	width: 85px;
	border: none;
	vertical-align: top;
	cursor: pointer;
	background-color: #090909;
}
.loginFormText {
	color: #ff0190;
  	font-size: 18px;
	padding-left: 7px;
}
.loginFormInput {
	font-size: 18px;
	font-weight: normal;
	color: #4e4c4c;
	border: 1px solid #171717;
	margin-bottom: 20px;
	padding: 13px 5px 0 5px;
	height:35px;
	width:261px;
	background-image:url(../images/loginInputBg.png);
	background-position: right bottom;
}
.footerText {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	padding: 2px 0 4px 0;
	border-bottom: dashed 1px #ff0190;
	width: 110px;
	display: block;
}
.footerText a:link {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration:none;
}
.footerText a:visited {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration:none;
}
.footerText a:hover {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration:none;
}
.footerText a:active {
	color: #FFFFFF;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	text-decoration:none;
}
a.tip {
	text-decoration: none;
}

a.tip:hover {
	position: relative;
}

a.tip span {
	display: none;
	font-size:11px;
}

a.tip:hover span {
	display: block;
	font-size:11px;
   	position: absolute; top: 10px; left: -120px;
	/* formatting only styles */
   	padding: 5px; margin: 10px; z-index: 100;
   	background: #f0f0f0; border: 1px dotted #c0c0c0;
	opacity: 0.9;
	width:280px;
	/* end formatting */
}
