@charset "utf-8";
/* CSS Document */

body {
	font: 1.0em "Muli", "Helvetica Neue", Helvetica, Arial, sans-serif;
	color: #ffffff;
	background: #000000;
	margin: 0px;
    padding: 0px;
	overflow-x: hidden;
	height: 100%;
}
a {
	color: #8ec8f6;
	text-decoration: none;
}
a:hover {
	text-decoration: underline;
}
h3 {
	font: 22px/100% "Muli Light", "Muli", "Helvetica Neue", Helvetica, Arial, sans-serif;
	margin-top: 0px;
	margin-bottom: 0px;
	color: #ffffff;
}
li {
	padding-bottom: 5px;
}

/************************************************************************************
STRUCTURE
*************************************************************************************/
#rit_header {
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 51px;
	background: rgba(0,0,0,0);
}

#rit_logo {
	position:absolute;
	top:0px;
	left:0px;
	z-index: 1000;
}

#rit_logo_mobile {
	position:absolute;
	top:0px;
	left:0px;
	z-index: 1000;
	visibility: hidden;
	width: 235px;
}

.page-wrap {
  min-height: 100%;
  height: 100%;
  background: #000000;
  margin-bottom: -150px;
  margin-top: 51px; 
}
.page-wrap:after {
  content: "";
  display: inline-block;
}
.site-footer, .page-wrap:after {
  /* .push must be the same height as footer */
	height: 150px; 
	margin-top: 51px;
	padding-top: 20px;
}
.site-footer {
  background: #000000;
}

.content {
	/*note, content is clear - use a sub-div to background things */
	background: rgba(200,200,200,0.0);
	position: relative;
	top: 30px;
	margin: 0 auto;
	padding-left: 10px;
	padding-right: 10px;
	padding-top: 1px;
	padding-bottom: px;
	max-width: 1100px;
	height: 100%;
}

.content:filled {
	
}

#background {
	position: absolute;
	background: rgba(0,0,0,0.0);
	height: 746px;
	top: 51px;
	width: 100%;
	background-image:url(../images/background2.jpg);
}

#main_content {
	position: relative;
	top: 0px;
	width: 50%;
	float: left;
	padding-left: 15px;
	padding-right: 15px;
}

#sidebar {
	top: 0px;
	left: 50%;
	width: auto;
}

#inner_sidebar {
	width: 43%;
	float: right;
	margin-left: 10px;
	margin-right: 10px;
}
/************************************************************************************
MEDIA QUERIES
*************************************************************************************/
/* for 980px or less */
@media screen and (max-width: 98000px) {
	#rit_logo {
		visibility:visible;
	}
	#rit_logo_mobile {
		visibility:hidden;
	}

	#main_content {
		width: 50%;
		float: left;
	}
	
	#sidebar {
		width: auto;
	}
	#inner_sidebar {
		width: 43%;
		float: right;
	}
}

/* for 700px or less */
@media screen and (max-width: 801px) {

	#rit_logo {
		visibility:visible;
	}
	#rit_logo_mobile {
		visibility:hidden;
	}
	#main_content {
		position: relative;
		width: auto;
		float: none;
	}
	
	#sidebar {
		width: 100%;
		float: none;
		left: 0px;
		top: 0px;
	}
	#inner_sidebar {
		width: auto;
		float: none;
	}
}

/* even smaller */
@media screen and (max-width: 625px) {
	#rit_logo {
		visibility:visible;
	}
	#rit_logo_mobile {
		visibility:hidden;
	}
	
	#main_content {
		position: relative;
		width: auto;
		float: none;
	}
	
	#sidebar {
		width: 100%;
		float: none;
		left: 0px;
		top: 0px;
	}
	
	#inner_sidebar {
		width: auto;
		float: none;
	}
}

/* for 480px or less */
@media screen and (max-width: 480px) {

	#rit_logo {
		visibility:visible;
	}
	#rit_logo_mobile {
		visibility:hidden;
	}
	
	#main_content {
		position: relative;
		width: auto;
		float: none;
	}
	
	#sidebar {
		width: 100%;
		float: none;
		left: 0px;
		top: 0px;
	}
	#inner_sidebar {
		width: auto;
		float: none;
	}
}


