#main {
	height: auto;
	width: 1000px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 12px;
	padding-left: 12px;
}
#banner {
	width: 1000px;
	height: 85px;
	border-bottom-width: 0.5px;
	border-bottom-style: solid;
	border-bottom-color: #787878;
	margin-bottom: 30px;
}
#featured {
	width: 550px;
	margin-right: 30px;
	height: 350px;
	margin-bottom: 30px;
	float: left;
}
#all_links {
	float: left;
	margin-bottom: 30px;
	width: 420px;
	height: auto;
	margin-top: 31px;
}
#link_box {
	width: 200px;
	float: left;
	margin-bottom: 30px;
	margin-right: 10px;
	font-family: Arial;
	font-size: 12px;
}
#content {
	width: 1000px;
	float: left;
	margin-bottom: 30px;
}
#image {
	height: auto;
	width: auto;
	float: right;
	margin-bottom: 20px;
	margin-left: 20px;
}
#imagel {
	height: auto;
	width: auto;
	float: left;
	margin-bottom: 20px;
	margin-right: 20px;
}

#headshot {
	width: 170px;
	height: 290px;
	margin-right: 30px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	float: left;
}
#text {
	float: left;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 15px;
	width: 800px;
	height: auto;
	color: #333;
}
#icon_link {
	width: 100px;
	float: left;
	margin-right: 25px;
	margin-top: 20px;
	text-align: center;
	height: auto;
}


#footer {
	height: auto;
	width: 1000px;
	float: left;
	margin-bottom: 10px;
	border-top-width: 0.5px;
	border-top-style: solid;
	border-top-color: #787878;
}
#index {
	float: left;
	width: 960px;
	height: auto;
	padding-right: 20px;
	padding-left: 20px;
	margin-bottom: 15px;
	padding-top: 10px;
	background-color: #F2F2F2;
}

#copyright {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	color: #333;
	margin-top: 10px;
	float: center;
}
#marvingarden {
	float: right;
	margin-top: 10px;
}

h1 {
	font-family: Arial;
	font-size: 16px;
	font-style: italic;
	font-weight: bold;
	color: #FEBC11;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-top: 0px;
	padding-top: 0px;
}
h2 {
	background-color: #406EB6;
	color: #FFF;
	font-family: Arial;
	font-size: 13px;
	font-weight: bold;
	font-style: normal;
	padding-top: 5px;
	padding-bottom: 5px;
	padding-left: 5px;
	margin-top: 0px;
	margin-bottom: 10px;
}
h3 {
	font-family: Georgia, "Times New Roman", Times, serif;
	font-size: 24px;
	color: #406EB6;
	font-style: italic;
	font-weight: normal;
	margin-top: 0px;
	margin-bottom: 0px;
}
h4 {
	color: #666;
	font-family: Arial;
	font-size: 13px;
	font-weight: bold;
	font-style: italic;
	margin-top: 0px;
	margin-bottom: 10px;
}

a:link {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #406EB6;
	text-decoration: none;
}

a:visited {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #406EB6;
	text-decoration: none;
}
a:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #FEBC11;
	text-decoration: none;
}
a:active {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-style: normal;
	font-weight: normal;
	color: #999;
	text-decoration: none;
}

/*

	GalleryView Stylesheet
	
	Use the CSS rules below to modify the look of your gallery.
	 
	To create additional rules, use the markup below as a guide to GalleryView's architecture.
	NOTE - The markup below represents the DOM generated by the GalleryView plugin, NOT the markup you would include in your HTML file.
		   Refer to README.txt to review markup requirements.
	
	<div class="gallery">
		<div class="panel">
			<img src="path/to/image.jpg" />
			<div class="panel-overlay">
				...overlay content...
			</div>
			<div class="overlay-background"></div>
		</div>
		<ul class="filmstrip">
			<li class="frame current">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
			<li class="frame">
				<img src="path/to/thumbnail.jpg" />
				<div class="caption">caption text</div>
			</li>
		</ul>
	</div>
		

*/

/* GALLERY LIST */
/* IMPORTANT - Change '#photos' to the ID of your gallery list to prevent a flash of unstyled content */
#photos {
	visibility: hidden;
}

/* GALLERY CONTAINER */
.gallery {
}

/* LOADING BOX */
.loader { background: url(loader.gif) center center no-repeat #ddd; }

/* GALLERY PANELS */
.panel {}

/* DEFINE HEIGHT OF PANEL OVERLAY */
/* NOTE - It is best to define padding here as well so overlay and background retain identical dimensions */
.panel .panel-overlay,
.panel .overlay-background {
	height: auto;
	padding-top: 0;
	padding-right: 1em;
	padding-bottom: 0;
	padding-left: 1em;
}

/* PANEL OVERLAY BACKGROUND */
.panel .overlay-background { background: #FFFFFF; }

/* PANEL OVERLAY CONTENT */
.panel .panel-overlay {
	color: #333;
	font-size: 12px;
	font-family: Arial, Helvetica, sans-serif;
}
.panel .panel-overlay a {
	text-decoration: underline;
	font-weight: bold;
}

/* FILMSTRIP */
/* 'margin' will define top/bottom margin in completed gallery */
.filmstrip { margin: 5px; }

/* FILMSTRIP FRAMES (contains both images and captions) */
.frame {}

/* FRAME IMAGES */
.frame img { border: none; }

/* FRAME CAPTION */
.frame .caption { font-size: 11px; text-align: center; color: #888; }

/* CURRENT FRAME CAPTION */
.frame.current .caption { color: #000; }

/* POINTER FOR CURRENT FRAME */
.pointer {

}
