/* 
Project Name: Blank Template
Client: Your Client
Author: Your Name
Developer @GA in NYC
*/


/******************************************
/* SETUP                   
/*******************************************/

/* Box Model Hack */
* {
     -moz-box-sizing: border-box; /* Firexfox */
     -webkit-box-sizing: border-box; /* Safari/Chrome/iOS/Android */
     box-sizing: border-box; /* IE */
}

/* Clear fix hack */
.clearfix:after {
     content: ".";
     display: block;
     clear: both;
     visibility: hidden;
     line-height: 0;
     height: 0;
}

.clear {
	clear: both;
}

.alignright {
	float: right; 
	padding: 0 0 10px 10px; /* note the padding around a right floated image */
}

.alignleft {
	float: left; 
	padding: 0 10px 10px 0; /* note the padding around a left floated image */
}

/******************************************
/* BASE STYLES                   
/*******************************************/

body {
     color: #000;
     font-size: 12px;
     line-height: 1.4;
     font-family: Helvetica, Arial, sans-serif;
     background-color: white;
}


/******************************************
/* LAYOUT                   
/*******************************************/

/* Center the container */
#container {
	width: 960px;
	margin: auto;
     background-color: white;
}

header {

}

footer {

}

/******************************************
/* ADDITIONAL STYLES                   
/*******************************************/

.tempheader {
     font-size: 5em;
     padding: 10%;
     text-align: center;
     color: rgba(255,255,255,0.8);
     line-height: 1em;
}

.span4 h3 {
     white-space: nowrap;
     overflow: hidden;
     text-overflow:ellipsis;
}

.span4 {
     height: 400px;
     margin-top: 20px;
     margin-bottom: 20px;
}

.longbox {
     width: 85%;
     height: 30px;
     margin: 20px;
}

.infobar {
  width: 100%;
  height: 40px;
  display: block;
  background: -webkit-linear-gradient(#f60,#f30);
  background: -moz-linear-gradient(#f60,#f30);
  background: -o-linear-gradient(#f60,#f30);
  background: linear-gradient(#f60,#f30);
  color: white;
  font-size: 18px;
  text-align: center;
  padding: 10px;
  text-decoration: none;
 }