/*
* Skeleton V1.2
* Copyright 2011, Dave Gamache
* www.getskeleton.com
* Free to use under the MIT license.
* http://www.opensource.org/licenses/mit-license.php
* 6/20/2012
*/

/* Table of Content
==================================================
	#Site Styles
	#Page Styles
	#Media Queries
	#Font-Face */

/* #Site Styles
================================================== */

    /* Box sizing per http://youtu.be/eY5zca304GA?list=PLBA0C14633CA9BF6B */

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    /* bands */

	/* header */

header.main {
	padding: 14px 0;
}

.band.header {
    background-color: rgba(1,1,1,1);
    color: white;
}

.band.header h2, .band.header h3 {
    color: white;
}


.band.header h4, .band.header h5 {
    color: #dddddd;
}

header h1.logo {
	margin: 7px 0 0 0;
	float: left;
}

header h1.logo a {
	width: 250px;
	height: 112px;
	display: block;
	background: url(../images/mark.jpg) no-repeat 0 0;
	background-size: 80%, 80%, cover;

}

	/* navigation */

.band.navigation {
    background-color: black;
}

nav.primary {
	padding-top: 2px;
	padding-bottom: 2px;
}

nav.primary ul, nav.primary ul li {
	margin: 0px;
}

nav.primary ul li {
	display: inline;
	float: left;
	position: relative;
}

nav.primary ul li a {
	display: inline-block;
	line-height: : 49px;
	padding: 0 14px;
	color: #ebebeb;
	text-transform: uppercase;
	text-decoration: none;
	font-weight: bold;
	letter-spacing: : 0.08em;
}

nav.primary ul li a:hover {
	background: #424242;
	cursor: pointer;
}

	/* footer */

.bottom footer {
	font-size: small;
    background-color: rgba(1,1,1,1);
    color: #e0e0e0;
    text-align: center;
    padding: 14px 0;
}

	/* main page */

body {
    background-color: rgba(25,25,25,1);
    color: #e0e0e0;
}


        /* news section */
news dt {
	font-size: larger;
	font-style: oblique;
}

news dd {
	padding-left: 7px;
}

	/* images */

	/* these are the thumbnails for  the "people" page */
mugshot img {
	float: left;
	padding: 14px;
	padding-left: 5px;
	width: 175px;
}

mugshot.smaller img {
/* 	position: absolute; */
	float: left;
	padding: 14px;
	padding-left: 5px;
	width: 165px;
}



/* #Page Styles
================================================== */

/* #Media Queries
================================================== */

	/* Smaller than standard 960 (devices and browsers) */
	@media only screen and (max-width: 959px) {}

	/* Tablet Portrait size to standard 960 (devices and browsers) */
	@media only screen and (min-width: 768px) and (max-width: 959px) {}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {}

	/* Mobile Landscape Size to Tablet Portrait (devices and browsers) */
	@media only screen and (min-width: 480px) and (max-width: 767px) {}

	/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
	@media only screen and (max-width: 479px) {}


/* #Font-Face
================================================== */
/* 	This is the proper syntax for an @font-face file
		Just create a "fonts" folder at the root,
		copy your FontName into code below and remove
		comment brackets */

/*	@font-face {
	    font-family: 'FontName';
	    src: url('../fonts/FontName.eot');
	    src: url('../fonts/FontName.eot?iefix') format('eot'),
	         url('../fonts/FontName.woff') format('woff'),
	         url('../fonts/FontName.ttf') format('truetype'),
	         url('../fonts/FontName.svg#webfontZam02nTh') format('svg');
	    font-weight: normal;
	    font-style: normal; }
*/