/* Layout
 * ------
 * Using a negative margin technique, adapted from ZEN. The page is loaded by this order:
 *
 * 1. Header
 * 2. Content
 * 3. Navigation menus
 * 4. Sidebar Left
 * 5. Sideabr Right */
/* remove 'auto' and the width to switch to a fluid width */
/* line 15, ../sass/layout.sass */


/* using sticky footer idea from this site http://www.htmltutorialsandtips.com/css-sticky-footer/ */

html, body 
{
	/*sticky footer rules*/
	height: 100%; 
}

img
{

}

#page {
  width: 960px;
  margin: 0 auto; 
  background: #fff;  
  overflow: hidden;
  
  /*sticky footer rules*/
  position: relative; 
  min-height: 100%;
 
}

#uofa_global_header
{
	width: 960px;
	height: 34px;
	background: #999;
	position: relative;
	overflow: hidden;
}

#uofa_global_logo
{
	position: absolute;
	left: 0;
	top: -5px;
}

#uofa_global_logo_uasci
{
	position: absolute;
	right: 0;
	top: -5px;
}


#header
{
	width: 924px;
  	margin-left: 18px;
	height: 115px;
  	clear: both;
	position: relative;
	overflow: visible;
}

/* SUBMENU NAV LINKS UPPER RIGHT HEADER */
#uofa_utility_menu
{
	position: relative;
	width: 924px;  	
	height: 25px;
	overflow: visible;
	margin-top: 7px;
}

#uofa_utility_links
{
	position: absolute;
	height: 23px;
	text-align: right;
	right: 60px;
	margin-top: 1px;
	
}

#uofa_utility_socialmedia
{
	position: absolute;
	height: 23px;
	text-align: right;
	right: 0;
}


#uofa_header_logo
{
	width: 101px;
	height: 115px;
	position: absolute;
	left: 0;
	top: 23px;	
}

#uofa_global_nav_container
{
	width: 960px;
	clear: both;
	position: relative;
	overflow: visible;	
	border-bottom: 1px solid #eee;
	z-index: 2;/* fix IE7 z-index bug */

}


#uofa_global_nav
{
	width: 824px;
	height: 38px;
	margin-left: 18px;
	clear: both;
	position: relative;
	overflow: visible;	
}







#main
{
  width: 924px;
  margin-left: 18px;
  clear: both;
  position: relative;
  overflow: hidden;
  
  	/*sticky footer rules*/
	padding-bottom: 220px;
}

/* Layout rules. (Disclaimer: do not change if you're not sure you know what you're doing.) */
/* line 20, ../sass/layout.sass */
#content {
  float: left;
  width: 570px;
  padding: 0; 
  background: transparent;
  z-index: 1; /* fix IE7 z-index bug */
	
}

#content-inner
{
	width: 570px;
}

#content-inner.homepage_layout
{
	margin-top: -5px;
	*margin-top: 0; /* IE7 and below hack */
}


/* line 26, ../sass/layout.sass */
.sidebar {
  float: left; 
  
  }

/* line 29, ../sass/layout.sass */
#sidebar-second {
  float: right; 
  width: 320px;
  background: #ddd;
  }


/* line 32, ../sass/layout.sass */
#footer {
  float: none;
  clear: both; 
  overflow: hidden;
  }

/* Layout Helpers */
/* line 37, ../sass/layout.sass */
#header,
#footer,
.mission,
.breadcrumb,
.node {
  clear: both; }


/* breadcrumb width */
.breadcrumb
{
	width: 924px;
	margin-left: 18px;
	padding: 10px 0;
	background: #eee;
	clear: both;
}





/* Sidebars width
 * --------------
 * Changing the width of the sidebars is dead easy, just change the
 * values below corresponding to the sidebar you want to modify.
 * Make sure you keep negative values as negative values.
 * For example, if I want to increase the width of the left sidebar
 * to 300px, I would have to change each '190' to '300'. */
/* line 55, ../sass/layout.sass */
.two-sidebars .center,
.sidebar-first .center {
  margin-left: 190px; }

/* line 59, ../sass/layout.sass */
#sidebar-first {
  width: 190px;
  margin-right: -190px; }

/* line 65, ../sass/layout.sass */
.two-sidebars .center,
.sidebar-second .center {
  margin-right: 200px; }

/* line 69, ../sass/layout.sass */
#sidebar-second 
{
  width: 320px; 
  background: #999;
  }


/* Columns Inner
 * -------------
 * You can change the padding inside the columns without changing the
 * width of them by just usinbg the INNER div of each column */
/* line 76, ../sass/layout.sass */
.inner {
  padding: 0; }

/* Navigation styles
 * -----------------
 * The navigation is loaded after the content, so we need to make space
 * for it, equal to its height, so if you change the height of the navigation,
 * remember to adapt the margin top of the content and sidebars. */
/* line 84, ../sass/layout.sass */
#navigation {
  float: left;
  margin-left: 0;
  margin-right: -100%;
  padding: 0;
  width: 100%;
  height: 40px; }

/* line 94, ../sass/layout.sass */
.with-navigation #content,
.with-navigation .sidebar {
  margin-top: 40px; }
