/*
	Fluid Baseline Grid v1.0.0
	Designed & Built by Josh Hopkins and 40 Horse, http://40horse.com	
	Licensed under Unlicense, http://unlicense.org/
	
	Base stylesheet with CSS normalization, typographic baseline grid and progressive responsiveness
*/

/* HTML5 DECLARATIONS */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, dialog {display: block}
audio[controls],canvas,video {display: inline-block; *display: inline; zoom: 1}

/* BASE */
html {height: 100%; font-size: 100%; overflow-y: scroll; -webkit-text-size-adjust: 100%} /* Force scrollbar in non-IE and Remove iOS text size adjust without disabling user zoom */
body {margin: 0; min-height: 100%; -webkit-font-smoothing:antialiased; font-smoothing:antialiased; text-rendering:optimizeLegibility;} /* Improve default text rendering, handling of kerning pairs and ligatures */

/* MICRO CLEARFIX HACK */
.cf:before, .cf:after {content:"";display:table} /* For modern browsers */
.cf:after {clear:both}
.cf {zoom:1} /* For IE 6/7 (trigger hasLayout) */

/* DEFAULT MOBILE STYLE */
body {width: 92%; margin: 0 auto} /* Center page without wrapper */
/* column grid */
.g1,.g2,.g3,.c1,.c2{display:block; position: relative; margin-left: 1%;}
/* 1 column grid */
.g1,.g2,.g3,.c1,.c2{width:99.0%}


/* media Queries

FOLDING FLUID GRID (.g1, .g2, .g3)
< 767px			- 1-Column Fluid Grid
768px - 1023px	- 2-Column Fluid Grid
> 1024px			- 3-Column Fluid Grid
Change widths as necessary
------------------------------------------- */

/* MOBILE PORTRAIT */
@media only screen and (min-width: 320px) {
	body {
		
	}
	header > #extLogo img{width:100%;}
	header > nav{text-transform:none;}
	#flickrBlock{display:none;}
}

/* MOBILE LANDSCAPE */
@media only screen and (min-width: 480px) {
	body {
		
	}
	header > #extLogo img{width:90%;}
	header > nav{text-transform:none;}
	#flickrBlock{display:none;}
}

/* SMALL TABLET */
@media only screen and (min-width: 600px) {
	body {
	
	}
	header > #extLogo img{width:70%;}
	header > nav{text-transform:uppercase;}
	header > nav ul li > ul{width:18%;} 
	header > nav ul li{width:18%;}
	header > nav ul li.account{width:21%;}
	header > nav ul li ul{top:160px;} 
	li.about,li.conference,li.swag{display:none;}
	li.more{display:inline-block;}
	#flickrBlock{display:block;}
}

/* TABLET/NETBOOK */
@media only screen and (min-width: 768px) { 
	body {
		
	}
	
	/* COLUMN GRID */
	.g1,.g2,.g3,.c1,.c2 {display:inline; float: left}
	
	/* 2 COLUMN GRID */
	.g1 {width:49.0%}
	.g2 {width:49.0%}
	.g3 {width:99.0%}
	.c1 {width:49.0%}
	.c2 {width:49.0%}
	footer .g1 {width:48%;}
	footer .g2 {width:48%;}
	footer .g3 {width:98%;}

	header > nav ul li > ul{width:18%;} 
	header > nav ul li{width:19%;}
	header > nav ul li ul{top:192px;} 
	li.about,li.conference{display:none;}
	li.more{display:inline-block;}
}

/* SMALL TABLET/NETBOOK LANDSCAPE */
@media only screen and (min-width: 800px) { 
	header > #extLogo img{width:60%;}
	header > nav ul li ul{top:200px;} 
}

/* LANDSCAPE TABLET/NETBOOK/LAPTOP */
@media only screen and (min-width: 1024px) { 
	body {

	}
	
	/* 3 COLUMN GRID */
	.g1 {width:32%;}
	.g2 {width:65%;}
	.g3 {width:99%;}
	footer .g1 {width:31%;}
	footer .g2 {width:64%;}
	footer .g3 {width:98%;}

	header > #extLogo img{width:50%;}
	header > nav ul li > ul{width:12%;} 
	header > nav ul li{width:13%;}
	header > nav ul li.account{width:14%;}
	header > nav ul li ul{top:238px;} 
	li.about,li.conference,li.swag{display:inline-block;}
	li.more{display:none;}
}

@media only screen and (min-width: 1200px) { 
/* DESKTOP */
		body {font-size:116.75%; max-width:1200px;}
	header > #extLogo img{width:40%;}
}

/* WIDESCREEN */
/* Increased body size for legibility */
/*@media only screen and (min-width: 1400px) { 
	body {font-size:116.75%; max-width:1440px;} /* 18.5px / 28px */
/*}*/


/* PRINT */
@media print {
  * {background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important} /* Black prints faster */
  a, a:visited {color: #444 !important; text-decoration: underline}
  a[href]:after {content: " (" attr(href) ")"}
  abbr[title]:after {content: " (" attr(title) ")"}
  .ir a:after, a[href^="javascript:"]:after, a[href^="#"]:after {content: ""}  /* Don't print links for images, javascript or internal links */
  pre, blockquote {border: 1px solid #999; page-break-inside: avoid; }
  thead {display: table-header-group; } /* Repeat header row at top of each printed page */
  tr, img {page-break-inside: avoid; }
  img {max-width: 100% !important; }
  @page {margin: 0.5cm}
  p, h2, h3 {orphans: 3; widows: 3}
  h2, h3{page-break-after: avoid}
}