/* How To Master CSS ~ Template Stylesheet 
 * The layout of chapter 18 is used to create the 100% height effect with
 * a header and a footer, the left and right columns are not used, 
 * The header is now placed within the wrapper instead of above.
 */
body, html {
	margin:0px;
	padding:0px;
	font-family:Verdana, Arial, Helvetica, sans-serif;
	text-align:left;
	height:100%;
	font-size:85%;
	font-weight: normal;
}
.head2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 2em;
	font-weight: bold;
	color: #CC0033;
}
/* commented backslash hack v2 \*/ 
html, body { 
	height:100%; 
} 
* html #wrapper { 
	height:100%; 
}
/* end hack */
/* Note that position:relative; was added to make sure
 * elements stay within the wrapper when absolute positioned
 */
#wrapper {
	width:900px;
	margin-left:auto;
	margin-right:auto;
	text-align:left;
	min-height:100%;
	margin-bottom:-59px;
	position:relative;
}
#logo h2 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 2em;
	font-style: normal;
	line-height: normal;
	font-weight: bold;
	font-variant: normal;
	text-transform: none;
	margin-top: 15px;
}
#header {
	width:100%;
	height:100px;
	background-image:url(../images/topbar_back.jpg);
	background-position:bottom left;
	background-repeat:repeat-x;
	border-bottom:1px solid white;
}
/* The logo top left */
#logo {
	background-image:url(../assets/ashford_logo1.gif);
	background-repeat:no-repeat;
	padding-left:160px;
	position:absolute;
	top:20px;
	left:5px;
	height:65px;
	width:730px;
}
#logo h3 {
	color:#FF1C1C;
	font-size:20px;
	margin:0px;
	margin-top:5px;
}
#logo h4 {
	margin-top:0px;
	font-size:10px;
	font-weight:normal;
}
/* the blue bar right under the header, it holds the menu buttons */
#menu_holder {
	height:30px;
	width:1100px;
	margin-left: 5px;
}
/* The actual position of the menu, note the margin to the left */
#menu {
	margin-left:0px;
}
/* I floated the links to the left because they 
 * became block level elements 
 */
#menu a {
	display:block;
	float:left;
	height:25px;
	/* Top Right Bottom Left (TRouBLe) */
	padding:2px 2px 2px 2px;
	background-color:#FFFFFF;
	color:#FFFFFF;
	font-weight:bold;
	font-size:10px;
	margin-right:2px;
	text-decoration:none;
}
#menu a:hover {
	background-color:#FFFFFF;
	color:white;
}
#news {
	float:left;
	width:100%;
	padding-left:5px;
	margin-top: 26px;
	height: 100%;
}
/* Note that I only style the h2 tags that are inside the news section 
 * The folder image is added automatically every time you use an h2 tag 
 */
#news h2 {
	background-repeat:no-repeat;
	background-position:0px 1px;
	padding-left:10px;
	font-size:14px;
	font-weight:bold;
	color:#FF0000;
	margin-top:20px;
	/* the clear is added to make sure the Read More 
	 * links do not come next to the date
	 */
	clear:both;
}
#news p {
	color:#333333;
	font-size:110%;
	padding-left: 10px;
}

#absLayer1 {
	position:absolute;
	width:150px;
	z-index:1;
	left: 5px;
	top: 164px;
}
#absLayer2 {
	position:absolute;
	width:150px;
	z-index:1;
	left: 5px;
	top: 164px;
	padding: 0px 0px 0px 0px;
}

#box1 {
	width:150px;
	height:125px;
}

/* The Read More Link 
 * Note that I deleted the underline and added a dashed border to create
 * the dashed underline effect 
 */
a.newslink {
	float:right;
	color:blue;
	font-weight:bold;
	text-decoration:none;
	font-size:90%;
	margin-top:5px;
	border-bottom:1px dashed blue;
}
a.newslink:hover {
	color:#FFA400;
	border-bottom:1px dashed #FFA400;
}
/* Photo with man in the center */
#welcome {
	background-image:url(../images/member.jpg);
	background-repeat:no-repeat;
	border:0px solid #ccc;
	border-top:0px;
	height:190px;
	width:620px;
	float:left;
	margin-left:20px;
	padding-left:5px;
	font-size:100%;
	margin-top: 26px;
}
#welcome h1 {
	color:#FF1C1C;
	text-align:left;
	font-size:20px;
	margin-top:10px;
}
#clearfooter {
	height:75px;
	clear:both;
}
#clearfooter2 {
	height:45px;
	clear:both;
}
#column {
	float:left;
	width:670px;
	margin-left:5px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:bold;
	padding-left: 170px;
}
#column_a {
	float:left;
	width:360px;
	margin-left:5px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:normal;
	padding-left: 170px;
	background-repeat: no-repeat;
	display: block;
}
#column_1 {
	float:left;
	width:820px;
	margin-left:20px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:bold;
	padding-left: 20px;
}

#column_d {
	float:left;
	width:720px;
	margin-left:5px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:bold;
	padding-left: 170px;
}

#column_b {
	float:right;
	width:350px;
	margin-left:5px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:bold;
	padding-left: 0px;
}
#column_c {
	float:left;
	width:700px;
	margin-left:5px;
	margin-top:5px;
	color:#666;
	font-size:100%;
	font-weight:bold;
	padding-left: 170px;
}
#column_c2 {
	float:left;
	width:700px;
	margin-left:5px;
	margin-top:5px;
	color:#666;
	font-size:100%;
	font-weight:bold;
	padding-left: 0px;
}

#column2 {
	float:left;
	width:500px;
	margin-left:5px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:normal;
	padding-left: 5px;
}
#column2a {
	float:left;
	width:900px;
	margin-left:5px;
	margin-top:20px;
	color:#666;
	font-size:100%;
	font-weight:normal;
	padding-left: 5px;
}

.bar {
	border:0px solid red;
	height:23px;
	background-image:url(../images/redbar.gif);
	background-repeat:repeat-x;
	float:left;
	width:442px;
	margin-left:30px;
	margin-top:3px;
}
.column {
	float:left;
	width:207px;
	margin-left:30px;
	margin-top:-20px;
	color:#666;
	font-size:90%;
	font-weight:bold;
}
.column img {
	margin-left:60px;
}
.column h4 {
	font-weight:bold;
	margin:0px;
	color:white;
	text-align:center;
	margin-bottom:20px;
	font-size:12px;
}
.column ul li a {
	color:blue;
}
.column ul li a:hover {
	color:#FFA400;
}
#footer {
	width:915px;
	height:24px;
	border-top:4px solid #586F7F;
	margin-left:auto;
	margin-right:auto;
	background-color:white;
	color:#666666;
	font-size:10px;
	padding-top:10px;
	clear:both;
	padding-left: 5px;
}
#footer a{ 
	color:#000000;
}
.column_h2 {
	color: #FF0000;
}
.heading1 {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 1.5em;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
}
.menu_type {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 100%;
	font-style: normal;
	font-weight: bold;
	font-variant: normal;
	text-align: center;
}
.listing {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 80%;
}
.ref {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 8px;
	font-style: normal;
	font-weight: lighter;
	font-variant: normal;
	color: #999999;
}
.atext {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: normal;
	color: #333333;
}
