/***
 * CSS code to support http://www.awomaninthemirror.com
 * Last updated: February 24, 2009
 * XHTML/CSS programmed by Bryan Esler
 * Contact Info:
 *		E-mail  	besler@461design.com
 *		Website		http://www.461design.com
 ***/
 
 
/*** Defaults ***/

*{
	margin: 0;
	padding: 0;
	line-height: 1.4em;
}
body{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	background-color:#fff;
	line-height:1.4em;
}
focus{
	text-align: center;
}
.focusinside{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 33%;
	float: left;
}
.focus2{
	text-align: right;
	width: 950px;
	font-style:normal;
	font-weight:100;
	vertical-align:middle;
	margin-left: auto;
	margin-right: auto;
	padding-top: 5px;
	height: 20px;
}
a{
	border-bottom: 1px dotted #3B1235;
	color: #3B1235;
	text-decoration: none;
}
a:hover{
	border-bottom: 1px dotted #809E41;
	color: #809E41;
	text-decoration: none;
}
li{
	text-decoration: none;
	list-style-type:none;
	margin-left:15px;
}
.li_selected{
	color:#000;
	font-weight:bold;
	border:none;
	list-style-image:url(images/nav_arrow.gif);
	
}


/*** Global Classes ***/

.main_content{
	width: 950px;
	margin-left: auto;
	margin-right: auto;
}


#networkbar{
	background-color: #E2DCE1;
	font-color: #000;
	height: 25px;
}

#home_subpoint{
	margin-left: auto;
	margin-right: auto;
	width: 950px;
	text-align: center;
}
#home_subpointleft{
	margin-left: auto;
	margin-right: 50px;
	text-align: left;
	width: 240px;
	float: left;
	line-height:1.4em;
}
#home_subpointcenter{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 320px;
	float: left;
}

#home_subpointthumbs{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 200px;
	float: left;
}

#home_subpointphotos{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 430px;
	float: right;
}
#home_subpointright{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 320px;
	float: right;
}

#home_subpointinside{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 660px;
	float: right;
}
#home_subpointformright{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 20%;
	float: right;
}
#home_subpointformleft{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 25%;
	float: right;
	font-family: Arial, Helvetica, sans-serif;
}
#inside_text{
	margin-left: auto;
	margin-right: auto;
	text-align: left;
	width: 65%;
	float: right;
	line-height:1.4em;
}
.subpointtext{
	margin-left:5px;
	margin-right:5px;
	margin-top: 15px;
	text-align: left;
	line-height:1.4em;
}

.subpointtphotos{
	margin-left:5px;
	margin-right:5px;
	margin-top: 15px;
	text-align: left;
	line-height:1.4em;
}
.contenttext{
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	text-align: left;
	line-height:1.4em;
}
.subpointtextright{
	margin-left:5px;
	margin-top: 15px;
	text-align: left;
	line-height:1.4em;
}

#galleryimg{
	width: 420px;
	position: absolute;
	height: 350px;
}


/*** Form ***/

form {  /* set width in form, not fieldset (still takes up more room w/ fieldset width */
	font:100% arial,sans-serif;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	min-width: 500px;
	max-width: 600px;
	width: 560px;
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

form fieldset {
  / * clear: both; note that this clear causes inputs to break to left in ie5.x mac, commented out */
  border-color: #000;
	border-width: 1px;
	border-style: solid;
	padding: 20px;        /* padding in fieldset support spotty in IE */
	margin: 0;
	font-family: Arial, Helvetica, sans-serif;
}

form fieldset legend {
	font-size:1.1em; /* bump up legend font size, not too large or it'll overwrite border on left */
	font-family: Arial, Helvetica, sans-serif;                       /* be careful with padding, it'll shift the nice offset on top of border  */
}

form label { 
	display: block;  /* block float the labels to left column, set a width */
	float: left; 
	width: 150px; 
	padding: 0; 
	margin: 5px 0 0; /* set top margin same as form input - textarea etc. elements */
	text-align: right; 
}


form input, form textarea {
	/* display: inline; inline display must not be set or will hide submit buttons in IE 5x mac */
	width:auto;      /* set width of form elements to auto-size, otherwise watch for wrap on resize */
	margin:5px 0 0 10px; /* set margin on left of form elements rather than right of
                              label aligns textarea better in IE */
	font-family: Arial, Helvetica, sans-serif;
	text-align: left;
}

form input#reset {
	margin-left:0px; /* set margin-left back to zero on reset button (set above) */
	text-align:center;
}

textarea { overflow: auto; }

form small {
	display: block;
	margin: 0 0 5px 160px; /* instructions/comments left margin set to align w/ right column inputs */
	padding: 1px 3px;
	font-size: 88%;
}

form .required{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 100%;
	text-align: left;
	margin-left: 10px;

} /* uses class instead of div, more efficient */

form br {
	clear:left; /* setting clear on inputs didn't work consistently, so brs added for degrade */
	text-align: left;
	font-family: Arial, Helvetica, sans-serif;
}

/*** Footer ***/
#footer {
	clear: both;
	text-align: center;
	vertical-align: bottom;
	margin-left: auto;
	margin-right: auto;
	width: 900px;
	font-size: 70%;
}

/*** main-content .gallery-img ***/

#main-content .gallery-img{
	position: relative;
	min-height: 350px;
	height: 350px;
	text-align: right;
	z-index: 1;
}

#main-content .gallery-img img{
	position: absolute;
	top: 0px;
	left: 0px;
}

#main-content .gallery-img img.vertical{
	min-width: 420;
	width: 420px;
	min-height: 350px;
	height: 350px;
}

#main-content .gallery-img img.horizontal{
	width: 100%;	
	height: 100%;
}

.invisible{
	display: none;
	visibility: hidden;
}
.visible{
	display: block;
	visibility: visible;
}

#popup_content{
	width:400px;
	margin-left:auto;
	margin-right:auto;
	line-height:1.6em;
}

.left_popup_content{
	width: 400px;
	float: left;
	padding-left:5px;
	line-height:1.6em;
	font-size: 11px;
}