/** 

BOOTSTRP INFO

Bootstrap's global default font-size is 14px, with a line-height of 1.428. This is applied to the <body> and all paragraphs. In addition, <p> (paragraphs) receive a bottom margin of half their computed line-height (10px by default). 

## EMs WILL INCEASE THE FONT SIZE BASED ON THE PARENT FONT SIZE
# LET BOOTSTRAP SET THE BODY FONT SIZE

Custom, iPhone Retina *
@media only screen and (min-width : 320px) {
}

Extra Small Devices, Phones XS
@media only screen and (min-width : 480px) {
}

Small Devices, Tablets SM 
@media only screen and (min-width : 768px) {
}

Medium Devices, Desktops MD 
@media only screen and (min-width : 992px) {
}

Large Devices, Wide Screens  LG
@media only screen and (min-width : 1200px) {
}

background-color:#3A7094;

**/

html{
height: 100%;
}

body {
height: 100%;
width:100%;
color: #333;
font-family: 'Open Sans', sans-serif;
font-weight: 400; 
background-color:#003876;
}

#fireworks {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.col-wrap{
    overflow: hidden; 
}

.padding {
padding:12px 20px;
}

[class*="col-"]:not(:last-child){ 
margin-bottom: 35px; 
}

.wrapper {
margin:0 auto;
max-width:950px;
border:0px solid green;
overflow:hidden;
}

.shadow {
 -moz-box-shadow:    1px 2px 4px 3px #999;
  -webkit-box-shadow: 1px 2px 4px 3px #999;
  box-shadow:         1px 2px 4px 3px #999;
}

#header {
background-color:transparent;
margin:0 auto;
padding:10px 0;
width:100%;
border:0px solid blue;
}
	
#header #logo,
#header #logo2{
border:0px solid red;
margin:0px;
padding:0;
max-width:205px;
display: block;
    margin-left: auto;
    margin-right: auto;
}

#header #event-header {
border:0px solid red;
color:white;
font-size:29px;
line-height:28px;
vertical-align:middle;
text-align:center;
font-weight:bold;
padding-top:20px;
}

#header #event-header  a {
text-decoration:none;
}

#header #event-header a:hover{
color: #A1D1F1;
text-decoration:underline;
}

#top-nav {
margin:0px;
padding:10px 0;
min-height:30px;
border:0px solid white;
color:black;

}

#top-nav ul{
margin-left:35px;
  padding-left: 0;
  list-style: none;
}

#top-nav li{
display: inline;
color:white;
padding:0px;
margin-right:20px;
font-size:1.4em;
}

#top-nav  a {
padding-right:0;
color:#fff;
text-decoration:none;
}

body#home #top-nav  #tn-home,
body#register #top-nav  #tn-register,
body#venue #top-nav  #tn-venue,
body#agenda #top-nav  #tn-agenda,
body#area #top-nav  #tn-area,
body#lodging #top-nav  #tn-lodging,
body#contact #top-nav  #tn-contact,
#top-nav  a:hover{
  color: #A1D1F1;
border-bottom:2px solid #223671;
}

#content { 
margin:0 auto;
background-color:#fff;
padding:0;
width:100%;
min-height:300px;
border-top-left-radius: 14px;
border-top-right-radius: 14px;
border-top:1px solid #999;
border-left:1px solid #999;
border-right:1px solid #999;
}

#content img{
  display: block;
  max-width: 100%;
  height: auto;
}

#content .pic-with-border-float-right{
background-color:#f2f2f2;
float:right;
padding:10px 20px;
margin:10px 0 25px 25px;
text-align:center;
}

#content a:link ,
#content a:visited {
color: #333;
text-decoration:underline;
}

#content a:hover ,
#content a:active {
color: #569FD2;
text-decoration:underline;
}

#content a.big:link ,
#content a.big:visited {
color: #333;
text-decoration:underline;
font-size:150%;
}

#content a.big:hover ,
#content a.big:active {
color: #000;
text-decoration:underline;
font-size:150%;
}



#content h1{
color: #003876;
font-weight: bold;
margin:10px 0 ;
}


#content h2 {
font-size:1.5em;
color:#003876;
text-transform:uppercase;
}

#home-middle {
margin:25px auto;
}

#home-middle h2 {
color:#333;
font-weight:bold;
text-transform:uppercase;
font-size:1.4em;
}

#right-testimonials {
margin:0;
padding:10px 20px; 
background-color:#f2f2f2;
margin-bottom: -99999px;
padding-bottom: 99999px;
}

/* Container DIV - automatically generated */
.simply-scroll-container { 
	position: relative;
}

/* Clip DIV - automatically generated */
.simply-scroll-clip { 
	position: relative;
	overflow: hidden;
}

/* UL/OL/DIV - the element that simplyScroll is inited on
Class name automatically added to element */
.simply-scroll-list { 
	overflow: hidden;
	margin: 0;
	padding: 0;
	list-style: none;
}
	
.simply-scroll-list li {
	padding: 0;
	margin: 0;
	list-style: none;
}
	
.simply-scroll-list li img {
	border: none;
	display: block;
}

/* Custom class modifications - adds to / overrides above

.simply-scroll is default base class */

/* Container DIV */
.simply-scroll { 
	//width: 93%;
	width: 100%;
	height: 100px;
	margin-left: auto;
	margin-right: auto;
}

/* Clip DIV */
.simply-scroll .simply-scroll-clip {
	width: 100%;
	height: 100px;
}
	
/* Explicitly set height/width of each list item */	
.simply-scroll .simply-scroll-list li {
	float: left; /* Horizontal scroll only */
	width: 80px;
	height: 100px;
}


/* Medium Devices, Desktops */
@media only screen and (max-width : 768px) {

	#header #event-header {
	padding-top:10px;
	}


}