/*
* 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
================================================== */

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

a:hover {
	color: #CC0000;
}

.band {
/*	background: url('images/12_col.gif') repeat-y; */
}

.band.header {
	padding: 25px 0 15px 0;
}

.band.main {
}

.band.main p {
	padding: 0;
	margin: 0;
}

p.linkheader {
	padding: 200px 0 0 0;
}

.mainsub h4 {
	text-align: center;
}

.band.footer {
/*	background: white; */
}

/*heading*/
header.main {
	padding: 35px;
}

header h1.logo {
	margin: 0 0 0 0;
	float: left;
	
	/* Make Text Not Appear */
/*	font: 0/0 a;
	text-shadow: none;
	color: transparent;
	*/
}

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

html { 
	background: url(http://fyffestudio.com/images/bg.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='.myBackground.jpg', sizingMethod='scale');
	-ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='myBackground.jpg', sizingMethod='scale')";
}

.container.information {
}

h1.logo {
	color: white;
	text-shadow: 2px 2px 5px #000;	
}

.mainsub {
    background-color: rgba(255,255,255,0.8);
	padding: 10px;
	height: 100%;
}

img.profile {
	background: white;
	padding: 10px;
}

ul li {
	list-style-type: circle;
	list-style-color: black;
	margin: 5px 0 0 20px;
}

/* #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) {
		p {
			font-size: 13px;
		}
		.mainsub {
			height: 100%;
		}
		
	}

	/* All Mobile Sizes (devices and browser) */
	@media only screen and (max-width: 767px) {
	
		.mainsub h4 {
			padding: 13px 0 0 0;
			text-align: left;
		}
	}

	/* 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) {
		h1 {
			font-size: 40px;
		}
	}


/* #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; }
*/