body {
	color: #222;
	font-family: "Open Sans", sans-serif, Arial, Helvetica;
	font-size: 100%;
	font-weight: 400;
	line-height: 1.5;
	background: #fff;
	-webkit-font-smoothing: antialiased;
}

html { overflow-y: scroll; }

/*Accessibility*/
.accessible {
	padding: 10px;
	position: absolute;
	left: -9999em;
	background: #fff;
}
.accessible ul {
	text-align: right;
}
.accessible ul li {
	margin: 0 0 0 .5em;
	display: inline;
}
.accessible.noscript {
	position: relative;
	left: 0;
}

/*Core Layout*/
.wrap {
	width:100%;
	max-width: 1170px;
	margin:0 auto;
}
#left-col {
	width: 24%;
	float: left;
}
#right-col {
	width: 73%;
	float: right;
}

/*Header*/
#header {
	background:#6c4195 url('../images/hdr-graphic.png') center center no-repeat;
}
#logo {
	position: absolute;
	top: 21px;
	z-index: 10;
	width:180px;
}
#hdr-main {
	padding:25px 0 25px 230px;
}
#hdr-main h1 {
	line-height: 1;
	font-weight: 400;
	font-family: 'PT Sans Caption', sans-serif;
	font-size:1.3em;
	padding:13px 17px;
	margin:0;
	color:#fff;
	float:left;
	text-shadow: 0px 0px 10px rgba(0, 0, 0, .5);
	text-transform: uppercase;
	border-radius: 5px;
}

/*Search*/
#search {
	font-size: .75em;
	text-align: right;
	width: 250px;
	float:right;
	margin-top:4px;
}
#search form {
	position: relative;
}
#search label {
	display: none;
}
#search input[type=text] {
	padding: 0 30px 0 10px;
	font-family: 'Open Sans', sans-serif;
	height: 35px;
	width: 225px;
	background:rgba(255,255,255,.95);
	border:1px solid #444;
	box-sizing:border-box;
	outline-color:#582c83;
}
#search input[type=submit] {
	text-indent: -9999em;
	width: 20px;
	height: 30px;
	background: url('../images/icon-search-input.png') no-repeat center center;
	cursor: pointer;
	position: absolute;
	right:8px;
	top:3px;
}

::-webkit-input-placeholder {
   opacity: .4;
   font-weight: bold;
}

:-moz-placeholder { /* Firefox 18- */
   opacity: .4;
   font-weight: bold;
}

::-moz-placeholder {  /* Firefox 19+ */
   opacity: .4;
   font-weight: bold;
}

:-ms-input-placeholder {  
   opacity: .4;
   font-weight: bold;
}

/*Main Nav*/
#navigation {
	box-shadow: 0px 0px 10px rgba(0,0,0,.5);
	background:#8A945B;
	position: relative;
	z-index: 2;
}
#navigation .wrap {
	box-sizing:border-box;
}
#navigation ul.mainnav > li {
	font-size: .95em;
	float:left;
	list-style-type: none;
	position: relative;
}
#navigation ul.mainnav > li a {
	padding: .6em 1.5em;
	color: #fff;
	text-decoration: none;
	display: block;
	font-weight: 400;
	text-transform: uppercase;
}
#navigation ul.mainnav > li:hover,
#navigation ul.mainnav > li a:hover,
#navigation ul.mainnav > li a:focus {
	background: #6c4195;
	color: #fff;
}

#navigation ul.mainnav > li:hover > ul.subnav {
	left:0;
}

#navigation ul.subnav {
	position: absolute;
	z-index:1;
	top:100%;
	left:-9999px;
	width:225px;
	background:#f1f1f1;
	-webkit-box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.5);
	-moz-box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.5);
	box-shadow: 0px 3px 7px 0px rgba(0,0,0,0.5);
}
#navigation ul.subnav.navopen {
	left:0;
}
#navigation ul.subnav li a {
	color:#000;
	font-size:.8em;
	padding:9px;
}

#hamburger { display: none; cursor: pointer; }
#hamburger span { display: none; }
#hamburger:after {
	content: "\f0c9";
	font-family: FontAwesome;
	display: inline-block;
}

/*Sidebar*/
#cl-menu ul.nav li {
	list-style-type: none;
}
#cl-menu > ul.nav > li {
	border-bottom:1px solid #23074B;
}
#cl-menu > ul.nav > li:last-child {
	border-bottom:none;
}
#cl-menu ul.nav li a {
	padding: 3px 8px 3px 0px;
	font-size: .8em;
	color: #444;
	display: block;
	text-decoration: none;
}
#cl-menu > ul.nav > li > a {
	padding-top:10px;
	padding-bottom:10px;
}
#cl-menu > ul.nav > li > a:before {
	content:"\f105";
	font-family: FontAwesome;
	float:left;
	margin-right:10px;
}
#cl-menu > ul.nav > li.active > a:before {
	content:"\f107";
	margin-right:7px;
}
#cl-menu > ul.nav > li.active > ul.nav > li.active > ul.nav {
	border-top:1px solid #ccc;
	margin-top:0;
}
#cl-menu ul.nav ul.nav {
	padding-left:23px;
	margin-top:-6px;
	font-size:15px;
}
#cl-menu > ul.nav > ul.nav {
	margin-bottom:5px;
}
#cl-menu ul.nav ul.nav ul.nav {
	padding-left:13px;
}
#cl-menu ul.nav ul.nav ul.nav li a {
	padding:2px 8px 2px 0;
}
#cl-menu > ul.nav > li.active > ul.nav > li:last-child {
	margin-bottom:10px;
}

#cl-menu ul.nav li.self > a,
#cl-menu ul.nav li.active > a { font-weight: 600; color:#582c83; }

#mobile-nav-hdr {
	display: none;
	background:#582c83;
	padding:10px;
	cursor: pointer;
	font-size:.9em;
	margin-top:0px;
	color:#fff;
}
#mobile-nav-hdr:before {
	content:"\f0c9";
	font-family:FontAwesome;
	margin-right:10px;
}

/*OnThisPage Sidebar*/

#sidebar-otp {
	background:#fff;
	margin:15px 0;
	padding:0 0 1em 0;
}
#sidebar-otp div.otp-title {font-size: 1em; margin: 0 0 .25em 0; font-weight: 600; background: #354458; padding:10px 15px; color:#fff; }
#sidebar-otp p {font-size: .85em;}
#sidebar-otp ul {font-size: .85em; list-style: disc; margin: 0; padding:0 .4em 0 1em;}
#sidebar-otp ul li ul {font-size: 1em; margin: 0 0 .5em .5em;}
#sidebar-otp ul li ul li ul li { list-style-type: circle; }
#sidebar-otp ul li:first-child, #sidebar ul ul li:first-child {margin-top: .5em;}
#sidebar-otp  p.divider {
    border: dashed 1px #AAA;
    margin: 5px 0px;
}
#sidebar-otp sub {
    font-size: 0.6em;
    font-style: italic;
}
#sidebaredit, .onthispageedit {
    text-decoration: none;
}
#sidebar-otp ul li {
	list-style-type: none;
	font-weight: 600;
}
#sidebar-otp ul li ul li {
	list-style-type:disc;
	font-weight: normal;
}

/*OnThisPage Inline */
.onthispage .otp-title {
	font-weight:600;
	margin-bottom:5px;
}
#content .onthispage ul {font-size: .85em; list-style: disc; margin: 0; padding:0 .4em 0 1em;}
#content .onthispage ul li ul {font-size: 1em; margin: 0 0 .5em .5em;}
#content .onthispage ul li ul li ul li { list-style-type: circle; }
#content .onthispage ul li {
	list-style-type: none;
	font-weight: 600;
}
#content .onthispage ul li ul li {
	list-style-type:disc;
	font-weight: normal;
}

/*Breadcrumb*/
#breadcrumb {
	margin:20px 0 15px 0;
	min-height: 39px;
}
#breadcrumb .wrap {
	box-sizing:border-box;
}
#breadcrumb ul {
	margin: 0 0 15px 0;
}
#breadcrumb ul li {
	padding: 0;
	font-size: .7em;
	display: inline;
	text-transform: uppercase;
}
#breadcrumb ul li a {
	padding: 0;
	text-decoration: none;
	color:#000;
}
#breadcrumb .crumbsep {
	padding:0 .5em;
}

/*Footer*/
#footer {
	margin-top:40px;
	background: #424242;
	padding:20px 0 15px;
	font-family:"PT Sans Caption", sans-serif;
	color:rgb(240,240,240);
}
#footer a:hover {
	text-decoration: underline;
}
#footer h3 {
	color:rgb(240,240,240);
	font-size:28px;
	line-height: 34px;
	margin-bottom:8px;
	font-weight: 400;
}
ul#foot-nav-top li {
	float:left;
	display: inline-block;
	text-transform: uppercase;
	line-height: 18px;
	padding:0 20px;
}
ul#foot-nav-top li:first-child {
	padding-left:0;
	padding-bottom:0px;
}
ul#foot-nav-top li a {
	color:rgb(240,240,240);
	text-decoration: none;
	font-size:.9em;
}

.spacer {
	width: 100%;
	height: 3px;
	box-shadow: 0px 0px 2px rgba(255,255,255,.25);
	background-color: rgb(50,50,50);
}

.row {
	margin-top:20px;
	margin-bottom:20px;
}

.columns {
	width:20%;
	float:left;
	padding:0 1%;
	box-sizing:border-box;
}
#footer h4 {
	color:rgb(240,240,240);
	font-size:21px;
	line-height: 30px;
	margin-bottom: 4px;
	font-weight: normal;
}
.columns ul li {
	display: block;
	padding:0 0 6px;
	line-height:18px;
	font-size:.8em;
}
.columns ul li a {
	color:rgb(240,240,240);
	text-decoration: none;
}

.address ul.visit {
	float:right;
	font-size:.8em;
}
.address ul.visit li {
	padding: 0px 0px 12px;
	text-align: center;
	color: #DCDCDC;
	font-size: 1.2em;
	border-bottom: 1px solid rgb(150,150,150);
	margin: 0 0 20px;
	display: block;
}
.address ul.visit li:first-child {
	padding: 12px 0px 12px;
	border-top: 1px solid rgb(150,150,150);
}
.address ul.visit a {
	color:rgb(220,220,220);
	text-decoration: none;
}
ul.visit span {
	text-transform: uppercase;
	font-size: 2em;
	float: none;
	line-height: 1;
	display: block;
}
#footer ul.visit a {
	text-decoration: none;
}

ul#social span {
	display: none;
}
ul#social li {
	float:left;
	width:16.66667%;
}
#footer ul#social li a {
	text-decoration: none;
}
ul#social li a:before {
	font-family: FontAwesome;
	font-size:2em;
}
ul#social li#facebook a:before { content:"\f082"; }
ul#social li#flickr a:before { content:"\f16e"; }
ul#social li#twitter a:before { content:"\f081"; }
ul#social li#linkedin a:before { content:"\f08c"; }
ul#social li#vimeo a:before { content:"\f194"; }
ul#social li#instagram a:before { content:"\f16d"; }
ul#social li#youtube a:before { content:"\f16a"; }

/*Content*/
#content-wrapper {
	margin: 20px auto;
	width: 100%;
	max-width: 1000px;	
}
/*General Typography*/
#content {
	  font-family: "Calibri", Arial, Helvetica, sans-serif;
}
h1 {
	padding: 0 0 15px;
	margin:0;
	font-size: 2em;
	font-weight: 600;
	color: #582c83;
}
#content a {
	text-decoration: underline;
	color:#582c83;
}
h2,h3,h4,h5,h6 { color:#582c83; font-weight: 400;}
#content h2 {font-size: 1.4em; margin: 1em 0 .5em 0; }
#content h3 {font-size: 1.2em; margin: 1em 0 .25em 0; }
#content h4 {font-size: 1em; margin: 1em 0 .25em 0; }
#content h5 {font-size: 1em; margin: 1em 0 .25em 0; }
#content h6 {font-size: 1em; margin: 1em 0 .25em 0; }
#content p, #content dl {font-size: .9em; margin: 0 0 1em 0;}
#content p.introtext { font-weight: 600; font-size:.92em; }
#content ul {font-size: .9em; list-style: disc; margin: 0 0 .5em 25px;}
#content ol {font-size: .9em; margin: 0 0 .5em 30px;}
#content ol li, #content ul li {margin: 0 0 .5em 0;}
#content li br {margin: 0 0 .5em 0;}
#content ul li ul, #content ol li ol {font-size: 1em;}
#content ol li ul, #content ul li ol {font-size: 1em;}
#content li p, #content ul table, #content ol table {font-size: 1em;}
#content sup {font-size: .8em; vertical-align: super; line-height: 1;}
#content sub {font-size: .8em; vertical-align: sub; line-height: 1;}
#content hr {display: block; height: 1px; border: 0; border-top: 1px solid #ccc; margin: 1em 0; padding: 0;}

/*Nested Ordered Lists*/
#content ol:not([type]) {list-style: decimal;}
#content ol ol:not([type]) {list-style: lower-alpha;}
#content ol ol ol:not([type]) {list-style: lower-roman;}
#content ol ol li:first-child, #content ol ol ol li:first-child {margin-top: .5em;}

/*Nested Unordered Lists*/
#content ul ul li:first-child, #content ul ul ul li:first-child {margin-top: .5em;}

/*Tightlist*/
#content ul.tightlist {list-style: none; margin: 0 0 .5em 0;}
#content ul.tightlist ul {list-style: none; margin: 0 0 0 25px;}
#content ul.tightlist li {margin: 0;}
#content ul.tightlist ul li:first-child, #content ul.tightlist ul ul li:first-child {margin-top: 0;}

/*Blockquotes*/
#content blockquote {margin: 0 0 .25em 0; border-left: 5px solid #ccc; padding: 0 0 0 .5em; font-style: italic;}
#content blockquote p {line-height: 1.5;}
#content blockquote cite {display: block; font-size: .75em;}
#content blockquote cite:before {content: "\2014 \0020";}
#content blockquote cite a, blockquote cite a:visited, blockquote cite a:visited {color: #ccc;}

/*Tables*/
#content table {font-size: .75em; margin: 0 0 1em 0; width: 100%; border: 1px solid #ccc;}
#content th {padding: .3em .75em; vertical-align: top; font-weight: bold; border-bottom: 1px solid #ccc; text-align: left; background: #f1f1f2;}
#content td {border-top: 1px solid #ccc; padding: .3em .75em; vertical-align: top;}
#content td img {vertical-align: top;}
#content td p, #content td li {margin: 0; font-size: 1em;}


/* Custom tables */
#content table.tbl_igsoptions .column0,
#content table.tbl_igsoptions .column1,
#content table.tbl_igsoptions .column2 {
	width:33.33333%;
	text-align: center;
}

/*Two Columns*/
#content .cola {
	width: 48%;
	float: left;
}
#content .colb {
	width: 48%;
	float: right;
}

/*Structured Content*/
#content tr.areaheader td,
#content td.areaheader,
#content tr.listsum td,
#content tr.plangridtotal td,
#content tr.plangridsum td {
	font-weight: bold;
}
#content tr.odd {
	background: #f7f7f7;
}
#content tr.orclass td {
	padding-top: 0;
	border-top: none;
}
#content tr.orclass td.codecol {
	padding-left: 2em;
}
#content td.hourscol,
#content th.hourscol {
	text-align: right;
}
#content .hiddencourselist {
	display: none;
}


/* Courselist */
#content table.sc_courselist .codecol { width:23%; }
#content table.sc_courselist .hourscol { width:12%; }

/*Plan Grid*/
#content .plangridyear th {
	border-top: 1px solid #ccc;
}

/*Footnotes*/
#content .sc_footnotes {
	border: 0;
}
#content .sc_footnotes td {
	padding: 0 0 .75em 0;
	border: 0;
}
#content .sc_footnotes td.symcol {
	width: 15px;
	font-size: .8em;
}

/*Course Blocks*/
#content p.courseblocktitle {
	margin: 0;
	font-weight: bold;
}

/* Calendar tables */
#content table.sc_sctable.tbl_calendar th.column0 {
	width:29%;
}

/*Tabs*/
#content #tabs {
	margin: 0 0 15px 0;
}
#content #tabs ul {
	margin: 0;
}
#content #tabs ul li {
	float: left;
	list-style-type: none;
}
#content #tabs ul li a {
	color:#000;
	padding: 9px 18px;
	background: #f3f3f3;
	display: block;
	text-decoration: none;
}
#content #tabs ul li.active {
	border-top:3px solid #582c83;
}
#content #tabs ul li.active a {
	font-weight: 600;
	color: #fff;
	background:#6c4195;
	padding-top:6px;
}

/*A-Z Index*/
#content ul.letternav {
	margin: 0 0 1em 0;
	list-style: none;
}
#content ul.letternav li {
	text-transform: uppercase;
	font-weight: bold;
	float: left;
	margin: 0 1px 1px 0;
}
#content ul.letternav li a,
#content ul.letternav li.inactive {
	padding: .25em .6em;
	color: #fff;
	text-align: center;
	text-decoration: none;
	display: block;
	width: .9em
	float: left;
	border: none;
	background: #6c4195;
}
#content ul.letternav li.inactive {
	background: #999;
}
#content ul.letternav li a {
	color: #fff;
	text-decoration: none;
	border: none;
}
#content ul.letternav li a:hover,
#content ul.letternav li a:active,
#content ul.letternav li a:focus {
	background: #555;
}

/*Image Floats*/
#content img.imgleft {
	padding: 0 10px 10px 0;
	float: left;
}
#content img.imgright {
	padding: 0 0 10px 10px;
	float: right;
}

/*Archive Message*/
#content .archive-message p {
	padding: .5em;
	border: 1px solid #ccc;
}

/*Shared Message*/
#content .shared-message p {
	padding: .5em;
	border: 1px solid #ccc;
}

/*Google Search Results*/
#content .gcs-pagination {
	text-align: left;
}
#content .gcs-pagination a,
#content .gcs-pagination .current {
	padding: 5px 12px;
	font-size: 0.75em;
	color: #333;
	text-decoration: none;
	background-color: #f5f5f5;
	background-image: none;
	background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
	background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
	background-image: linear-gradient(to bottom, #ffffff, #e6e6e6);
	border: 1px solid #bbbbbb;
	display: inline-block;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#content .gcs-pagination .current {
	color: #fff;
	background-color: #999;
	background-image: none;
}

/*Google Search Results*/
#content .gcs-url {
	overflow: hidden;
	text-overflow: ellipsis;
	display: inline-block;
	width: 100%;
}
#content .gcs-total  {
	margin: 0 0 1em 0;
	font-style: italic;
}
#content .gcs-result h3 {
	margin: 0;
}

/*To Top*/
a#totop {
	display: block;
	color: #fff;
	position: fixed;
	bottom: 15px;
	right: 15px;
	background: #6c4195;
	text-indent: -9999em;
	width: 43px;
	height: 43px;
	border-radius: 3px;
	-moz-border-radius: 3px;
	-webkit-border-radius: 3px;
	z-index: 999;
}
a#totop:after {
	content: "\f077";
	font-family: FontAwesome;
	font-size: 1.2em;
	text-indent: 0;
	text-align: center;
	color: white;
	display: block;
	position: absolute;
	bottom: 9px;
	right: 12px;
}

/*Print Popup*/
a#print-btn {
	display: block;
	float:right;
}
#print-button {
	margin: 8px 1px 0 0;
	padding: 5px 10px;
	font-size: .9em;
	color: white;
	display: inline-block;
	background: #354458;
	float: right;	
}
#print-button:before {
	margin-right: 5px;
	content: "\f02f";
	font-family: FontAwesome;
	display: inline-block;
	
}
#print-dialog {
	padding: 0;
	width: 350px;
	text-align: left;
	background: #fff;
	border: 1px solid #ccc;
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#print-dialog.screen {
	font-size: 100%;
}
#print-dialog .print-header {
	padding: 10px;
	font-size: 1.5em;
	border-bottom: 1px solid #ccc;
}
#print-dialog .print-body {
	padding: 20px 10px;
}
#print-dialog .print-option {
	padding: 0 0 10px 0;
}
#print-dialog .print-option a {
	font-weight:600;
	text-decoration: none;
	color:#582c83;
}
#print-dialog .print-option p {
	margin: 0;
}
#print-dialog .buttons {
	padding: 10px;
	background:#8A945B;
}
#print-dialog .cancel a {
	padding: 5px 12px;
	display: inline-block;
	font-size: 16px;
	line-height: normal;
	color: #333;
	text-align: center;
	cursor: pointer;
	text-decoration: none;
	float: right;
	border: 1px solid #ebebeb;
	background-color: #e6e6e6;
	background-image: -moz-linear-gradient(white, #e6e6e6);
	background-image: -o-linear-gradient(white, #e6e6e6);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, white), color-stop(1, #e6e6e6));
	background-image: -webkit-linear-gradient(white, #e6e6e6);
	background-image: -ms-linear-gradient(white, #e6e6e6);
	background-image: linear-gradient(white, #e6e6e6);
	border-radius: 4px;
	-moz-border-radius: 4px;
	-webkit-border-radius: 4px;
}
#print-dialog.noscript {
	display: block;
	position: relative;
}
@media only screen and (max-width: 767px) {
	#print-dialog {
		width: 90%;
	}
}

/*Clearfix*/
.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}
.clearfix {display: inline-block;}
.widthfix {box-sizing: border-box; -moz-box-sizing: border-box;}

/* Hides from IE-mac \*/
* html .clearfix {height: 1%;}
.clearfix {display: block;}
/* End hide from IE-mac */