/********************************************************************* 
CONTENTS

1. reset
2. HTML5 reset
3. basics
4. base typography 
5. header
6. main content
7. footer
8. misc. 
9. media queries
	a. min-width: 600px
	b. min-width: 1025px
*/


/********************************************************************* 
1. reset CSS (v2.0) http://meyerweb.com/eric/tools/css/reset/ 
*/

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 {
  border: 0;
  font-size: 100%;
  font: inherit;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/*********************************************************************
2. HTML5 display-role reset for older browsers 
*/

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

/********************************************************************* 
3. basics
*/

body {
	height:100%;
	overflow: auto;
	/*background: -webkit-linear-gradient(left, #FFCC00 33.3333333%, #00247D 33.3333333%, #00247D 66.666666%, #CF142B 66.666666%); /* For Safari 5.1 to 6.0 */
    /*background: -o-linear-gradient(right, #FFCC00 33.3333333%, #00247D 33.3333333%, #00247D 66.666666%, #CF142B 66.666666%); /* For Opera 11.1 to 12.0 */
    /*background: -moz-linear-gradient(right, #FFCC00 33.3333333%, #00247D 33.3333333%, #00247D 66.666666%, #CF142B 66.666666%); /* For Firefox 3.6 to 15 */
    /*background: linear-gradient(to right, #FFCC00 33.3333333%, #00247D 33.3333333%, #00247D 66.666666%, #CF142B 66.666666%); /* Standard syntax (must be last) */
    /*border: 10px solid #FFFFFF;*/
}


#container {
	width: 100%;
	overflow: hidden;
	padding-bottom: 1px;
	margin: 0 auto;	
}

#content {
	width: 95%;
	margin: 0 auto;	
}

/********************************************************************* 
4. base typography 
*/

body { 
	font-family: 'Source Sans Pro', sans-serif;
	color: #666666; 
}

a {
	text-decoration: none;
	font-style: italic;
}

a:link{
    color: #666666;
}

a:visited{
    color: #666666;
}

a:hover {
	color: #333333;
	background-color: rgba(0,0,0,.1);
}

a:active {
	color: #333333;
}

a:hover.fancybox-item, a:hover.fancybox-nav {
	background-color: transparent;
}

/********************************************************************* 
5. header
*/

header {
    margin-top: -116px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

#header-content {
    padding: 10px;	
}

header h1 {
	font-weight: 300;
	font-size: 2em;
	background-color: #FFFFFF;
	display: inline;
	padding: 10px;
	line-height: 1.6em;
	word-spacing: .2em;
	color: #666666;
}

header h1 a {
	font-style: normal;
}

header h1 a:hover {
	color: #333333;
	background-color: #FFFFFF;
}

nav {
	width: 100%;
	margin-top: 30px;
	margin-left: 10px;
}

nav ul { 
	text-align: left;
}

nav ul li { 
	display: inline-block; 
    height: 27px;
	}

nav a {
    background-color: #FFFFFF;
    color: #666666;
    font-size: 0.9em;
    margin-right: 14px;
    text-decoration: none;
    text-transform: lowercase;
    padding: 5px;
    font-style: normal;
    font-weight: 400;
}

nav a:link{
    background-color: #FFFFFF;
    color: #666666;
}

nav a:visited{
    background-color: #FFFFFF;
    color: #666666;
}

nav a:hover {
	background-color: rgba(0,0,0,.3);
	color: #FFFFFF;
}

nav a:active {
	background-color: rgba(0,0,0,.6);
	color: #FFFFFF;
}

/********************************************************************* 
6. main content
*/

#main-content {
	width: 100%;
    margin-top: 0px;
    overflow: hidden;
}

.subsection {
	margin: 10px 0;
    padding: 10px;
}

.venues {
    margin-bottom: 30px;
}

.subsection h1 {
    background-color: white;
    color: #666666;
    font-weight: 400;
    padding: 10px;
    text-transform: lowercase;
    margin-bottom: 10px;
}

.subsection h2 {
	padding: 10px;
	margin-bottom 10px;
	text-transform: lowercase;
    font-weight: 300;
	font-size: .9em;
}

.subsection p {
    background-color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
    padding: 10px;	
    font-size: .9em;
    line-height: 1.5em;
}

.subsection li {
    background-color: #999999;
    color: #FFFFFF;
    display: inline-block;
    font-weight: 300;
    margin: 6px 3px;
    padding: 2px 10px;
    font-size: .9em;
}

.subsection li a {
    color: #FFFFFF;
    text-decoration: none;
    font-style: normal;
}

.subsection li:hover, .subsection li a:hover {
    background-color: #666666;
    color: #FFFFFF;
}

.venues li {
    background-color: #FFFFFF;
    color: #999999;
    display: inline-block;
    font-weight: 300;
    margin: 2px 3px;
    padding: 2px 10px;
    font-size: .9em;
}

.venues li a {
	color: #666666;
}

.venues li:hover, .venues li a:hover {
	color: #333333;
	background-color: #CCCCCC;
}

/********************************************************************* 
7. footer
*/

footer {
	margin: 10px 0 0;
    padding: 10px;
    font-size: .8em;
    font-weight: 300;
    color: #666666;
}

/********************************************************************* 
8. misc.
*/

#primary-decor {
	height: 146px;
	background: url(images/FinalUnsettledPriBanner-sm.jpg) repeat-x fixed 0 0 transparent;
	background-position: center top; 
	}

cite {
	font-weight: 400;
}

abbr {
	text-transform: uppercase;
}

img {
	max-width: 100%;
	width: 100%;
}

h2.artist {
	text-transform: none;
}

#clear {
    clear: both;
}

#clear-line {
	background-color: rgba(0, 0, 0, 0.02);
    clear: both;
    height: 4px;
    margin: 20px 0;
}

.instruction {
	background-color: #ECECEC;
}

.expander {
    background-color: #FFFFFF;
    border-radius: 9px 9px 9px 9px;
    font-size: 1em;
    font-style: normal;
    font-weight: 400;
    margin: 0 5px;
    padding: 0 5px 0 6px;
}

.intro .expander {
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.underline {
	text-decoration: underline;
}

.title {
	font-style: italic;
}

nav a.current-page {
	border-bottom: 4px solid #999999;
}

a.no-hover:hover {
	color: #333333;
	background-color: #FFFFFF;
}

.clear {
	clear: both;
}

.vertical-mark {
	display: none;
}

/*********************************************************************************** ************** ************** ************** **************  
9. media queries
*/

	/*********************************************************************
	a.
	*/

@media (min-width: 600px) {

	#primary-decor {
		height: 264px;
		background: url(images/FinalUnsettledPriBanner-md.jpg) repeat-x fixed 0 0 transparent;
	}

	header {
		margin-top: -160px;
	}

	header h1 {
		font-size: 3em;
	}
	
	nav {
		margin-top: 49px;
	}
	
	#main-content {
		margin-top: 20px;
	}
	
	.intro {
		float: left;
		padding: 10px 1%;
		width: 46%;
	}
	
	.artists {
		float: left;
		padding: 10px 1%;
		width: 31%;
	}
	
	.venues {
		float: left;
		padding: 10px 1%;
		width: 15%;
		margin-bottom: 0;
	}
		
	footer {
		clear: both;
	}

	.artist-text {
		background-color: rgba(0, 0, 0, 0.03);
		margin: 25px 1%;
		padding: 10px 1%;
		width: 96%;
	}
	
	.instruction-group {
		width: 31.333333%;
		padding: 10px 1%;
		float: left;
	}
	
	.column {
		width: 48%;
		margin: 0 1%;
		float: left;
	}
	
}

	/*********************************************************************
	b.
	*/

@media (min-width: 1025px) {

	#primary-decor {
		height: 418px;
		background: url(images/FinalUnsettledPriBanner-lg.jpg) repeat-x fixed 0 0 transparent;
	}

	.instruction-group {
		width: 31.333333%;
		padding: 10px 1%;
		float: left;
	}

}