/* Styling for elements defined in footer.jsp */

/* Custom changes to triptych area 
 *
 * DD note:
 * See http://stackoverflow.com/questions/6865194/fluid-width-with-equally-spaced-divs
 * for notes on getting the horizontal spacing of the boxes even
 */
footer {
	margin: 0;
	padding: 0;
	width: 100%;
	height: auto;
	background-color: #E3E4E6 !important;
}

/*triptych*/

footer #triptych-column-container {
	position:relative;
}

footer #triptych-columns {
	position: relative;
	clear: both;
	margin: 1em auto 1em auto;
	padding: 0;
	min-width: 0;
	max-width: 980px;
	width: auto;
 /* height: 100%;   /* DD: use height:auto in case parent gets a different height somehow */
	height: auto;
	font-size: 1.0em;
	/* DD note: the following are to get even horizontal spacing */
	text-align: justify;
	-ms-text-justify: distribute-all-lines;
	text-justify: distribute-all-lines;
}

footer .column {
	min-height: 170px;
}

footer .column, 
footer .column a {
	color: #DDDDDD;
}

footer .column a:link,
footer .column a:visited {
	color:#FFFFFF;
}
footer .column.triptych_left {
  background-color: #06778F;
	margin-right: 0;
	max-width:25%;
}
footer .column.triptych_center {
	background-color: #81B2C0;
	max-width:47%;
}
footer .column.triptych_center div.triptych_logos {
	float:right;
	height:30px;
}
footer .column.triptych_center div.triptych_logos img {
	position: relative;
	height: 24px;
	top: -4px;
	float:right;
}
footer .column.triptych_right {
  background-color: #034250;
	max-width:25%;
}

footer .column h2 {
	color: #FFFFFF;
	font-size: 1.0em;
	font-style: normal;
	letter-spacing: 0.1em;
	margin: 10px;
	padding: 0 0 5px 0;
	text-transform: uppercase;
	border-bottom: 2px solid #CCCCCC;
	max-width: 95%;
}
footer .column ul {
	margin: 10px;
	font-family: "UbuntuItalic";
}

footer .column ul li {
	margin: 8px 0;
}

footer .column ul.follow-icons {
	font-size: 0.9em;
}

footer .column ul.follow-icons li {
	margin: 7px 0;
}

footer .column ul li b {
	font-size: 0.8em;
	font-family: "UbuntuLight";
}

footer .column ul li img {
	display: block;
	margin-left: auto;
	margin-right: auto;
	padding: 0;
	float: none;
}

footer .column ul.tabular.half li {
	width: 33%;
	display:block;
}

footer .column ul.tabular.full li {
	margin: 2px 0px 3px 0px;
	display:block;
}

footer .column ul.tabular.full {
	margin-bottom: 0;
}


/* -----------------------------------------------------------------------
 * "Who are we" box from the front page moves into the footer (all pages) at
 * screen widths less than 700px. These styles are defined here so that every
 * page picks them up. There may be a better location... DD 17Dec2013
 */

/* "Who we are" lives in a hidden fourth column in the footer ("column_extra")
 * until the screen width drops to 700px.
 */
footer .column_extra {
	display: none;
}

/* Who we are box styling */
#who_are_we {
	margin: 0 0.2em 0 0.2em;
	width: 29%;
	width: 28.4%;
	height: 238px;
	top: 0;
	float: right;
	background: #06778F;
	background-repeat: no-repeat;
	background-image: url("/images/logos/unilogo-200x290_shadow.png"); /* fallback */
	/*background-image: url("/images/logos/unilogo-200x290_shadow.png"), -webkit-gradient(linear, left top, right top, color-stop(0, #06778F), color-stop(1, #81B2C0)); /* Saf4+, Chrome */
	/*background-image: url("/images/logos/unilogo-200x290_shadow.png"), -webkit-linear-gradient(left, #06778F 0%, #81B2C0 100%); /* Chrome 10+, Saf5.1+ */
	/*background-image: url("/images/logos/unilogo-200x290_shadow.png"), -moz-linear-gradient(left, #06778F 0%, #81B2C0 100%); /* FF3.6+ */
	/*background-image: url("/images/logos/unilogo-200x290_shadow.png"), -ms-linear-gradient(left, #06778F 0%, #81B2C0 100%); /* IE10 */
	/*background-image: url("/images/logos/unilogo-200x290_shadow.png"), -o-linear-gradient(left, #06778F 0%, #81B2C0 100%); /* Opera 11.10+ */
	/*background-image: url("/images/logos/unilogo-200x290_shadow.png"), linear-gradient(to right, #06778F 0%, #81B2C0 100%); /* W3C */
}


#who_are_we p {
	font-family: UbuntuItalic;
	text-align: left;
	color: #E3E4E6;
	padding: 0.8em 0 0.8em 0;
	margin: 0;
	font-size: 1.3em;
}
#who_are_we a, #who_are_we a:link, #who_are_we a:hover {
	color: #034250;
}

#who_are_we p.welcome_head {
	font-size: 2em;
	padding: 0.5em 0 0.5em 0;
	color: #E3E4E6;
}

/* End Who we are --------------------------- */


/* Adjust footer text size at intermediate widths to keep column heights looking right */
@media screen and (max-width: 850px) and (min-width: 700px) {
	footer #triptych-columns {
		font-size:0.85em;
	}
}

