/*
Theme Name: CEJE Center Theme
Author: Matthew Pfeifer
Author URI: http://mattpfeifer.com
Description: This is a custom theme for the Center for Equity and Justice in Education's homepage.  It is modern, clean, and Matt will finish writing this later.
Version: 0.1
Text Domain: ceje
*/


/* 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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
	color:inherit;
	text-decoration:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

/* END CSS RESET SECTION */

	@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
	@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

	
	


h2 {

font-family:'Kite One', sans-serif;
font-size:24px;
line-height:150%;
color:#ffe030;


}

h3 {

font-family:'Kite One', sans-serif;
font-size:16px;
line-height:150%;
color:#ffe030;
margin-bottom:8px;

}

h4 {

font-family:'Montserrat';
font-weight:700;
font-size:125%;
line-height:150%;

}

.single_content a {
border-bottom: 1px white dotted;
font-weight:200;
}

.single_content a:hover {
color:#ffe030;

}



.fadein {
	opacity:0;
	-webkit-animation:fadeIn ease-in .5s;
	-moz-animation:fadeIn ease-in .5s;
	animation:fadeIn ease-in .5s;
	-webkit-animation-fill-mode:forwards;
	-moz-animation-fill-mode:forwards;
	animation-fill-mode:forwards;
}

#masthead {
	width:225px;
	height:100%;
	background-color:rgba(0,0,0,0.3);
	position:fixed;
	top:0px;
	left:0px;
	z-index:3;
}

#logo {
	position:fixed;
	width:200px;
	height:auto;
	margin-left:12px;
	margin-top:13px;
}

#uiclogo {
	position:fixed;
	bottom:15px;
	left:15px;
	width:200px;
	height:auto;
}

#home_nav {
	position:fixed;
	top:210px;
	left:0px;
	color:white;
	font-family:'Montserrat', sans-serif;
	z-index:10;
}

nav ul li {
	height:34px;
	width:225px;
	background-color:rgba(0,0,0,0.5);
	vertical-align:middle;
	text-align:center;
	margin-bottom:5px;
	padding-top:16px;
}

nav ul li:hover{
	background-color:black;
	color:#ffe030;
    -moz-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
}

nav ul ul {
	display:none;
}

nav ul li:hover > ul {
	display:block;
	margin-left:225px;
	margin-top:-32px;
	
}

nav ul ul li {
	background-color:rgba(0,0,0,0.85);
	color:white;
margin-bottom:0px;
border-top:2px solid #ffe030;
}

nav ul ul li:first-child {
border-top:none;
}



form.searchform label{
	display:none;
}

form.searchform {

width:100%;

}

form.searchform input[type='text'] {
margin-top:0px;
font-size:85%;
font-family:'Montserrat', sans-serif;
background-color:rgba(0,0,0,0.5);
color:white;
width:100%;
height:50px;
-webkit-box-sizing: border-box;
-moz-box-sizing: border-box;
box-sizing: border-box;
padding:5px;
border:none;
-moz-border:none;
-webkit-border:none;
}

form.searchform .searchsubmit {
width:100%;
cursor:pointer;
background-color:#ffe030;
height:30px;
border-radius:0px;
color:black;
font-family:'Montserrat', sans-serif;
text-transform:uppercase;
border:none;
-moz-border:none;
-webkit-border:none;
}

.search_result_header {

font-family: 'Kite One', sans-serif;
color:#ffe030;
font-size:150%;
line-height:150%;

}

#home_container {
	position:fixed;
	top:0px;
	left:0px;
	background-image:url('images/safepassage.jpg');
	background-repeat:no-repeat;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
	width:100%;
	height:100%;
	z-index:-1;
}

#feature_area {
	position:absolute;
	left:0px;
	bottom:0px;
	background-color:rgba(0,0,0,0);
	z-index:2;
	width:100%;
	height:325px;
	color:#ffffff;
}

#feature_container {
	position:absolute;
	top:0px;
	right:0px;
	width:52%;
	height:300px;
	overflow:hidden;
	color:#ffffff;
}

#cat_feature_container {
	position:relative;
	float:right;
	width:75%;
	height:80%;
	top:150px;
	color:#ffffff;
	overflow:auto;
	
}

.home_headline {
	font-family:'Montserrat', sans-serif;
	font-weight:700;
	font-size:36px;
	line-height:125%;
}

.home_headline:hover {
	color:#FFE030;
	-moz-transition: all 0.1s linear;
	-webkit-transition: all 0.1s linear;
	-o-transition: all 0.1s linear;
	transition: all 0.1s linear;
}

.home_subhead {
	color:#ffe030;
	font-family:'Kite One', sans-serif;
	font-weight:400;
	font-size:20px;
	line-height:150%;
}

.home_content {
	color:white;
	font-family:'PT Sans', sans-serif;
	font-weight:400;
	font-size:16px;
	line-height:125%;
}

.home_content a {
border-bottom: 1px #ffe030 dotted;
color:#ffe030;
}


#headline_container {
color:white;
	background-color:rgba(0,0,0,0.7);
	position:absolute;
	width:60%;
	left: 250px;
	top:25px;
	padding:25px;
}

#cat_headline_container {
	color:white;
	background-color:rgba(0,0,0,0.6);
	position:absolute;
	width:auto;
	left: 250px;
	top:25px;
	padding:25px;
}

.feature {
	float:left;
	width:200px;
	margin-right:10px;
	margin-bottom:25px;
	height:300px;
	background-color:rgba(0,0,0,0.8);
}

.feature:hover {
	color:#FFE030;
	-moz-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    }
	
.cat_feature {
	float:left;
	width:200px;
	margin-right:10px;
	margin-bottom:25px;
	height:350px;
	background-color:rgba(0,0,0,0.8);
}

.cat_feature:hover {
	color:#FFE030;
	-moz-transition: all 0.1s linear;
    -webkit-transition: all 0.1s linear;
    -o-transition: all 0.1s linear;
    transition: all 0.1s linear;
    }
	
.cat_feature_nav {
	text-align:center;
	color:#ffe030;
	font-size:150%;
	font-family:'Montserrat', sans-serif;
	float:left;
	width:200px;
	margin-right:10px;
	margin-bottom:25px;
	height:350px;
	background-color:rgba(0,0,0,0.8);
}

.home_post_title {

	width:190px;
	height:50px;
	font-family: 'Montserrat', sans-serif;
	font-weight:700;
	font-size:18px;
	background-color:rgba(0,0,0,0.5);
	text-align:center;
	padding:10px 5px 5px 5px;
}



.home_post_image img {
	width:100%;
	height:auto;
}

.home_post_excerpt {
	font-family:'PT Sans', sans-serif;
	font-size:14px;
	width:186px;
	padding:10px;
	line-height:150%;
}

.cat_date {
	font-family:'Kite One', sans-serif;
	color:#FFE030;
	font-size:75%;
	background-color:rgba(0,0,0,0.5);
	text-align:center;
	padding:10px 5px 5px 5px;
}

#single_container {
	color:white;
	background-color:rgba(0,0,0,0.8);
	width:63%;
	margin-top:30px;
	margin-left:23%;
	padding:50px;
	height:auto;
}

.single_title {
	font-family:'Montserrat', sans-serif;
	font-size:48px;
	font-weight:700;
}

.single_author {
	font-family:'Kite One', sans-serif;
}

.single_content {
	font-family:'PT Sans', sans-serif;
	font-weight:400;
	font-size:14px;
	line-height:150%;
}

.single_content .alignright {
	float:right;
	margin-left:20px;
	margin-top:20px;
	margin-bottom:20px;
}

.single_content .alignleft {
float:right;
margin-right:20px;
margin-top:20px;
margin-bottom:20px;
}

.single_content p {
/*text-indent:3em;*/
font-weight:200;
margin-bottom:1em;
}

.single_content b {
font-weight:800;
font-size:110%;
}

.single_photo img {
max-width:400px;
height:auto;
float:right;
margin-left:20px;
margin-bottom:20px;
}

.comments textarea {
	outline:none;
	resize:none;
	overflow:auto;
}

.comments {
	line-height:150%;
		font-family: 'Montserrat', sans-serif;

	
}

.comments .comment-reply-link {
	text-transform:uppercase;
	font-weight:700;
	color:#f26531;
}

.comments h3 {
	margin-top:20px;
	margin-bottom:20px;
	font-family: 'Montserrat', sans-serif;
	color:#FFE030;
	font-weight:800;
	font-size:120%;
	line-height:150%;
}