/* $Id */

/**
 * @file
 * Layout Styling (DIV Positioning)
 *
 * Define CSS classes to create a table-free, 3-column, 2-column, or single
 * column layout depending on whether blocks are enabled in the left or right
 * columns.
 *
 * This layout is based on the Zen Columns layout method.
 *   http://drupal.org/node/201428
 *
 * Only CSS that affects the layout (positioning) of major elements should be
 * listed here.  Such as:
 *   display, position, float, clear, width, height, min-width, min-height
 *   margin, border, padding, overflow
 */


/* Overall
------------------------------------------------------------------------------*/
body {
}
#page-wrapper,
.region-page-closure {
  /*
   * If you want to make the page a fixed width and centered in the viewport,
   * this is the standards-compliant way to do that. See also the ie6.css file
   * for the necessary IE5/IE6quirks hack to center a div.
   */
  margin: 1px auto 30px;
  width: 1140px;
}
#page {
}

/* Header
------------------------------------------------------------------------------*/
#header {
  height: 50px;
}
#header .section {
  width: 1140px;
  margin: 0 auto;
}
#header .block {
  margin-bottom:0;
  height: 50px;
  float: left; /* LTR */
}
#header .region-header {
  float: left;  /* LTR */
  margin: 0 0 0 35px;  /* LTR */
  position: relative;
  width: 987px;
}
#header #block-menu-secondary-links {
  float: right;
  margin:0 12px 0 0; /* LTR */
}
#header #block-search-0 {
  float: right;
}

/* Main
------------------------------------------------------------------------------*/
#main-wrapper {
  position: relative;
  width: 960px;
  float: left; /* LTR */
}
#main {
  margin: 0 0 15px;
}

/* Content
------------------------------------------------------------------------------*/
#content,
.no-sidebars #content {
  float: left; /* LTR */
  width: 960px;
  margin-top: 20px;
  margin-left: 0; /* LTR */
  margin-right: -810px; /* LTR */ /* Negative value of #content's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #content .section. */
}
.sidebar-first #content {
  width: 765px;
  margin-left: 195px; /* LTR */ /* The width of .region-sidebar-first. */
  margin-right: -960px; /* LTR */ /* Negative value of #content's width + left margin. */
}
.sidebar-second #content {
  width: 615px;
  margin-left: 0; /* LTR */
  margin-right: -615px; /* LTR */ /* Negative value of #content's width + left margin. */
}
.two-sidebars #content {
  width: 420px;
  margin-left: 195px; /* LTR */ /* The width of .region-sidebar-first */
  margin-right: -615px; /* LTR */ /* Negative value of #content's width + left margin. */
}
#content .section {
  margin: 0;
  padding: 0;
}
.no-sidebars  #content .section {
  margin: 0 20px; 
}
.sidebar-first #content .section {
  margin: 0 20px 0 30px; /* LTR */
}
.sidebar-second #content .section {
  margin: 0 30px 0 20px; /* LTR */
}
.two-sidebars  #content .section {
  margin: 0 30px; 
}

/* First Sidebar
------------------------------------------------------------------------------*/
.region-sidebar-first {
  float: left; /* LTR */
  width: 195px;
  margin-left: 0; /* LTR */
  margin-right: -195px; /* LTR */ /* Negative value of .region-sidebar-first's width + left margin. */
  margin-top: 20px;
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-first .section. */
}
.region-sidebar-first .section {
  margin: 0 0 0 20px; /* LTR */
  padding: 0;
}


/* Second Sidebar
------------------------------------------------------------------------------*/
.region-sidebar-second {
  float: left; /* LTR */
  width: 195px;
  margin-left: 615px; /* LTR */ /* Width of content + sidebar-first. */
  margin-right: -810px; /* LTR */ /* Negative value of .region-sidebar-second's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to .region-sidebar-second .section. */
}
.region-sidebar-second .section {
  margin: 0 20px 0 0; /* LTR */
  padding: 0;
}


/* User Sidebar
------------------------------------------------------------------------------*/
#user-sidebar {
  float:right; /* LTR */
  width:160px;
}
#user-sidebar .region {
  margin-top: 20px;
}

.not-logged-in #user-sidebar {
    background-color: #F7F7F7;
    float: right;
    padding-left: 6px;
    padding-right: 6px;
    width: 158px;
}

.page-undergradschool-search #node-17951869 .sidebar-slogan {
    font-size: 90% !important;
}

.page-undergradschool-search #node-17951869 ul {
    font-size: 82% !important;
    }

.page-undergradschool-search #node-17951869 .sidebar-signup-link a {
    font-size: 147%;
    padding: 13px 5px 10px 55px;
    }
    
.page-undergradschool-search #node-17951869 .sidebar-login-link {
    font-size: 75%;
    }

.page-user-register #user-sidebar{
	display:none !important;
	visibility:hidden !important;
}

/* Navigation
------------------------------------------------------------------------------*/
#navigation {
  float: left; /* LTR */
  width: 100%;
  margin-left: 0; /* LTR */
  margin-right: -100%; /* LTR */ /* Negative value of #navigation's width + left margin. */
  padding: 0; /* DO NOT CHANGE. Add padding or margin to #navigation .section. */
  height: 30px; /* The navigation can have any arbritrary height. We picked one
                    that is the line-height plus 1em: 1.3 + 1 = 2.3
                    Set this to the same value as the margin-top below. */
}
.with-navigation #content,
.with-navigation .region-sidebar-first,
.with-navigation .region-sidebar-second {
  margin-top: 50px;
}


/* Footer
------------------------------------------------------------------------------*/
#footer {
  clear: both;
}
#footer .section {
}


/* Closure
------------------------------------------------------------------------------*/
.region-page-closure /* See also the #page-wrapper declaration above that this div shares. */ {
}


/* Prevent overflowing content
------------------------------------------------------------------------------*/
#header,
#content,
#navigation,
.region-sidebar-first,
.region-sidebar-second,
#footer,
.region-page-closure {
  overflow: visible;
  word-wrap: break-word; /* A very nice CSS3 property */
}
#navigation {
  overflow: hidden; /* May need to be removed if using a dynamic drop-down menu */
}


/*
 * If a div.clearfix doesn't have any content after it and its bottom edge
 * touches the bottom of the viewport, Firefox and Safari will mistakenly
 * place several pixels worth of space between the bottom of the div and the
 * bottom of the viewport. Uncomment this CSS property to fix this.
 * Note: with some over-large content, this property might cause scrollbars
 * to appear on the #page-wrapper div.
 */
/*
#page-wrapper {
  overflow-y: hidden;
}
*/


/* For School Search
------------------------------------------------------------------------------*/
#newWrapLeft {
	float:left;
	overflow:hidden;
	width:167px;
}
#newWrapRight {
	float:left;
	width:572px;
	overflow:hidden;
	margin-left:24px;
}
#under-schoolsearch-guide-form 	fieldset {
	margin-top:10px;
	margin-bottom:10px;
	padding:0 5px;
	width:145px;
}
#under-schoolsearch-guide-form 	fieldset.feed_wapper {	
	margin-top:0px;
	overflow:hidden;
	width:155px;
}
#under-schoolsearch-guide-form fieldset legend {
	margin:0px;
	padding:0;
}
#religious_id-wrapper select {
	width:145px;
}
#under-schoolsearch-guide-form .demo div {
	width:145px;
}	
#under-schoolsearch-guide-form .demo {
	margin-top:10px;
}
#searchBox {
	position:relative;
	height:21px;
	margin-bottom:10px;
}
.searchBoxImg {
	width:22px;
	height:21px;
	position:absolute;
	right:0px;
	top:0;
	z-index:1000;
}
.searchBoxTextInput {
	width:142px;
	height:17px;
	padding:1px;
	padding-left:2px;
}
.resultsNumber {
	margin:10px 0;
	padding-left:0;
}
#paginationTop{
	height:23px;
	padding-bottom:5px;
}
.paginationLeft{
	float:left;
	width:130px;
	padding: 8px 0 4px 0;
}
.paginationRight{
	float:right;
	padding: 2px 0;
}
.paginationRight span {
	float:right;
	display:block;
	padding:3px 1px 0 1px;
}
.paginationRight select {
	float:right; 
}
.searchResults {
	padding:10px 0 5px 0;
}
.resultsLeft {
	float:left;
	width:75px;
}
.resultsLeft .schoolLogos img {
	width:75px;
}
.schoolLogos p {
	margin:0;
}
.resultsRight{
	float:right;
	width:475px;
	overflow:hidden;
	display:block;
}
.schoolNameBox {
	float:left;
	width:195px;
}
.schoolNameBox h3 {
	margin:0;
	}
.schoolNameBox h3 img {
	float:left;
	display:block;
	margin:3px 0 0 5px;
}
.schoolNameBox h3 a {
	float:left;
	display:block;
}
.schoolNameBox h4 {
	clear:left;
}
.schoolNameBox h5 {
	clear:left;
}
.schoolNameBox a.button_Like,.schoolNameBox a.button_Del {
	float:left;
	margin-right:5px;
}
.schoolTextBox{
	float:right;
	width:270px;
}
#uboxstyle {
	float:right;
}
.videoList {
	float:left;
	width:330px;
	overflow:hidden;
	margin-top:15px;
}
.videoList ul li {
	float:left;
	margin-right:8px;
}
.videoList ul li img {
	width:73px;
	height:55px;
}
.peopleList {
	float:right;
	width:140px;
	overflow:hidden;
	margin-top:15px;
}
.peopleList ul li {
	float:left;
	margin-right:3px;
}
.peopleList ul li img {
	width:25px;
	height:25px;
}

.resultsRight .schoolProperty {
	margin-top:15px;
}
.resultsRight li {
	font-size:11px;
}
.schoolPropertyLeft,.schoolPropertyCenter,.schoolPropertyLeft2,.schoolPropertyCenter2,.schoolPropertyRight,.schoolPropertyRightColspan {
	float:left;
	overflow:hidden;
}
.schoolPropertyLeft,.schoolPropertyCenter,.schoolPropertyLeft2,.schoolPropertyCenter2 {
	margin-right:10px;
}
.schoolPropertyLeft {
	width:100px;
}
.schoolPropertyCenter {
	width:240px;
	}
.schoolPropertyRight {
	width:170px;
}
.schoolPropertyRightColspan {
	width:410px;
}
.resultsRight .schoolPropertyLeft {
	width:152px;
}
.resultsRight .schoolPropertyCenter {
	width:152px;
}
.resultsRight .schoolPropertyRight {
	width:140px;
	float:right;
}
.block-zinch_user div.notice a {
  color:#000;
  text-decoration: underline;
}

#side-nav {
	padding: 20px;
    width: 138px;
    float: left;
}
#side-nav #school-links-title {
    padding-top: 10px;
    padding-bottom: 10px;
    font-family: Lucida Grande;
    font-weight: bold;
    font-size: 18px;
    color: #5e6a71;
    border-bottom: 3px solid #99e071
}

#side-nav #school-links-block div{
	height: 38px;
	line-height: 38px;
	border-bottom: 1px dotted #ccc;
	font-family: Helvetica;
	font-size: 14px;
	font-weight: normal;
}

#side-nav #school-links-block .active {
	font-weight: bold;
	color: #555;
}

/**** SOHP *****/
#sohp-page-wrapper {
	margin: 0 auto;
	width: 1200px;
	font-family: Helvetica;
}
#sohp-main {
	height:670px;
}
#sohp_boxes {
  float: left;
  width: 100%;
}
#sohp-box-1,#sohp-box-2,#sohp-box-3 {
	float: left;
	margin-top: 360px;
	width: 268px;
	margin-right: 40px;
}
#sohp-box-1 {
	margin-left: 160px;
}
#sohp-box-1 span, #sohp-box-2 span, #sohp-box-3 span {
  width: 268px;
  height: 162px;
  display: block;
  outline-style: none;
}
/* ---- don't need this for now.
#sohp-box-1 a:hover,#sohp-box-2 a:hover,#sohp-box-3 a:hover {
  background-position: 268px 0px !important;
}
*/
#sohp-circle-1,#sohp-circle-2,#sohp-circle-3 {
	float: left;
	margin-top: 260px;
	width: 204px;
	margin-right: 80px;
}
#sohp-circle-1 {
	margin-left: 210px;
}
#sohp-circle-1 span, #sohp-circle-2 span, #sohp-circle-3 span {
  width: 204px;
  height: 246px;
  display: block;
  outline-style: none;
}
/* ---- don't need this for now.
#sohp-circle-1 a:hover,#sohp-circle-2 a:hover,#sohp-circle-3 a:hover {
  background-position: 204px 0px !important;
}
*/

#sohp-page-wrapper #new-home-footer {
	margin-left: 160px;
}
#sohp-signup {
	float: left;
	margin-top: 30px;
	margin-left: 510px;
}
#sohp-signup a {
	background-color: #0088CE;
    background-image: linear-gradient(bottom, rgb(0,90,186) 0%, rgb(0,185,226) 100%);
	background-image: -o-linear-gradient(bottom, rgb(0,90,186) 0%, rgb(0,185,226) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(0,90,186) 0%, rgb(0,185,226) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(0,90,186) 0%, rgb(0,185,226) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(0,90,186) 0%, rgb(0,185,226) 100%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, rgb(0,90,186)),
		color-stop(1, rgb(0,185,226))
	);
    border: 1px solid #333;
	border-radius: 5px 5px 5px 5px;
    cursor: pointer;
    display: inline-block;
    font-size: 21px;
    padding: 8px 50px;
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
    color: #FFFFFF;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.6);
}
#sohp-signup a:hover {
	background-color: #17a4eb;
	background-image: linear-gradient(bottom, rgb(38,114,196) 0%, rgb(38,195,230) 100%);
	background-image: -o-linear-gradient(bottom, rgb(38,114,196) 0%, rgb(38,195,230) 100%);
	background-image: -moz-linear-gradient(bottom, rgb(38,114,196) 0%, rgb(38,195,230) 100%);
	background-image: -webkit-linear-gradient(bottom, rgb(38,114,196) 0%, rgb(38,195,230) 100%);
	background-image: -ms-linear-gradient(bottom, rgb(38,114,196) 0%, rgb(38,195,230) 100%);
	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0, rgb(38,114,196)),
		color-stop(1, rgb(38,195,230))
	);
    color: #fff;

}
#sohp-login {
	float: left;
	margin-top: 10px;
	margin-left: 580px;
	font-size: 15px;
	color: #fff;
}
#sohp-login a{
	font-weight: bold;
	color: #fff;
}
#sohp-page-wrapper #new-home-footer-left {
	width: 650px;
}
#sohp-page-wrapper #new-home-footer-right {
	margin-right: 90px;
}
#sohp-page-wrapper #new-home-footer .title {
	font-size: 13px;
	font-weight: bold;
	color: #999;
}
#sohp-page-wrapper #new-home-footer-left li {
	font-size: 13px;
	border: 0px;
	padding: 3px 0;
}
#sohp-page-wrapper #new-home-footer a {
	color: #999 
}
#sohp-page-wrapper #new-home-footer-left .block {
	width: 160px;
}
#sohp-page-wrapper .follow-us li.facebook a{
	background: transparent url('../images/sohp/social/icn_facebook_27x27.png') 0 0 no-repeat;
	width: 27px;
}
#sohp-page-wrapper .follow-us li.facebook a:hover,
#sohp-page-wrapper .follow-us li.twitter a:hover,
#sohp-page-wrapper .follow-us li.youtube a:hover,
#sohp-page-wrapper .follow-us li.rss a:hover {
	background-position: -27px 0px;
}
#sohp-page-wrapper .follow-us li.twitter a{
	background: transparent url('../images/sohp/social/icn_twitter_27x27.png') 0 0 no-repeat;
	width: 27px;
}
#sohp-page-wrapper .follow-us li.youtube a{
	background: transparent url('../images/sohp/social/icn_youtube_27x27.png') 0 0 no-repeat;
	width: 27px;
}
#sohp-page-wrapper .follow-us li.rss a{
	background: transparent url('../images/sohp/social/icn_rss_27x27.png') 0 0 no-repeat;
	width: 27px;
}
#sohp-page-wrapper #new-home-footer-message {
	font-size: 12px;
	color: #999;
	float: left;
	margin-left: 160px;
}

.not-logged-in.page-sohp-2 #header {
	background: url("/sites/all/themes/zinchus/images/zinch_header_bg.png") repeat-x scroll 0 0 #4A5459;
    color: #FFFFFF;	
}

.page-sohp-2 #logo {
	padding: 0px;
}

#sohp-header-login a {
	float: right;
	height: 50px;
	line-height: 50px;
}