/*------------------------------------------------------------

	Master.css
	www.yourwebsite.com
	
	Last Modified : 	27th December 2007
	Created by : 		Joe Bloggs
	Contact: 			joebloggs@email.com
	
	Copyright 2007 - 2008
	Based on Blueprint 1.6.1
	
	
/* Colour Palette
--------------------------------------------------------------

Light Grey - #fbfbfb

/* Plugins
-------------------------------------------------------------- */

@import 'plugins/reset.css';
@import 'plugins/classes.css';
@import 'plugins/grid.css';

/* You can alternatively use BP as a reset by importing the
bp-reset.css plugin. This is the entire Blueprint 0.6.1 
compressed file. You won't need to include grid.css or
reset.css */


/* Page
-------------------------------------------------------------- */

body	{
	background-image: url(../images/body_bg.png);
	background-repeat: repeat-x;
	background-color: #F6F1F1;

}


/* Typography
-------------------------------------------------------------- */

/* Default font settings
   The font-size percentage is of 16px (0.75 * 16px = 12px) */
body {
	font-size: 75%;
	line-height: 1.5;
	color: #222;
	font-family: "Lucida Sans", "Helvetica Neue", Helvetica, sans-serif;
}

p           {
	margin: 0 0 1.5em;
	font-size: 13px;
	line-height: 160%;
	color: #16172D;
}
p.last      { margin-bottom: 0; }
p img       { float: left; margin: 1.5em 1.5em 1.5em 0; padding: 0; }
img         { margin: 1.5em; }
img.nomarg {
	margin: 0px;
	padding: 0px;
}
img.wp-image-301 {
	border: 1px solid #CCCCCC;
	margin: 0px;
	padding: 7px;
	display: block;
	float: none;
}

strong      { font-weight: bold; }
em		    { font-style: italic; }

#footer_cntr p {
	font-size: 1.1em;
	line-height: 125%;
	margin-top: 5px;
}

/* Headings
-------------------------------------------------------------- */

h1,h2,h3,h4,h5,h6 { font-weight: normal; color: #111; }

h1 { font-size: 3em; line-height: 1; margin-bottom: 0.5em; }
h2 { font-size: 2em; margin-bottom: 0.75em; }
h2.fp {
	line-height: 50px;
	background-color: #E4DEDE;
	background-image: url(../images/fp_hdr_bg.png);
	height: 40px;
	width: 580px;
	margin:0;
	padding:10px 0 0 10px;
}
h3 { font-size: 1.5em; line-height: 1; margin-bottom: 1em; }
.features_table h3 {
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dddddd;
	padding-bottom:0.5em;
	margin-bottom:0;
}
h4 { font-size: 1.2em; line-height: 1.25; margin-bottom: 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;
}


/* Links
-------------------------------------------------------------- */

a           	{
	color: #2A83D0;
	text-decoration: underline;
}
a:focus, 
a:hover     	{
	color: #13395A;
}
a:visited		{}
a:visted:hover 	{}

a:focus {
	outline:none;
}


/* Tables - You still need cellspacing="0" in the markup
-------------------------------------------------------------- */

table		{
	background-color: #FFFFFF;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #E5DFDF;
	border-bottom-color: #E5DFDF;
	border-left-color: #E5DFDF;
	margin: 0 auto;
}

thead		{}
tbody		{}
tfoot       { font-style: italic; }

th,td       { padding: 4px 10px 10px 5px; }
th          { border-bottom: 2px solid #ccc; font-weight: bold; background: #eee; }
th.fpth         {
	background-color: #E4DEDE;
	background-image: url(../images/fp_hdr_bg.png);
	margin: 0px;
	height: 50px;
	width: 590px;
	border:none;
	padding-top: 10px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
td        { border-bottom: 1px solid #ddd; }
tr			{}

caption     { background: #ffc; }

/* Use this if you use span-x classes on th/td. */
table .last { padding-right: 0; }

tr.even td  { background: #eef; }

table#features {
	background-color: #F6F1F1;
	border:none;
}
table#features td {
	border:none;
}


/* Lists
-------------------------------------------------------------- */

li ul, 
li ol       { margin:0 1.5em; }
ul, ol      { margin: 0 1.5em 1.5em 1.5em; }

ul          {
	/*list-style-type: square;*/
	list-style-image: url(/wp-content/themes/sandbox/images/bullet_arrow.png);

}
#post-36 ul  {
	list-style-image: url(/wp-content/themes/sandbox/images/bullet_arrow.png);
}
#sidenav ul {
	list-style-image: none;
	list-style-type: none;
}
ul + li		{}
li {
	font-size:13px;
}

ol          { list-style-type: decimal; }
ol + li		{}

dl          { margin: 0 0 1.5em 0; }
dl dt       { font-weight: bold; }
dd          { margin-left: 1.5em;}



/* Forms
-------------------------------------------------------------- */

form			{}
fieldset		{padding:1.4em; margin: 0 0 1.5em 0; border: 1px solid #ccc;}

legend			{font-weight: bold; font-size:1.2em;}
legend .span	{}

label       	{font-weight: bold;}

input[type='text']		{}
input[type='checkbox']	{}
input[type='radio']		{}
input[type='file']		{}

textarea      	{ width: 400px; height: 250px; padding:5px; }

select        	{ width:200px; }
option			{}
optgroup		{}



input:focus,textarea:focus,select:focus {	
	border:1px solid #666;
}

input,textarea, select {
  margin:0.5em 0;
  border:1px solid #bbb;
}


/* Other Elements
-------------------------------------------------------------- */

blockquote  { margin: 1.5em; color: #666; font-style: italic; }
dfn         { font-style: italic;font-weight: bold; background: #ffc; }
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; }
tt          { display: block; margin: 1.5em 0; line-height: 1.5; }
pre,code,tt { font: 1em 'andale mono', 'lucida console', monospace; line-height: 1.5; }


/* Navigation
-------------------------------------------------------------- */

/* Layout
-------------------------------------------------------------- */

#header {
	background-image: url(../images/header.png);
	background-repeat: no-repeat;
	height: 212px;
	margin:0px;
	paddin:0px;
	background-position: center;
}
#header_inner {
	height: 212px;
	width: 950px;
	margin-top: 0px;
	margin-right: auto;
	margin-bottom: 0px;
	margin-left: auto;
	position: relative;
}
#header_link a {
	height: 200px;
	width: 212px;
	position: absolute;
	left: 0px;
	top: 0px;
	display: block;
	text-indent: -9999px;
}
#container {
	padding-top:40px;
}
#footer {
	background-color: #DEDEDE;
	background-image: url(../images/footer_bg.png);
	background-repeat: repeat-x;
	background-position: top;
	height: 210px;
}
#footer_cntr {
	height: 181px;
	margin-right: auto;
	margin-left: auto;
	padding-top: 29px;
}
#footer_logo {
	background-image: url(../images/HMH_footer.png);
	height: 17px;
	width: 233px;
}

/* Page-Specific - based on the <body> class
-------------------------------------------------------------- */
.home_boxleft {
	height: 296px;
}
.home_boxleft p{
	line-height: 200%;
}
.home_boxright {
	background-image: url(/images/home_box-key.png);
	height: 296px;
	background-repeat: no-repeat;
}
#darthfader {
}

#darthfader_graphic
{
	width:430px;
	height:296px;
}
.darthfaderimg
{
	padding: 0px 0px 0px 0px;
	outline: none;
}
#frontpage_link a,
#frontpage_link a:hover      	{
	text-decoration: none;
}
#homebox_hdg {
	margin: 0px;
	padding: 0px;
}
#main_content {
	padding-top: 29px;
}
#home_box {
	height: 296px;
	background-image: url(/images/home_box.png);
	background-repeat: no-repeat;
	background-position: 0px 29px;
}
.box_cntr {
}
.box_inner {
}
#home_cols {
	margin-top:36px;
}
ul#qcv {
	list-style-type: none;
	margin-left: 0px;
	list-style-image: none;
}
#qcv  li {
	padding-left: 135px;
	height: 136px;
	overflow: visible;
}
#qcv li h3 {
	margin-bottom: 5px;
}
/*#qcv li p {
	line-height:150%;
}*/
li#quality {
	background-image: url(../images/li_quality.jpg);
	background-repeat: no-repeat;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dedede;
}
li#craftsmanship {
	background-image: url(../images/li_craftsmanship.jpg);
	background-repeat: no-repeat;
	border-bottom-width: 1px;
	border-bottom-style: solid;
	border-bottom-color: #dedede;
	margin-top:1.5em;
}
li#value {
	background-image: url(../images/li_value.jpg);
	background-repeat: no-repeat;
	margin-top:1.5em;
}
#view-map a {
	background-image: url(../images/service-area-map-bt.png);
	background-position: 0px 0px;
	display: block;
	height: 157px;
	width: 295px;
	text-indent: -9999px;
	margin-top: 18px;
	margin-right: auto;
	margin-bottom: 18px;
	margin-left: auto;
}
#view-map a:hover {
	background-position: 0px -157px;
}


.floorplanTitle {
	background-image: url(../images/accordian/accordion_panel_tab_bg.png);
	background-repeat: no-repeat;
	height: 50px;
}
.floorplanTitle h4 {
	line-height: 50px;
	margin-left: 10px;
}
.floorplanCont {
	margin: 0px 10px;
	padding: 10px;
	border-right-width: 1px;
	border-bottom-width: 1px;
	border-left-width: 1px;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-right-color: #E5DFDF;
	border-bottom-color: #E5DFDF;
	border-left-color: #E5DFDF;
	background-color: #FFFFFF;
	width: 550px;
}
.view_E, .view_F {
	width: 228px;
	border: 1px solid #E5DFDF;
	text-align: center;
	font-size: 11px;
	text-transform: uppercase;
	background-repeat: no-repeat;
	background-position: center 13px;
}
.view_E {
	margin-bottom: 10px;
	padding-top: 97px;
	padding-bottom: 10px;
}
.view_F {	
	padding-bottom: 10px;
}
#F1130 {
	background-image: url(http://www.highmesahomes.com/wp-content/themes/sandbox/images/floorplans/thumbs/1130_F.jpg);
	padding-top: 126px;
} 
#E1200 {
	background-image: url(http://www.highmesahomes.com/wp-content/themes/sandbox/images/floorplans/thumbs/1200_E.jpg);	 
} 
#F1200 {
	background-image: url(http://www.highmesahomes.com/wp-content/themes/sandbox/images/floorplans/thumbs/1200_F.jpg);
	padding-top: 180px;
} 
#E1232 {background-image: url(../images/floorplans/thumbs/1232_E.jpg);	 } 
#F1232 {
	background-image: url(../images/floorplans/thumbs/1232_F.jpg);
	padding-top: 120px;
} 
#E1244 {background-image: url(../images/floorplans/thumbs/1244_E.jpg);	 } 
#F1244 {
	background-image: url(../images/floorplans/thumbs/1244_F.jpg);
	padding-top: 106px;
} 
#E1247 {
	background-image: url(../images/floorplans/thumbs/1247_E.jpg);
} 
#F1247 {
	background-image: url(../images/floorplans/thumbs/1247_F.jpg);
	padding-top: 123px;
} 
#E1309 {background-image: url(../images/floorplans/thumbs/1309_E.jpg);	 } 
#F1309 {
	background-image: url(../images/floorplans/thumbs/1309_F.jpg);
	padding-top: 171px;
} 
#E1333 {background-image: url(../images/floorplans/thumbs/1333_E.jpg);	 } 
#F1333 {
	background-image: url(../images/floorplans/thumbs/1333_F.jpg);
	padding-top: 111px;
} 
#E1335 {background-image: url(../images/floorplans/thumbs/1335_E.jpg);	 } 
#F1335 {
	background-image: url(../images/floorplans/thumbs/1335_F.jpg);
	padding-top: 191px;
} 
#E1353 {background-image: url(../images/floorplans/thumbs/1353_E.jpg);	 } 
#F1353 {
	background-image: url(../images/floorplans/thumbs/1353_F.jpg);
	padding-top: 116px;
} 
#E1356 {background-image: url(../images/floorplans/thumbs/1356_E.jpg);	 } 
#F1356 {
	background-image: url(../images/floorplans/thumbs/1356_F.jpg);
	padding-top: 203px;
}
#E1378 {background-image: url(../images/floorplans/thumbs/1378_E.jpg);	 } 
#F1378 {
	background-image: url(../images/floorplans/thumbs/1378_F.jpg);
	padding-top: 87px;
} 
#E1418 {background-image: url(../images/floorplans/thumbs/1418_E.jpg);	 } 
#F1418 {
	background-image: url(../images/floorplans/thumbs/1418_F.jpg);
	padding-top: 96px;
}
#ll {display:none;}

/* IE PNG Fix (from http://www.twinhelix.com/css/iepngfix/   Thanks!)
-------------------------------------------------------------- */
img, div, a, li, input { behavior: url(http://www.example.com/wp-content/iepngfix/iepngfix.htc) }
