/* -------------------- LAYOUT.CSS -------------------- */
/* ---------------------------------------------------- */
/*                                                      */
/* ID attributes: all lower case, no spaces, use underscores.  #this_is_an_id_attribute  */
/* Class attributes: all lower case, no spaces, use hyphens.  .this-is-a-class-attribute  */


/* --- GLOBAL SETTINGS --- */
/* ----------------------- */

/* Set main body styles (including base font size that other relative sizes inherit from). */
body {
	margin: 0;
	padding: 0;
	background-color: #000000;
	color: #BBBBBB;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	font-size: 0.82em;
}

/* It's a good idea to keep line height set between 125% and 150% for readability. */
p {
	line-height: 150%;
}

/* Global way to make paragraphs bold when desired (<p class="bold">). */
p .bold {
	font-weight: bold;
}

/* Set base style for links (white with no underline). */
a:link, a:visited {
	color: #FFFFFF;
	text-decoration: none;
}

/* Underline links on mouseover. */
a:hover, a:active {
	text-decoration: underline;
}

/* Eliminate the annoying border from any images that are part of an anchor tag. */
a img {
	border: 0;
}

/* Cause any link image to dim when rolled over. */
a img:hover {
	opacity:0.7;
	filter:alpha(opacity=70);
}

/* Set the fixed width of the page and use the canonical centering method. */
/* The canonical way to center is to set the left and right margins to auto. */
#container {
	width: 970px;
	margin: 0 auto;
	padding: 0;
}

/* The real meat of the page.  This is where the action is. */
#content {
	padding: 10px 0;
}


/* --- HEADER SETTINGS --- */
/* ----------------------- */

/* The height is explicitly set because the header contents are floated and the bottom border
   appears too high on the page without it. */
#page_header {
	height: 60px;
	margin: 0;
	padding: 5px 0;
	border-bottom: 1px solid #313131;
}

/* Float left so this can appear next to navigation section in header. */
#page_header_logo {
	float: left;
	width: 279px;
	margin: 0;
	padding: 0;
}

/* Float left so this can appear next to logo section in header. */
#page_header_nav_container {
	float: left;
	width: 575px;
	margin: 40px 0 0 116px;
	padding: 0;
}

#page_header_nav_links {
	margin: 0 auto;
	padding: 0;
}

#page_header_nav_links ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
	list-style-image: none;
}

#page_header_nav_links li {
	float: left;
	margin-right: 50px;
	font-weight: bold;
}

#page_header_nav_links a {
	display: block;
}


/* --- ERROR PAGE SETTINGS --- */
/* --------------------------- */

/* Make the warning for lack of JavaScript bright and obnoxious. */
#no_js_warning {
	margin: 0 0 0 0;
	padding: 0;
	background-color: #FFCC00;
	text-align: center;
}

#no_js_warning p {
	margin: 0;
	padding: 5px;
	color: #000000;
	font-weight: bold;
}

/* Display error page heading in caution yellow. */
#caution_header {
	margin-top: 10px;
	padding: 0;
	color: #FFCC00;
}

/* Specifying min-height prevents the floating footer from floating too high. */
#browser_icons {
	min-height: 110px;
	margin: 0;
	padding: 10px 0 0 0;
}

/* Each browser icon takes a fourth of the row, center the content. */
.browser-icon {
	float: left;
	width: 242px;
	text-align: center;
}

/* The last browser icon needs a different width to take up the full content width. */
#last_browser_icon {
	float: left;
	width: 244px;
	text-align: center;
}

/* Specifying min-height prevents the floating footer from floating too high. */
#browser_names {
	min-height: 15px;
	margin: 0;
	padding: 5px 0 10px 0;
}

/* Get rid of paragraph spacing in browser names. */
#browser_names p {
	margin: 0;
	padding: 0;
}

/* Each browser name takes a fourth of the row, center the content. */
.browser-name {
	float: left;
	width: 242px;
	text-align: center;
}

/* The last browser name needs a different width to take up the full content width. */
#last_browser_name {
	float: left;
	width: 244px;
	text-align: center;
}


/* --- BIOGRAPHY SETTINGS --- */
/* ------------------------ */

#biography {
	min-height: 257px;
	margin: 0;
	padding: 0;
}

#biography img {
	padding: 10px;
	border: 1px solid #313131;
}

#sean_photo {
	float: left;
	width: 322px;
	margin: 0 15px 0 0;
	padding: 0;
}


/* --- GALLERY SETTINGS --- */
/* ------------------------ */

#gallery_description {
	font-size: 95%;
	margin-bottom: 30px;
}

#thumb_gallery img {
	width: 300px;
	height: 300px;
	border: 1px solid #313131;
}

.thumb-gallery-row {
	width: 970px;
	height: 332px;
}

.left-thumb {
	float: left;
	width: 300px;
	margin: 0 32px 0 0;
	padding: 0;
}

.center-thumb {
	float: left;
	width: 300px;
	margin: 0 32px 0 0;
	padding: 0;
}

.right-thumb {
	float: left;
	width: 300px;
	margin: 0;
	padding: 0;
}


/* --- GALLERY INDEX SETTINGS --- */
/* ------------------------------ */

#thumb_gallery_index {
	margin-top: 35px;
}

/* Override default link behavior for gallery index links. */
#thumb_gallery_index a:link, #thumb_gallery_index a:visited {
	color: #BBBBBB;
	text-decoration: none;
}

#thumb_gallery_index img {
	width: 300px;
	height: 300px;
	border: 1px solid #313131;
}

.thumb-gallery-index-row {
	width: 970px;
	height: 300px;
}

.thumb-gallery-description-row {
	width: 970px;
	height: 52px;
	font-size: 117%;
	font-weight: bold;
}


/* --- SOCIAL MEDIA BAR SETTINGS --- */
/* --------------------------------- */

#social_media_bar {
	min-height: 58px;
	margin: 0;
	padding: 15px 0 5px 0;
	background-repeat: no-repeat;
	border-top: 1px solid #313131;
}

#twitter_icon {
	float: left;
	width: 48px;
	margin: 0;
	padding: 0;
}

#twitter_icon img {
	margin: 0;
	border: 0;
}

/*#rounded_twitter_box*/
/*{*/
/*	float: left;*/
/*	width: 580px;*/
/*	margin: 0;*/
/*	padding: 0 10px;*/
/*	background-color: #FFFFFF;*/
/*	color: #000000;*/
  /* Rounded corner stuff starts here */
/*	-moz-border-radius: 6px;*/		/* for Firefox */
/*	-webkit-border-radius: 6px;*/		/* for Safari */
/*	-khtml-border-radius: 6px;*/		/* for Konqueror */
/*	border-radius: 6px;*/				/* for CSS 3 */
/*}*/

#twitter_box {
	float: left;
	width: 558px;
	margin: 0 32px 0 0;
	padding: 0 10px 0 20px;
}

#twitter_div {
	margin: 0;
	padding: 0;
	font-size: 90%;
	text-align: left;
}

#twitter_div ul {
	list-style-type: none;
	margin: 0;
	padding: 0 0 5px 0;
}

#social_right {
	float: left;
	width: 300px;
}

#social_right p {
	margin: 0;
	padding: 0;
}

#social_right img {
	margin-right: 10px;
}

#last_social_media_icon img {
	margin-right: 0px;
}


/* --- FOOTER SETTINGS --- */
/* ----------------------- */

#page_footer {
	min-height: 40px;
	margin: 0;
	padding: 10px 0;
	font-size: 87%;
	border-top: 1px solid #313131;
}

/* Get rid of paragraph spacing in footer. */
#page_footer p {
	margin: 0;
	padding: 0;
}

/* Take up first third of footer, left-align the text. */
#page_footer_email {
	float: left;
	width: 33%;
	text-align: left;
}

/* Take up second third of footer, center-align the text. */
#page_footer_phone {
	float: left;
	width: 34%;
	text-align: center;
}

/* Take up last third of footer, right-align the text. */
#page_footer_copyright {
	float: left;
	width: 33%;
	text-align: right;
}
