@charset "utf-8";
/* 
Abstract Management Base Style Sheet

Created by: Kyle Thompson
Created on: October 29 2012
Modified: February 22 2017
Version: 2.0

*/

/*****************************************************************
GENERAL STYLE
*****************************************************************/
/* font */
@import url('https://fonts.googleapis.com/css?family=Open+Sans');
/* layout */
* {
	margin: 0px;
	padding: 0px;
}
body {
	background: #fff;
	color: #000;
	font: 9pt Arial, Helvetica, sans-serif;
	/*font: 9pt 'Open Sans', Arial, Helvetica, sans-serif;*/
	height: 100%;
	min-width: 100%;
	overflow: auto;
	position: relative;
}

#wrapper {
	width: 1050px;
	max-width:1050px;
	min-width:900px;
	margin: 0px auto 20px; 
	position: relative;
	min-height: 100%;
	height: auto;
	-webkit-box-shadow: 0px 0px 5px 1px rgba(00, 00, 00, .5);
	box-shadow: 0px 0px 5px 1px rgba(00, 00, 00, .5);
}

/* general */
#boxes, #loading { display: none; }
#loading {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 2250;
	background: #efefef;
	opacity: 0.75;
}

#spinner {
	background: url('../image/loading.gif') no-repeat center lightgray;
	position: fixed;
	top: 50%;
	left: 50%;
	width: 80px;
	height: 55px;
	text-align: center;
}

/* elements */
a {
	/*font-family: 'Open Sans', sans-serif;*/
	color: #125B9E;
}
.btn, a.btn {
	color: #3279bb;
	background-color: #ddd;
}
a:hover, a.active {
	color: #3279bb;
	cursor: pointer;
	-webkit-transition:all .3s;
	transition:all .3s;
}
.btn:hover, .btn:active, .btn.active {
	background: #e8e8e8;
	box-shadow: none;
	-webkit-transition:all .3s;
	transition:all .3s;
}
ul, ol {
	list-style-type: none;
}

/* class */
.center { text-align: center; }
.left { text-align: left; }
.right { text-align: right; }
.required { color: red; }
.required-dynamic { float: left; display: inline-block; margin-right: 5px; }

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {

}

div.outer-element, div.inner-element {
	position: relative;
	clear: both;
}
div.inner-element {
	margin: 0 auto;
}

table.tablesorter th:last-child {
	width: 25px;
}

/*****************************************************************
HEADER
*****************************************************************/
/* layout */
#header {
	height: 170px; 
	position: relative; 
	border-bottom: 1px solid #999; 
	/*background: url("../images/bilingual-banner-041113-r2.jpg") no-repeat scroll 0 -1px transparent;*/
	background: #aaa;
 }
#inner-header {
	height: 100%;
}
#user {
	padding-right: 5px;
	position: absolute;
	text-align: right;
	top: 5px;
	right: 0;
	margin: 0;
	z-index: 10;
}
#user li {
	float: left;
	padding: 0 5px;
	border-right: 1px solid #125B9E;
}
#user li:last-child {
	border-right: none;
}
#user a {
	text-decoration: none;
}
#user a:hover {
	text-decoration: underline;
}

/* styles */
#header h1, #header h2 {
	margin: 0 20px 10px;
	font-size: 36px;
}
#header h2 {
	font-size: 18px;
}

/*****************************************************************
NAVIGATION
*****************************************************************/
/* layout */
#navigation {
	width: 285px;
	float: left;
	position: relative;
}
#navigation ul {
	margin-left: 10px;
}
#navigation li {
	display: block;
	margin: 3px 0px;
}
#navigation li a, .nav-link {
	border-radius: 5px;
	display: block;
	line-height: 1.8em;
	padding: 10px;
	font-size: inherit;
}
#navigation ul.main-nav li div.panel-heading {
	padding: 0px;
}
#navigation ul.main-nav li div.panel-heading a {
	background: #bbb;
	text-align: left;
}
#navigation ul.main-nav li div.sideSubNav {
	background: #dddddd;
	border-radius: 5px;
	margin: 0 auto 0;
	width: 95%;
}
#navigation ul.main-nav li div.sideSubNav ul {
	margin: 0px;
	padding: 2px 0px;
}
#navigation ul.main-nav li div.sideSubNav ul li {
	border-bottom: 1px solid #cccccc;
	margin: 0px 5px;
}
#navigation ul.main-nav li div.sideSubNav ul li:last-child {
	border-bottom: none;
}
#navigation ul.main-nav li div.sideSubNav ul li a {
	margin: 2px 0px;
	text-align: left;
	white-space: normal;
}

/*****************************************************************
CONTENT
*****************************************************************/
/* layout */
#main {
	padding: 10px 20px 0;
	position: relative;
	background: none repeat scroll 0 0 #FFFFFF;
	margin: 0 0 20px 300px;
	min-height: 375px;
}
@media print {
	#main {
		margin-right: 0;
	}
}

div.ui-sortable div.sortable ul.dropdown-menu a.btn-sm {
	color: #000000;
	text-align: left;
	padding: 5px;
	margin: 0 5px;
}
div.ui-sortable div.sortable ul.dropdown-menu a.btn-sm:hover {
	text-decoration: underline;
}

/* breadcrumb */
.navBreadcrumb{
	overflow: hidden;
	margin-bottom: 10px;
	position: relative;
}
.navBreadcrumb a.breadcrumb,
.navBreadcrumb span.breadcrumb {
	margin-bottom: 0px;
	display: inline-block;
}
.breadcrumb, a.breadcrumb {
	margin: 0 4px;
	color: #3279bb;
	background-color: #ddd;
}
.breadcrumb.current, a.breadcrumb.current, .breadcrumb.summary, a.breadcrumb.summary {
	font-weight: bold;
	text-transform: uppercase;
}
.breadcrumb.future, a.breadcrumb.future {
	font-style: italic;
}

.breadcrumb:hover, a.breadcrumb:hover, button:hover {
	-webkit-transition:all .3s;
	transition:all .3s;
}

/* navigation buttons */
/* by deafult, the top nav buttons are hidden, in code and css */
.top-navigation .navButtons { 
	display: none;
}

div.navButtons{
	text-align: right;	
}
.nav-link {
	display: inline;
	padding: 5px 20px;
	border: 1px solid #cccccc;
	margin: 5px;
}

div.navButtons button.nav-link:before,
div.navButtons button.nav-link:after {
}

div.navButtons #btnBack:before{
	/*
	content: "\e079";
	margin-right: 7px;
	*/
}
div.navButtons #btnNext:after{
	/*
	content: "\e080";
	margin-left: 7px;
	*/
}

/* general styles */
#main h1 {
	font-size: 24px;
	margin-top: 10px;
}
#main h2 {
	/*font-size: 18px;*/
	font-size: 160%;
	margin: 0 0 20px;
	font-weight: bold;
}

#main ul {
	margin-left: 20px;
	list-style-type: disc;
}
/* attribute for the options drop down */
#main ul.options, #main ul.options ul {
	list-style: none;
	margin-left: auto;
}
/* for author button display, alone not list */
p.author-option a.btn-sm {
	margin-right: 3px;
}
/*****************************************************************
FOOTER
*****************************************************************/
/* layout */
#footer{
	height: 165px;
	position: relative;
	border-top: 1px solid #2b4c5a;
	font-size: 87%;
}
#inner-footer{
	position: relative;
}
/* menu */
#footLinks {
	z-index: 10;
	clear: both;
	margin-left: 80px;
}
#footLinks li {
	float: left;
	padding: 0 8px;
	border-right: 1px solid #222222;
	color: #222222;
	richness: 0;
}
#footLinks li a, #footLinks li a.btn {
	color: #222222;
}
#footLinks li a:hover {
	text-decoration: underline;
}
#footLinks li:first-child {
	padding-left: 0;
}
#footLinks li:last-child {
	border-right: none;
}
/* branding */
#tagline {
	color: #2b4c5a;
	font-size: 200%;
	/*margin-top: 78px;*/
	margin-top: 0;
	margin-left: 80px;
	position: relative;
	line-height: 27px;
	padding-top: 75px;
}
span.subHeader{
	font-size: 90%;
}
.copyright{
	font-family: 'Open Sans', sans-serif;
	float: right;
	margin-right: 5px;
}
#ers {
	background: url("../image/myconferenceSuite-color.png") no-repeat 0px 0px;
	position: absolute;
	display: block;
	top: 5px;
	left: 0px;
	height: 155px;
	width: 75px;
	text-indent: -9999em;
	overflow: hidden;
}


/*****************************************************************
FORM
*****************************************************************/
/* Register Form */
#main form ul {
	list-style-type: disc;
}
#main form ol {
	list-style-type: decimal;
}

#main form li
{
    margin-left: 5%;
}
/* author */
.removeAuthor, .deleteThisAuthor {
	color:red;
	text-decoration:none;
	float:right;
	font-size:11px;
	padding-top:3px;
	cursor:pointer;
}
li .removeAuthor {
	float: none;
}
.removeAuthor:hover {
	text-decoration:underline;
}
.author-information {
	/*min-height: 50px;*/
	position: relative;
	display: block;
}
/*#main form ul.author-option {*/
#main ul.author-option {
	list-style-type: none;
	display: inline-block;
	float: right;
}
/*#main form ul.author-option ul {*/
#main ul.author-option ul {
	list-style-type: none;
	margin-left: 0;
}
#authDetails, #saveAuthor{display:none;}

.authDetails {
	padding: 25px;
	border-top: 1px solid #efefef;
}
div.authorToPaperDisplay {
	margin-bottom: 40px;
}
#authorAddButtons {
}
.author-name-display {
	float: left;
}

/* Modal Body Button Block to emulate Modal Footer */
.modal-body-button-block {
	padding: 19px 20px 20px;
	margin-top: 15px;
	text-align: right;
	border-top: 1px solid #e5e5e5;
}

.modal-body-button-block:before,
.modal-body-button-block:after {
	display: table;
	content: " ";
}

.modal-body-button-block:after {
	clear: both;
}

.modal-body-button-block:before,
.modal-body-button-block:after {
	display: table;
	content: " ";
}

.modal-body-button-block:after {
	clear: both;
}

.modal-body-button-block .btn + .btn {
	margin-bottom: 0;
	margin-left: 5px;
}

.modal-body-button-block .btn-group .btn + .btn {
	margin-left: -1px;
}

.modal-body-button-block .btn-block + .btn-block {
	margin-left: 0;
}

/*****************************************************************
PAGE SPECIFIC
*****************************************************************/
/* SUPPORT FORM */
#contact-wrapper {
	border: 1px solid #e2e2e2;
	background: #f1f1f1;
	padding: 20px;
}
#contact-wrapper div {
	margin: 1em 0;
}
#contact-wrapper label {
	display: block;
	font-size: 16px;
	width:auto;
}
#contact-wrapper label.error {
	display: block;
	float: none;
	font-size: 13px;
	width: auto;
	font-weight:normal;
	color:#F00;
}

#javascriptRequired {
	color: #fff;
}

/* form */
/* field wrapper */
div.field {
	margin: 30px auto;
}
/* option layout */
table.table-row td {
	padding: 2px 10px;
}

#alertModal div.alert {
	border-color: #ff0000;
	border-width: 5px;
	background: #333333;
	color: #ffffff;
}
#alertModal div.alert .close {
	float: right;
	font-size: 21px;
	font-weight: bold;
	line-height: 1;
	color: #ffffff;
	text-shadow: 0 1px 0 #ff0000;
	opacity: 1;
}

#alertModalHeader {
	font-size: 130%;
	font-weight: bold;
}
#alertModalContent {
	font-weight: bold;
	font-size: 110%;
}

/*****************************************************************
UNKNOWN
*****************************************************************/


/* DASHBOARD STYLE */
ul.viewAll{list-style:none; margin:20px 0px; padding:0px;}
ul.viewAll li{margin:5px 0px; }
ul.viewAll li a{display:block; color:#666; text-decoration:none; padding:5px; padding-left:30px;/*background:url(../images/pages.png) top left no-repeat;*/}
ul.viewAll li a:hover{ background-color:#efefef; color:#666; text-decoration:underline;}

span.passFail{color:#0C9;}
span.dividePassFail{color:#333;}

#imageProf{float:left;}
.seperate{display: block;padding: 10px;}
.editProf{float: left;margin-right: 9px;/*width: 114px;*/margin-top: 7px;}
.editProfBio{float: left;margin-right: 9px;width: 114px;margin-top: 7px;}
#groupProf{float: right;position: relative;top: -50px;width: 684px;}
#title{}
.editBox{float:right; width:183px; z-index:999999;position: relative;}
.editProfLab{float: left;font-size: 12px;margin-right: 6px;margin-top: 10px;}

/* additiona co-author header */

#additionalList{padding:0px;}
#additionalList ul{list-style:none; margin:0px; padding:0px;}
#additionalList ul li{display:block; margin:10px; padding:5px; border:1px dashed #cccccc;background: #e5eef6;}

/* jQueryUI sortable styles */
div.ui-sortable div.sortable{
	border:1px dashed #ffffff;
	padding:5px 10px;
}
div.ui-sortable div.sortable a.btn-sm{
	color:#ffffff;	
	padding: 5px 10px;
}
div.ui-sortable div.sortable:hover{
	border:1px dashed #cccccc;
	cursor:move;
}
div.ui-sortable-helper{
	background:#efefef;	
}
div.ui-sortable-placeholder{
	background:#efefef;
	border:1px dashed #999999;
	display:block;
	visibility:visible;
}
/* End jQueryUI sortable styles */

.cke_skin_kama .cke_charcount {
	display:block;
	float:right;
	margin-top:5px;
	margin-right:3px;
	color:#60676A;
}
.cke_charcount span.cke_charcount_count,
.cke_charcount span.cke_charcount_limit{font-style: italic;}


#modalSave h4.create { color: #333333; display: inline; background: white; border: none; font-size: 14px; margin: 0; padding: 0; font-weight: bold; margin-right: 45px;}

/* Additional - Kyle */
#page{
	box-shadow: none;
}
tr.hover td{
	border-bottom:1px solid #cccccc;
	padding:5px 0px;
}

.notificationBlock table{
	border:none;
	border-collapse:collapse;
}

.notificationBlock table td{
	padding:3px;
	border-bottom:1px solid #cccccc;
	border-top:none;
	border-left:none;
	border-right:none;
}

#sessionChange label{
	display:block;
	clear:both;
}
.sessionChangeArea ul {
	width: 100%;
}
.sessionChangeArea ul li {
	margin: 10px 0;
}

#changePass label{
	display:block;
}

#subPapers ul { 
	margin-left: 0px; 
}

/* Bootstrap fix. Removes mystery spacing after the first element within a nav */
#subPapers .nav:before,
#subPapers .nav:after {
	display: initial;
}

/* Bootstrap fix. Removes mystery spacing after the first row element */
div.summary .row:before,
div.summary .row:after {
	display: initial;	
}

div.summary .row {
	padding-top: 10px;
	padding-bottom: 20px;
	height:100%;
	overflow:hidden;
}

div.fieldDescription ul {
	list-style-type:circle;
	margin-left:20px;
}

/* schedule related stuff */
#schedule-list ul {
	margin-left: 0;
	list-style-type: none;
}
#schedule-list .nav-tabs > li:first-child {
	margin-left: 5px;
}
#schedule-list h3 {
	margin-top: 0;
	margin-bottom: 0;
}
#schedule-list h3 a {
	padding: 25px;
}
#schedule-list div.alert { 
	padding: 0; 
}
#search_area form {
	margin-bottom: 20px;
}

.tabarea {
	margin-bottom: 10px;
}

/*****************************************************************
END UNKNOWN
*****************************************************************/


/*****************************************************************
Individual
*****************************************************************/

.modal-header .close, 
.modal-footer .close {
	text-align: right;
	padding: 5px;
	margin: 0px !important;
	top: -7px;
	position: relative;
	font-size: 57px;
	line-height: 26px;
}

div.fieldValues span.ui-combobox, 
div.fieldValues .ui-autocomplete, 
div.fieldValues .ui-front ui-menu, 
div.fieldValues .ui-widget ui-widget-content {
	width: 100%;
}
div.fieldValues .ui-combobox-button {
	border: 1px solid #ccc;
	position: absolute;
	top: 1px !important;
	right: 1px !important;
	height: 32px !important;
}
div.fieldValues .ui-combobox-button:after {
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f103";
	color:#333333;
	font-size:18px;
	line-height:normal;
	/*
	*/
}
div.fieldValues ul.ui-autocomplete {
	/*
	top: 34px;
	left: -20px;
	width: 100%;
	box-shadow: 0px 3px 5px rgba(00,00,00,0.3);	
	*/
}
div.field .field-information-display {
	display: none;
}
.field-information-display {
	font-weight: bold;
	margin: 5px 25px;
	font-style: italic;
	color: #f00;
	border: 1px dotted #f00;
	padding: 10px;
}

ul.ui-autocomplete{
	height:400px;
	overflow-y: scroll;
	overflow-x:hidden;
	box-shadow: 0px 5px 5px rgba(00,00,00,0.5);
}
ul.ui-autocomplete li.ui-menu-item a:hover{
	background:#efefef;
}
ul.ui-autocomplete li.ui-menu-item{
	border-bottom: 1px solid #efefef;
	border-top: 1px solid #efefef;
	padding: 7px 5px;
}
ul.ui-autocomplete li.ui-menu-item:hover{
	background:#efefef;
	border-color:#cccccc;
}

span.ui-combobox{
	position: relative;
	height: 34px;
	display: block;
	margin-bottom: 15px;
}
span.ui-combobox input{
	position: absolute;
	width: 100%;
	display: block;
}
span.ui-combobox button{
	position: absolute;
	right: 1px;
	float: right;
	top: 1px;
	padding: 9px 10px;
	border: none;
	border-radius: 0px 4px 4px 0px;
	border-left:1px solid #cccccc;
}
span.ui-combobox button:focus{
	outline:none;
	background:#617574;
	color:#ffffff;
}
span.ui-combobox button:after{
	display: inline-block;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	content: "\f078";
	line-height: 14px;
}

/*****************************************************************
End Individual
*****************************************************************/


/*****************************************************************
Media Sizing
*****************************************************************/

@media (min-width:240px) and (max-width:900px){
	body,
	html{
		/*font-family: 'Open Sans', sans-serif;	*/
	}
	#wrapper{
		width:100% !important;
		padding:0px;
		min-width:100% !important;
		margin:0px;
		box-shadow:none;
	}
	#main{
		margin:0px !important;
		padding:0px;
		width:100%;
	}
	div.schedule-wrap .col-sm-10 h3{
		font-size: 130%;
		text-align: center;
		font-weight: 600;
		font-family: 'Open Sans';
		margin-top: 10px;
		line-height: 150%;
		border-bottom: 1px solid #cccccc;
		padding-bottom: 7px;
	}
	div.schedule-wrap .col-sm-10 p.speaker{
		text-align:center;	
	}
	div.schedule-wrap{
		padding: 10px;
		margin: 7px 0px;
	}
	
	
	div.schedule-wrap a.btn{
		width: 100%;
		padding: 5px 0px;
		margin-top: 10px;
	}
	div.add-btn{
		float:none;
		width:100%;
	}
	div.summarylink{
		float:none;	
		border:none;
	}
	#search_area{
		width: 100%;
		position: fixed;
		top: 46px;
		left: 0px;
		background: rgb(255, 255, 255) none repeat scroll 0% 0%;
		border-bottom: 1px solid rgb(204, 204, 204);
		padding: 10px;
		z-index: 99;
	}
	a.serach_btn{
		width: 100%;
		position: fixed;
		top: 0px;
		left: 0px;
		z-index: 99;
		border-radius:0px;
	}

	#schedule-list .nav > li > a {
		padding: 5px 10px;
	}

	#schedule-list .btn {
		width: 100%;
	}
	.modal-dialog .btn {
		width: 100%;
	}
}

@media (min-width:240px) and (max-width:650px){
	div.date_selection,
	div.theme_selection{
		float:none !important;	
		width:100% !important;
		text-align:left;
		clear: both;
	}
	div.theme_selection h3, div.date_selection p {
		font-size: inherit;
		float: left;
		padding-right: 5px;
		margin: 0px;
		line-height: 35px;
		font-weight: bold;
		width: 20%;
		text-align:left;
	}
	div.theme_selection table,
	div.date_selection table{
		width: 75%;
	}
	#search{
		width: 100% !important;
		border-radius: 4px !important;
		font-size: 19px;
		height: auto;
		line-height: normal;
	}
	.search-button{
		width:100%;
		content:"Search";
		border-radius: 4px !important;
		font-size: 19px;
		height: auto;
		line-height: normal;
		margin-top:0px !important;
	}

	#schedule-list .nav > li > a {
		padding: 5px 10px;
	}
	#schedule-list .btn {
		width: 100%;
	}
	.modal-dialog .btn {
		width: 100%;
	}
}

/*****************************************************************
END Media Sizing
*****************************************************************/

/*
div.date_selection, div.theme_selection {
	float: left;
	width: auto;
	padding: 3px 7px;
}
div.theme_selection h3,
div.date_selection p{
	font-size: inherit;
	float: left;
	padding-right: 5px;
	margin: 0px;
	line-height: 35px;	
	font-weight:bold;
}
#search{
	width: 95%;
	border-radius: 4px 0px 0px 4px;	
	font-size: 19px;
	height: auto;
	line-height: normal;
}
#search_area div.form-inline .search-area button{
	padding: 10px 16px;
	border-radius: 0px 5px 4px 0px;	
}
#search_area .form-inline .form-group{
	width: 100%;
}
.close-button{
	margin: 10px 0px !important;
	display: block;
	float: right;
	width: 100%;
	background: #f0ad4e !important;
	color: #ffffff;
	font-size: 16px;
	margin-bottom: 0px !important;
}
*/
.glyphicon:empty {
	width: 2em;
}