﻿/*====================================================================
' Reset
====================================================================*/

/* table, caption, tbody, tfoot, thead, tr, th, td, img, */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code,
del, dfn, em, q, dl, dt, dd, 
fieldset, form, label, legend {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: inherit;
  font-style: inherit;
  font-size: 100%;
  font-family: inherit;
  vertical-align: baseline;
}

body { 
  line-height: 1.5; 
}

/* Tables still need 'cellspacing="0"' in the markup.
table { border-collapse: separate; border-spacing: 0; }
caption, th, td { text-align: left; font-weight: normal; }
table, td, th { vertical-align: middle; } */

/* Remove possible quote marks (") from <q>, <blockquote>. */
blockquote:before, blockquote:after, q:before, q:after { content: ""; }
blockquote, q { quotes: "" ""; }

/* Remove annoying border on linked images. */
a img { border: none; }

/*====================================================================
' Forms
====================================================================*/

label {
	font-weight: bold;
}

fieldset {
	padding: 1.4em;
	margin: 0 0 1.5em 0;
	border: 1px solid #ccc;
}

legend {
	font-weight: bold;
	font-size: 1.2em;
}

input.text, input.title, textarea, select {
	margin: 0.5em 0;
	border: 1px solid #bbb;
}

input.text:focus, input.title:focus, textarea:focus, select:focus {
	border: 1px solid #666;
}

input.text, input.title {
	width: 300px;
	padding: 5px;
}

input.title {
	font-size: 1.5em;
}

textarea {
	width: 475px;
	height: 150px;
	padding: 5px;
}

.error, .notice, .success {
	padding: .8em;
	margin-bottom: 1em;
	border: 2px solid #ddd;
}

.error {
	background: #fbe3e4;
	color: #8a1f11;
	border-color: #fbc2c4;
}

.notice {
	background: #fff6bf;
	color: #514721;
	border-color: #ffd324;
}

.success {
	background: #e6efc2;
	color: #264409;
	border-color: #c6d880;
}

.error a {
	color: #8a1f11;
}

.notice a {
	color: #514721;
}

.success a {
	color: #264409;
}

/*====================================================================
' Grid
====================================================================*/

/* A container should group all your columns. */
.container {
  width: 945px;
  margin: 0 auto;
  background-color:#fff;
}

.footerContainer {
  width: 945px;
  margin: 0 auto;
}


/* Use this class on any div.span / container to see the grid. */
.showgrid { 
  background: url(src/grid.png); 
}

/* Body margin for a sensile default look. */
body {
  margin:5px 0;	
}


/* Columns
-------------------------------------------------------------- */

/* Sets up basic grid floating and margin. */
div.span-1, div.span-2, div.span-3, div.span-4, div.span-5, 
div.span-6, div.span-7, div.span-8, div.span-9, div.span-10, 
div.span-11, div.span-12, div.span-13, div.span-14, div.span-15, 
div.span-16, div.span-17, div.span-18, div.span-19, div.span-20, 
div.span-21, div.span-22, div.span-23 {
  float: left;
}

/* Sets up basic grid floating and margin. 
div.span-1 {
  margin-right: 10px; 
}*/

/* The last column in a row needs this class. */
div.last { margin-right: 0; }

/* Use these classes to set the width of a column. */
.span-1  { width: 190px;}
.span-2  { width: 755px;}



.span-24, div.span-24 { width: 945px; margin: 0; }
















/* Border on right hand side of a column. */
div.border {
  padding-right: 4px;
  margin-right: 5px;
  border-right: 1px solid #eee;
}

/* Border with more whitespace, spans one column. */
div.colborder {
  padding-right: 24px;
  margin-right: 25px;
  border-right: 1px solid #eee;
}


/* Use these classes on an element to push it into the 
   next column, or to pull it into the previous column.  */

.pull-1 { margin-left: -40px; }
.pull-2 { margin-left: -80px; }
.pull-3 { margin-left: -120px; }
.pull-4 { margin-left: -160px; }
.pull-5 { margin-left: -200px; }

.pull-1, .pull-2, .pull-3, 
.pull-4, .pull-5, .pull-5 {
  float:left;
	position:relative;
}

.push-1 { margin: 0 -40px 1.5em 40px; }
.push-2 { margin: 0 -80px 1.5em 80px; }
.push-3 { margin: 0 -120px 1.5em 120px; }
.push-4 { margin: 0 -160px 1.5em 160px; }
.push-5 { margin: 0 -200px 1.5em 200px; }

.push-0, .push-1, .push-2, 
.push-3, .push-4, .push-5 { 
  float: right;
	position:relative;
}


/* Misc classes and elements
-------------------------------------------------------------- */

/* Use a .box to create a padded box inside a column.  */ 
.box { 
  padding: 1.5em; 
  margin-bottom: 1.5em; 
  background: #E5ECF9; 
}

/* Use this to create a horizontal ruler across a column. */
/*hr {
  background: #ddd; 
  color: #ddd;
  clear: both; 
  float: none; 
  width: 100%; 
  height: .1em;
  margin: 0 0 1.45em;
  border: none; 
}
hr.space {
  background: #fff;
  color: #fff;
}
*/

/* Clearing floats without extra markup
   Based on How To Clear Floats Without Structural Markup by PiE
   [http://www.positioniseverything.net/easyclearing.html] */

.clearfix:after, .container:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
}
.clearfix, .container {display: inline-block;}
* html .clearfix,
* html .container {height: 1%;}
.clearfix, .container {display: block;}

/* Regular clearing
   apply to column that should drop below previous ones. */

.clear { clear:both; }




/*====================================================================
' Typography
====================================================================*/

body { 
	font-size: 75%;
	color: #222; 
	font-family: Arial, sans-serif, "Helvetica Neue", Helvetica, ;
  
	background: #eeebda;
	background-image:url(../../image/User/bkg_bodytan.gif);
	background-repeat: repeat-x;  
}


/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 2em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 1.6em; margin-bottom: 0.5em; color:#008664; }
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 1.25em; height: 1.25em; }
h5 { font-size: 1em; font-weight: bold; margin-bottom: 1.5em; }
h6 { font-size: 1em; font-weight: bold; }

h1 img, h2 img, h3 img, 
h4 img, h5 img, h6 img {
  margin: 0;
}


/* Text elements
-------------------------------------------------------------- */

p           { margin: 0 0 1.5em; }
p img       { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
p img.right { float: right; margin: 1.5em 0 1.5em 1.5em; }

a:focus, 
a:hover     { color: #000; }
a           { color: #000; text-decoration: underline; }

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
strong      { font-weight: bold; }
em,dfn      { font-style: italic; }
dfn         { font-weight: bold; }
sup, sub    { line-height: 0; }

abbr, 
acronym     { border-bottom: 1px dotted #666; }
address     { margin: 0 0 1.5em; font-style: italic; }
del         { color:#666; }

pre,code    { margin: 1.5em 0; white-space: pre; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; } 


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          { list-style-type: disc; }
ol          { list-style-type: decimal; }

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}


/* Tables
--------------------------------------------------------------

table       { margin-bottom: 1.4em; width:100%; }
th          { font-weight: bold; background: #C3D9FF; }
th,td       { padding: 4px 10px 4px 5px; }
tr.even td  { background: #E5ECF9; }
tfoot       { font-style: italic; }
caption     { background: #eee; } */


/* Misc classes
-------------------------------------------------------------- */

.small      { font-size: .8em; margin-bottom: 1.875em; line-height: 1.875em; }
.large      { font-size: 1.2em; line-height: 2.5em; margin-bottom: 1.25em; }
.hide       { display: none; }

.quiet      { color: #666; }
.loud       { color: #000; }
.highlight  { background:#ff0; }
.added      { background:#060; color: #fff; }
.removed    { background:#900; color: #fff; }

.first      { margin-left:0; padding-left:0; }
.last       { margin-right:0; padding-right:0; }
.top        { margin-top:0; padding-top:0; }
.bottom     { margin-bottom:0; padding-bottom:0; }



/* -------------------------------------------------------------- */



/*====================================================================
' NON-FRAMEWORK
====================================================================*/



.pointer {cursor:pointer;}

a.materialLink {font-weight:bold;}


.topCurveHeader {	
	background: url('../../Image/User/dgn_h_whitecurve.gif') no-repeat top left;
	height:7px;
	}

.hhmCurveFooter {	
	background: url('../../Image/User/dgn_f_whitecurve.gif') no-repeat bottom left;
	height:7px;
	}
	
.mainCurveFooter {	
	background: url('../../Image/User/dgn_s_whitecurve.gif') no-repeat bottom left;
	height:7px;
	}


.navHolder {height:32px;background: url('../../Image/User/bkg_n_lblue.gif') repeat-x top left;}

.contentHolderHHM {padding:15px 34px 34px 34px;}
.contentHolder {background: #fff url('../../Image/User/bkg_whitebluesidebar.gif') repeat-y top left;}



/* Homepage Specific
-------------------------------------------------------------- */
.primaryHeaderArea {height:245px; width:945px;background: #fff url('../../Image/User/bkg_primaryHeader.jpg') no-repeat top left;}

.area1 {float:left;height:245px; width:538px;}
.area1Photo {}

.area2 {float:left;height:245px; width:407px;}
.area2Text {float:left;height:190px; width:407px;}
.area2Keyword {float:left;height:55px; width:407px; }


#primaryContent {float:left;width:685px;}
#primaryContent h1 {font-size:1.9em;font-weight:bold;line-height:normal;color:#a1ca7f;}
#primaryContent h2 {font-size:1.2em;font-weight:bold;line-height:normal;color:#008664;}

#primarySidebar {float:left;width:260px;}
#primarySidebar h1 {font-size:1.5em;margin:2px 0;font-weight:bold;line-height:normal;color:#60aad8;}

 
/* Secondary Specific
-------------------------------------------------------------- */
.secHeaderArea {height:150px; width:945px;background: #fff url('../../Image/User/bkg_secHeader.jpg') no-repeat top left;} 

.secArea1 {float:left;height:95px; width:945px;}
.secArea2 {float:left;height:55px; width:945px;}

#secContent {float:left;width:685px;}
#secContent h1 {font-size:1.9em;font-weight:bold;line-height:normal;color:#006e53;}

#secSidebar {float:left;width:260px;}


/* Header Text and Slogan
-------------------------------------------------------------- */

.hhmHeader {text-align:right;margin-right:25px;margin-top:30px;font-size:1.7em;font-weight:bold;color:#008664;line-height:normal;}
.hhmSubHeader {color:#aaa;font-size:0.8em;}

.hhmSlogan 
{
	float:right;
	text-align:left;
	margin-right:33px;
	margin-top:31px;
	font-size:1.9em;
	font-weight:bold;
	line-height:normal;
	}

.hhmSloganG {color:#64b392;}
.hhmSloganLG {color:#a1ca7f;}



/*  Appointment Steps 
-------------------------------------------------------------- */

#appointmentStep li ul, #appointmentStep li ol {
	margin: 0;
	padding:0;
}

#appointmentStep ul, #appointmentStep ol {
	margin: 0;
	padding:0;
}

#appointmentNav li {
	height: 71px;
	list-style: none;
	float: left;
	background-color: #ebebeb;
	background-image: url(../../Image/User/navBtn.gif);
	background-repeat: no-repeat;
	background-position: right top;
	
}

#appointmentNav li.current {
	background-color: #C36615;
	background-image: url(../../Image/User/navCurrentBtn.gif);
}

#appointmentNav li.lastDone {
	background-color: #7C8437;
	background-image: url(../../Image/User/navLastDoneBtn.gif);
}

#appointmentNav li.done {
	background-color: #7c8437;
	background-image: url(../../Image/User/Image/navDoneBtn.gif);
}

#appointmentNav li a, #appointmentNav li a:link, #appointmentNav li a:visited, #appointmentNav li a:hover, #appointmentNav li a:active {
	color: #ccc;
		text-decoration:none;
}

#appointmentNav li.lastDone a, #appointmentNav li.lastDone a:link, #appointmentNav li.lastDone a:visited, #appointmentNav li.lastDone a:hover, #appointmentNav li.lastDone a:active, #appointmentNav li.current a, #appointmentNav li.current a:link, #appointmentNav li.current a:visited, #appointmentNav li.current a:hover, #appointmentNav li.current a:active, #appointmentNav li.done a, #appointmentNav li.done a:link, #appointmentNav li.done a:visited, #appointmentNav li.done a:hover, #appointmentNav li.done a:active {
	color: #fff;
	text-decoration:none;
}

#appointmentNav li.done a:hover, #appointmentNav li.lastDone a:hover {
	color: #ffff99;
	cursor: hand;
	
}

#appointmentNav li a em {
	width: 282px;
	display: block;
	margin: 6px 0 0 10px;
	font-style: normal;
	font-weight: bold;
}

#appointmentNav li a span {
	width: 190px;
	display: block;
	margin-left: 10px;
	font-weight: normal;
}

#appointmentNav .threeStep li {
	width: 229px;
}

#appointmentNav .threeStep li.appointmentNavNoBg {
	width: 229px;
}

#appointmentNav .threeStep li a {
	width: 229px;
}



#mainNav li.mainNavNoBg {
	background-image: none;
}

#mainNav li a {
	height: 71px;
	display: block;
}




/*  ========================================== */


/*  Widgets 
-------------------------------------------------------------- */


#homepage-news-list {}
#homepage-news-list ul {margin:5; padding:0;list-style-image: url(../../Image/User/ico_doublearrow.gif);}
#homepage-news-list li {padding-bottom: 10px;}
#homepage-news-list li a {color:#0a84c1;}
#homepage-news-list li a:hover {text-decoration:none;}







