html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/*------------------------*/



@charset "UTF-8";
/* Simple fluid media
   Note: Fluid media requires that you remove the media's height and width attributes from the HTML
   http://www.alistapart.com/articles/fluid-images/ 
*/
img, object, embed, video {
	max-width: 100%;
}
/* IE 6 does not support max-width so default to width 100% */
.ie6 img {
	width:100%;
}

/*
	Dreamweaver Fluid Grid Properties
	----------------------------------
	dw-num-cols-mobile:		5;
	dw-num-cols-tablet:		8;
	dw-num-cols-desktop:	10;
	dw-gutter-percentage:	25;
	
	Inspiration from "Responsive Web Design" by Ethan Marcotte 
	http://www.alistapart.com/articles/responsive-web-design
	
	and Golden Grid System by Joni Korpi
	http://goldengridsystem.com/
*/

/* Mobile Layout: 480px and below. */

body {
	background-color:#FFF;
	color:#000;
	font-family:"Perpetua", "Palatino Linotype", "Book Antiqua", Palatino, serif;
	text-align:center;
}

#header {
	clear: both;
	margin:auto;
	width: 100%;
	height:190px;
	display: block;
	background-color:#000;
	color:#FFF;
	padding-bottom:15px;
	text-align:center;
}

#nav {
	width:90%;
	margin:5px auto 0 auto;
	font-size:.9em;
}

#nav li {
	float:left;
	width:25%;
	text-align:center;
}

#nav li a {
	color:#FFF;
	text-decoration:none;
	line-height:1.5em;
	font-weight:bold;
}

#nav li a:hover {
	color:#C00;
	text-decoration:underline;
}

.gridContainer {
	margin-left: auto;
	margin-right: auto;
	width: 87.36%;
	padding-left: 1.82%;
	padding-right: 1.82%;
}

#content {
	margin-top:30px;
}

#portfolio, #services, #about, #contact {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
	margin-bottom:30px;
	padding-bottom:25px;
	border-bottom:#000 solid 1px;
}

#portfolio {
	text-align:center;
	margin:auto;
	margin-bottom:30px;
	padding-bottom:25px;
}

#portfolio iframe {
	width:280px;
	height:170px;
	margin:auto;
	text-align:center;
}

h1 {
	font-size:1.5em;
	font-weight:bold;
	margin-bottom:.7em;
	text-align:center;
}

h2 {
	font-weight:bold;
	margin-bottom:.7em;
	text-align:center;
}

p {
	margin-bottom:1em;
}

a {
	color:#C00;
	text-decoration:none;
	font-weight:bold;
}

a:hover {
	color:#000;
	text-decoration:underline;
}

/* Tablet Layout: 481px to 768px. Inherits styles from: Mobile Layout. */

@media only screen and (min-width: 481px) {

#portfolio {
	clear: both;
	float: left;
	margin-left: 0;
	width: 100%;
	display: block;
}

#portfolio {
	text-align:center;
	margin:auto;
	margin-bottom:30px;
	padding-bottom:25px;
}

#portfolio #videos {
	width:440px;
	margin:auto;
	text-align:center;
}

#portfolio .vid {
	float:left;
}

#portfolio .vid-center {
	float:left;
	padding-left:10px;
	padding-right:10px;
}

#portfolio iframe {
	width:140px;
	height:80px;
	margin:auto;
	text-align:center;
}

}

/* Desktop Layout: 769px to a max of 1232px.  Inherits styles from: Mobile Layout and Tablet Layout. */

@media only screen and (min-width: 769px) {
.gridContainer {
	max-width: 800px;
	padding-left: 0.9%;
	padding-right: 0.9%;
	margin: auto;
}

#nav {
	width:400px;
	margin:5px auto 0 auto;
	font-size:.9em;
}

#portfolio #videos {
	width:100%;
	margin:auto;
	text-align:center;
}

#portfolio .vid {
	float:left;
}

#portfolio .vid-center {
	float:left;
	padding-left:30px;
	padding-right:30px;
}

#portfolio iframe {
	width:245px;
	height:150px;
	margin:auto;
	text-align:center;
}

}