/* Hair Art Academy */
/*-------------Standard Stuff-------------*/
body{
	margin:0;
	padding:0;
	background:#000;
	font-family:Arial, Helvetica, sans-serif;
	font-size:12px;
	color:#000;
}
p{
	margin:0 30px 15px 0;/*15px gives the space between paragraphs. 30px keeps the text away from the right side of the page*/
	line-height:1.4;
}
a{
	color:#000;
	text-decoration:underline;
}
a:hover{
	text-decoration:none;
}
/*-------------Divs-------------*/
#container{
	margin:0 auto;
	width:800px;
	background:#fff;
}
#header{
	width:100%;
}
#nav{
	width:200px;
	float:left;
	padding:15px 0;
	}
#content{
	float:right;
	width:600px;
	padding:15px 0;
	}
#footer{
	clear:both;
}
/*-------------Nav Styles-------------*/
#nav table{
	width:175px;
	margin-left:15px;
	}
#nav table th{
	font-size:14px;
	font-weight:bold;
	text-align:left;
}
#nav table td a{
	text-decoration:none;
	padding-left:10px;
	display:block;
}
#nav table td:hover{
	background:url(images/arrow.gif) no-repeat 0 50%;
}
/*-------------Heading Styles-------------*/
h1, h2, h3, h4, h5, h6{/*setting padding and margin to 0 to fix difference between FF and IE*/
	margin:0;
	padding:0;
	font-weight:normal;
	text-transform:uppercase;
	font-family:"Century Gothic",Arial, Helvetica, sans-serif;
	color:#666;
}
h1{
	font-size:20px;
	margin-bottom:20px;
	letter-spacing:3px;
}
h2{
	font-size:16px;
	letter-spacing:2px;
}
h3{
	font-size:14px;
	letter-spacing:1px;
}
/*-------------Content Styles-------------*/
ul{
	margin-top:0;
}
blockquote{
	border:1px dotted #666;
	padding:5px 10px;
	margin-right:72px;
}
blockquote p{/*undoes the margin previously applied to regular p*/
	margin-right:0;
}
.q-and-a{/*only used for the Q and A letters in the FAQ blockquotes*/
	font-size:16px;
	font-weight:bold;
	color:#666;
}
/*-------------Table Styles-------------*/
.gallery td{/*used on the gallery page*/
	text-align:center;
	padding-bottom:5px;
}