html, body{
 margin:0;
 padding:0;
 font-family:verdana, arial, sans-serif !important;
}

body{
	height: 100%;
	width: 100vw;
}

input:not([type=button]):not([type=file]):not([type=textarea]):not([type=checkbox]):not([type=radio]) {
	position: relative;
	display: inline-block;
	overflow: hidden;
	padding: 0 .6em;
	height: 23px;
	font-size:13px;
	border: 1px solid var(--ui-field-fg, #aaa);
	border-radius: 5px;
	background-color: var(--ui-field-bg, #f6f6f6);
	background-clip: padding-box;
	box-shadow: 0 1px 1px rgba(0,0,0,.1);
	color: var(--ui-field-fg, #444);
	text-decoration: none;
	white-space: nowrap;
	line-height: 24px
}
input:not([type=button]):not([type=file]):not([type=textarea]):not([type=checkbox]):not([type=radio]):focus,
textarea:focus {
	border-color: var(--ui-field-accent, #3b99fc);
	outline: none;
}
input[type=checkbox],
input[type=radio] {
	width: 1em;
	height: 1em;
}
textarea {
	position: relative;
	padding: 6px 8px;
	font-size:13px;
	border: 1px solid var(--ui-field-fg, #aaa);
	border-radius: 5px;
	background-color: var(--ui-field-bg, #fff);
	background-clip: padding-box;
	box-shadow: 0 1px 1px rgba(0,0,0,.1);
	color: var(--ui-field-fg, #444);
	text-decoration: none;
	white-space: normal !important;
	line-height: 24px
}

td {
	padding:5px;
	margin:5px;
}

#login_form {
    display: table;
    height: 80%;
    width: 100%;
    background-color: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

#login_form .login_wrapper {
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    text-align: center;
}

#login {
	margin:auto;
	width:30em;
	padding:20px;
	border: 2px solid orange;
	background-color: yellowgreen;
	border-radius: 25px;
}

#login label {
	width:6em;
	margin-left:-2em;
}

#login input {
	width:15em;
}

.ui-widget-overlay {
	background-repeat: repeat;
}

.fixed-dialog {
	position: fixed !important;
}

.select-css {
	display: block;
	font-size: 16px;
	font-family: sans-serif;
	font-weight: 700;
	color: var(--ui-field-fg, #444);
	line-height: 1.3;
	padding: .6em 1.4em .5em .8em;
	width: 100%;
	max-width: 100%;
	box-sizing: border-box;
	margin: 0;
	border: 1px solid var(--ui-field-fg, #aaa);
	box-shadow: 0 1px 0 1px rgba(0,0,0,.04);
	border-radius: .5em;
	-moz-appearance: none;
	-webkit-appearance: none;
	appearance: none;
	background-color: var(--ui-field-bg, #fff);
	background-image: url('data:image/svg+xml;charset=US-ASCII,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%22292.4%22%20height%3D%22292.4%22%3E%3Cpath%20fill%3D%22%23007CB2%22%20d%3D%22M287%2069.4a17.6%2017.6%200%200%200-13-5.4H18.4c-5%200-9.3%201.8-12.9%205.4A17.6%2017.6%200%200%200%200%2082.2c0%205%201.8%209.3%205.4%2012.9l128%20127.9c3.6%203.6%207.8%205.4%2012.8%205.4s9.2-1.8%2012.8-5.4L287%2095c3.5-3.5%205.4-7.8%205.4-12.8%200-5-1.9-9.2-5.5-12.8z%22%2F%3E%3C%2Fsvg%3E');
	background-repeat: no-repeat;
	background-position: right .7em top 50%;
	background-size: .65em auto;
}
.select-css::-ms-expand {
	display: none;
}
.select-css:hover {
	border-color: var(--ui-field-accent, #888);
}
.select-css:focus {
	border-color: var(--ui-field-accent, #aaa);
	box-shadow: 0 0 0 3px -moz-mac-focusring;
	color: var(--ui-field-fg, #222);
	outline: none;
}
.select-css option {
	font-weight:normal;
	font-size:1.5em;
}

/* Chosen (select box enhancer) loads after admin.css and its own rules are fairly
   specific, so these need !important to reliably win. Uses the same --ui-field-*
   variables as native inputs/selects, so it stays theme-agnostic - falls back to
   Chosen's stock look under any theme that doesn't define them. */
.chosen-container-single .chosen-single {
	border-color: var(--ui-field-fg, #aaa) !important;
	background: var(--ui-field-bg, #fff) !important;
	box-shadow: 0 1px 1px rgba(0,0,0,.1) !important;
	color: var(--ui-field-fg, #444) !important;
}
.chosen-container-active.chosen-with-drop .chosen-single {
	background: var(--ui-field-bg, #fff) !important;
	box-shadow: none !important;
}
.chosen-container-single .chosen-default {
	color: var(--ui-field-muted, #999) !important;
}
.chosen-container .chosen-drop {
	border-color: var(--ui-field-fg, #aaa) !important;
	background: var(--ui-field-bg, #fff) !important;
	box-shadow: 0 8px 24px rgba(0,0,0,.35) !important;
}
.chosen-container-single .chosen-search input[type="text"] {
	border-color: var(--ui-field-fg, #aaa) !important;
	background-color: var(--ui-field-bg, #fff) !important;
	color: var(--ui-field-fg, #444) !important;
}
.chosen-container .chosen-results {
	color: var(--ui-field-fg, #444) !important;
}
.chosen-container .chosen-results li.disabled-result {
	color: var(--ui-field-muted, #ccc) !important;
}
.chosen-container .chosen-results li.no-results {
	background: var(--ui-field-bg, #f4f4f4) !important;
	color: var(--ui-field-muted, #777) !important;
}
.chosen-container .chosen-results li.highlighted {
	background: var(--ui-field-accent, #3875d7) !important;
	color: #ffffff !important;
}
.chosen-container-multi .chosen-choices {
	border-color: var(--ui-field-fg, #aaa) !important;
	background: var(--ui-field-bg, #fff) !important;
}
.chosen-container-multi .chosen-choices li.search-field input[type="text"] {
	color: var(--ui-field-fg, #999) !important;
}
.chosen-container-multi .chosen-choices li.search-choice {
	border-color: var(--ui-field-fg, #aaa) !important;
	background: var(--ui-field-bg, #eeeeee) !important;
	box-shadow: none !important;
	color: var(--ui-field-fg, #333) !important;
}
.chosen-container-multi .chosen-choices li.search-choice-disabled {
	border-color: var(--ui-field-muted, #ccc) !important;
	background: var(--ui-field-bg, #e4e4e4) !important;
	color: var(--ui-field-muted, #666) !important;
}
.chosen-container-multi .chosen-choices li.search-choice-focus {
	background: var(--ui-field-accent, #d4d4d4) !important;
}
.chosen-container-active .chosen-single,
.chosen-container-active .chosen-choices {
	border-color: var(--ui-field-accent, #5897fb) !important;
	box-shadow: 0 0 5px rgba(0,0,0,.3) !important;
}
.chosen-container-active .chosen-choices li.search-field input[type="text"] {
	color: var(--ui-field-fg, #222) !important;
}


selectOverflow{
	min-width:200px;
	height:200px;
}

.nav-icon-after{
display:inline-block !important;
width:16px !important; height:16px !important; overflow:hidden;
padding:0 !important;
margin-top:8px;	
}
.nav-icon-append{
	display:inline-block !important; width:16px; float:right;
}

/*************************** START NAVIGATION *************************************/
#topmenu{
width:100vw;
position:fixed;top:0;left:0;
margin:0;padding:0;
z-index:99999999999999999999;
background:none !important;
}
/* Some themes' ui-widget-content ends up semi-transparent (inherited opacity, alpha
   backgrounds, etc.), which makes nav flyouts unreadable over page content. Force the
   whole nav subtree fully opaque regardless of theme - this doesn't touch color/hue,
   just solidity, so it stays theme-agnostic. */
#topmenu, #topmenu * {
	opacity: .995 !important;
}
.alpha60 {

    /* Fallback for web browsers that don't support RGBa */
    background-color: rgb(0, 0, 0);

    /* RGBa with 0.6 opacity */
    background-color: rgba(0, 0, 0, 0.3);

    /* For IE 5.5 - 7*/
    filter:progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000);
    /* For IE 8*/
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=#99000000, endColorstr=#99000000)";
}

/* Nav bar: layout only. Colors/borders/shadow/corners come from whichever jQuery UI
   theme is active, via the ui-widget-header / ui-button / ui-widget-content classes
   that template.php adds to these elements at runtime. Do not hardcode colors here -
   this file loads for every theme, including light ones. */

#nav {padding:0;margin:0; list-style:none; height:3em; position:relative; z-index:999999999999999999999; 
	font-family:verdana, arial, sans-serif !important;
}
#nav li.top {display:block; float:left; height:3em; padding:0; margin:0; }
#nav li a.top_link {display:flex; align-items:center; float:left; height:3em; text-decoration:none; padding:0 1.5em; font-size:.9em; box-sizing:border-box;}
#nav li a.top_link span {display:flex; align-items:center; height:100%; padding:0; white-space:nowrap;}

#nav li:hover {position:relative; z-index:20000;}

#nav li:hover ul.sub
{left:1px; top:3em;
 padding: 0;
 white-space:nowrap; width:190px; z-index:30000; height:auto;
 }

#nav li:hover ul.sub li{display:block; height:2.25em; position:relative; float:left; width:190px; font-weight:normal;}
#nav li:hover ul.sub li a{display:flex; align-items:center; height:2.25em; width:190px; box-sizing:border-box; 
	padding:0 0 0 1em; text-align:left; text-decoration:none; font-size:.85em;
}


#nav li:hover li:hover ul,
#nav li:hover li:hover li:hover ul,
#nav li:hover li:hover li:hover li:hover ul,
#nav li:hover li:hover li:hover li:hover li:hover ul
{left:190px; top:-7px; padding:0; white-space:nowrap; width:190px; z-index:40000; height:auto;}
#nav ul,
#nav li:hover ul ul,
#nav li:hover li:hover ul ul,
#nav li:hover li:hover li:hover ul ul,
#nav li:hover li:hover li:hover li:hover ul ul
{position:absolute; left:-9999px; top:-9999px; width:0; height:0; margin:0; padding:0; list-style:none;}

/*************************** END NAVIGATION *************************************/

#workspace{
	max-width:100vw !important;
	min-height:100vh !important;
	margin:0;
	padding:5em 1vw 2em 1vw; 
	border:0;
}


.dropLabel{
font-weight:bold;
}

label{text-align: right;margin-right: 5px;display: inline-block;}


#attendee_controls {
	text-align:left;
}


.expandCollapseLink{
text-decoration:none;
font-weight:bold;
width:20px;
display:block;
float:left;
}

/* BEGIN OVERVIEW  */

.ui-widget a, .ui-widget table thead, .ui-widget table tr th, .ui-widget table tr td {
	font-size:.9em;
}

#allpendingdelegates , #alldeclineddelegates , #allapproveddelegates , #mypendingdelegates , #allofmyapproveddelegates , #myapproveddelegates , #unpublisheddelegates , #publisheddelegates, #signedsponsordeals, #pendingunsignedsponsordeals, #pendingsponsordeals, #outstandingsponsordeals, #allsponsordeals,  #myoutstandingdelegatecontracts, #alloutstandingdelegatecontracts, #myoutstandingformerstaffdelegatecontracts, #alloutstandingformerstaffdelegatecontracts, #saleswidget, .rm_tracker, #myEvents {
	padding:0;
	margin:.5em;
	width:23em;
}
#saleswidget , #myEvents{ 
	width:47em; 
}
#saleswidget table, #myEvents table, .rm_tracker table {
	width:100%;
}

#publisheddelegates,  #signedsponsordeals, #myoutstandingdelegatecontracts, #alloutstandingdelegatecontracts{
	margin-bottom:25px;
}
#allpendingdelegates a, a.widgetheaderlink,  #alldeclineddelegates a, #allapproveddelegates a, #mypendingdelegates a, #allofmyapproveddelegates a, #myapproveddelegates a, #unpublisheddelegates a, #publisheddelegates a, #signedsponsordeals a, #pendingunsignedsponsordeals a, #pendingsponsordeals a, #outstandingsponsordeals a, #allsponsordeals a, #myoutstandingdelegatecontracts a, #alloutstandingdelegatecontracts a, #myoutstandingformerstaffdelegatecontracts a, #alloutstandingformerstaffdelegatecontracts a{
	font-weight:bold;
	line-height:1.25em;
	padding:.5em;
	margin:0;
	display:block;
	width:100%;
	text-decoration:none;
}


#apdd, #aadd, #addd, #mpdd, #madd, #upd, #pd, #ssd, #asd, #psd, #osd, #pusd, #pttd, #mosdc, #aosdc, #mosfsdc, #aosfsdc, #aomadd{
	display:none;
	border: 1px solid var(--ui-field-fg, #333333);
	background: var(--ui-field-bg, #fff);
	color: var(--ui-field-fg, #444);
	padding:5px 0 0 0;
	margin:0;
	width:23em;
}
#apdd a, #aadd a, #addd a, #mpdd a, #madd a, #upd a, #pd a, #ssd a, #asd a, #psd a, #osd a, #pusd a, #pttd a, #mosdc a, #aosdc a, #mosfsdc a, #aosfsdc a, #aomadd a{

	font-weight:normal;
	line-height:.9em;
	padding:0 0 0 5px;
	margin:0;
	width:100%;
}

/* END OVERVIEW  */

#agenda_wrapper  a{
	font-size:8pt;
}


/* BEGIN FORM_FULL_DELEGATE & FORM_CMS_DELEGATE */
.summitdetails {
	display:none;
}

.summitdetaillink{
	font-weight:bold;
	font-size:11pt;
	color:black;
}

.whitebox {
	background-color:#FFF;color:#000;
	padding:5px;
	line-height:150%;
}

.bqt_link{
	display:inline-block !important;
	@extend .ui-icon;
	@extend .ui-icon-comment;
	/*padding-right:15px;
	background-image:url(/admin/popup.jpg);
	background-repeat:no-repeat;
	background-position:right;*/
}

.bqt_data{
display:none;
line-height:150%;
}

.qFormControls{
	position:fixed;
    bottom:0;
    left:0;
    width:100%;
	height:2.5em;
	padding-top:0;
	margin-top:0;
	border-top: 2px inherit;
	
}
/*
.qFormContent{
	height:calc('100% - 1px');
}
*/

.qFormContent {
	overflow-y:auto; 
	overflow-x:hidden;
	max-width:1040px !important;
	max-height:600px !important;
}
.qFormWrapper{
	max-height:600px !important;
}

.newQunbound .qtip-content{
	max-width:1040px !important;
	max-height:600px !important;
}

/* END FORM_FULL_DELEGATE & FORM_CMS_DELEGATE */



#ui-tooltip-formpop{
width:400px;
}

.nA {
	-webkit-appearance:none;
    -moz-appearance: none;
    text-indent: 0.01px;
    text-overflow:'';
}

.ui-draggable,.ui-droppable {
	background-position: top;
}

.draggable-tooltip .qtip-titlebar{
	cursor: move;
}

.jHtmlArea,iframe {
	background-color: #FFF;
	color:#000;
}

/* jQuery UI Tabs */

.tabs-wrap, .tabs-wrap .dt-tabs, .dt-tabs .ui-tabs-panel, .dt-tabs ul{
	background:none !important;
	border:none !important;
	margin:0 !important;
	padding:0 !important;
}
.tabs-wrap{
	margin:auto !important;
	max-width:98vw;

}

.tab-full-div {
	 border:1px solid #CCC; 
	 margin-bottom:10px;
	 padding:5px; 
}
.dt-tabs .ui-tabs-panel .dt-output {
	margin:auto;
	padding:0;
	max-width:98vw;
	
}
/*
.dt-tabs .ui-tabs-panel table {
	margin:0;
	padding:0;
	width:100%;
	border:1px solid ;
}
*/
.data-table{
	border-collapse: separate;
	border-spacing: 0;
	margin:0;
	border-top:1px solid;
	border-left:1px solid;
	max-width:100vw;
	font-size:1em;
}
.data-table caption{
	border-collapse: separate;
	border-spacing: 0;
	margin:0;
	padding: .5em 1em;
	border-top:1px solid;
	border-left:1px solid;
	border-right:1px solid;
}

#config_show, #config_filters{
	text-align:left !important;
}

#config_show input, #config_filters input,
#config_show select, #config_filters select
{
	margin-right:1em;
}

/* Chosen (jQueryCode.js elmChosenSelect) replaces the <select> with a
   .chosen-container div and sets its width as an inline style at init time,
   so the width has to be forced on the container too, not just the hidden
   original <select>. Covers both #config_show and #config_filters - they're
   sibling containers (script_manage_account_data.php etc.), not nested. */
#config_show select,
#config_show .chosen-container,
#config_filters select,
#config_filters .chosen-container {
	width:20em !important;
}
.data-table tbody tr td,  .data-table thead tr th, .data-table tfoot tr td{
	margin:0;
	padding:3px 8px 1px 8px;
	border-bottom:1px solid;
	border-right:1px solid;
}
.data-table tbody tr:nth-child(even) td {
	background-color: rgba(128,128,128,.1);
}

/* jQuery UI Tabs */

.qFormTip, .qHoverTip{
	min-width:100px !important;
	max-width:1060px !important;
	padding:0 !important;
	border:none !important;
}
.qFormTip{
	/*max-height: calc(100% - 150px); */
	}

/* begin HR form */
#contact_hr_wrap, #handbook_wrap{
	margin-bottom:15px;
	min-width:400px;
	max-width:640px;
}

#contact_hr_wrap label{
	display:inline-block;
	width:60px;
	text-align:right;
}
#contact_hr_wrap input[type=text]{
	width:calc(100% - 70px) !important;

}
#contact_hr_wrap textarea{
	width:calc(100% - 8px) !important;
	height:100px;

}
#contact_hr_content, #handbook_content{ 
	margin-top:0;
	border:1px solid #ccc;
	padding-left:5px;
	padding-right:5px	
}

/* end HR form */



/* begin formatting for supporting document uplaoder */

.docblock {border:1px solid #666666; width:600px; padding:0 0 2px 10px; margin:15px 0 0 0px;}
.docblock input {width:250px;display:inline-block;}
.docblock  textarea {width:590px;}
.removedoc {width:20px; float:right ;padding:0; background-color:#ee2222; color:white; font-weight:bold;}
/* end formatting for supporting document uplaoder */

.lab150{width: 150px;}
.lab50{width: 50px;}
.lab75{width: 75px;}
.lab100{width: 100px;}

#editself input[type="text"], #editself input[type="password"] {width:200px;}

/* begin Marketing Featured Attendees (MFD tab in summit cms) */

.mfdlist {
    font-size: 0.7em;
    line-height: 100%;
    background: #ffffff;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
	position:relative;
    
}
.mfdlist p{
	
}
 
#marketingFeaturedAttendees .ui-selected {
    background: red;
    color: white;
    font-weight: bold;
}
 
#marketingFeaturedAttendees {
    list-style-type: none;
    margin: 0;
    padding: 0;
	width:100%;
}
 
#marketingFeaturedAttendees li {
	float: left;
	width: 100px;
	overflow: hidden;
    min-width: 75px;
    min-height: 175px;
    max-height: 175px;
    margin: 0.5em;
    padding: 0.5em 1em;
}

 
#governingBoardAttendees .ui-selected {
    background: red;
    color: white;
    font-weight: bold;
}
 
#governingBoardAttendees  {
    list-style-type: none;
    margin: 0;
    padding: 0;
	width:100%;
}
 
#governingBoardAttendees li {
	float: left;
	width: 100px;
	overflow: hidden;
    min-width: 75px;
    min-height: 175px;
    max-height: 175px;
    margin: 0.5em;
    padding: 0.5em 1em;
}
 
.mfdhighlight {
	 border: 2px solid green;
    background-color: #ccc;
}


#eventStaff .ui-selected {
    background: red;
    color: white;
    font-weight: bold;
}
 
#eventStaff {
    list-style-type: none;
    margin: 0;
    padding: 0;
	width:100%;
}
 
#eventStaff li.stafflist {
	float: left;
	width: 47vw;
	overflow: hidden;
    min-height: 2em;
    max-height: 3em;
    margin: .25em;
    padding: .25em .25em;
}
#eventStaff li.stafflist span {
	margin-right:.75em;
	float:left;
}

.stafflist {
    font-size: .85em;
	padding:.25em;
    line-height: 100%;
    border: 1px solid #ccc;
    text-align: left;
    cursor: pointer;
	position:relative;
    
}

#eventStaff li.eslist {
	float: left;
	width: 175px;
	overflow: hidden;
    min-width: 100px;
    min-height: 275px;
    max-height: 275px;
    margin: 0.5em;
    padding: 0.5em 1em;
}

.eslist {
	font-size: 1em;
	font-weight:bold;
    line-height: 100%;
    background: #ffffff;
    border: 1px solid #ccc;
    text-align: center;
    cursor: pointer;
	position:relative;
    
}


#profile_popupbox {
    position:fixed;
    z-index:2000;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
	display:none;
}

#profile_modal {
    position:fixed;
    z-index:2000;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,0.75);
	display:none;
}

.profile_wrapper {
	position: relative;
	/*padding-bottom: 56.25%;  16:9 */
	padding-top: 1em;
	margin:0 auto;
	
	width:100%;
	height:100%;
}

a.left_scroll { display:none; font-size:3em; float:left; width:8%; text-align:center; font-weight:bold; padding:8em 0; height:51rem; margin:0; color:#000; background:rgba(255,255,255,0.75); }
a.left_scroll:hover { color: #fff; background:rgba(0,0,0,0.75); }

a.right_scroll { display:none; font-size:3em; float:left; width:8%; text-align:center; font-weight:bold; padding:8em 0; height:51rem; margin:0; color:#000; background:rgba(255,255,255,0.75); }
a.right_scroll:hover { color: #fff; background:rgba(0,0,0,0.75); }


#closebox {
	width:100%;
	height:100%;
    position:fixed;
	top:0;
	left:0;
	border:none;
	background:none;
	}
	
#closebox2 {
    position: relative;
    top: -0.25em;
    left: 49.5%;
    font-weight: bold;
    color: #000;
    border: none;
    background: none;
    font-size: 2em;
    z-index: 3000;
	}

/* Attendee pop box */

.profile_details_all {  position:fixed; width:96%; max-height:350px; padding:1em; margin:0 auto 1em; font-size:0.8em; border:1px solid #cccccc; background-color: rgba(255,255,255,1); overflow-y:scroll; overflow-x: hidden; line-height:128%; }

.profile_personal_details { }
.profile_personal_details p { }

.profile_personal_details_hs_survey { display:block; text-align:center; }
.profile_personal_details_hs { }
.profile_personal_details_hs img { vertical-align: top; }

.profile_personal_details_survey { display:block; margin: 1em 0 0 0; }
.profile_personal_details_survey p { margin:0; padding:0; }
.profile_personal_details_survey img { vertical-align: top; }

.profile_personal_details_name_title_bio { text-align:left; padding: 0 0 0 1em; min-height:50px; }
.profile_personal_details_name_title_bio h3 { font-size:1.0em; }
.profile_personal_details_name_title_bio h4 { font-size:.9em; }
.profile_personal_details_name_title_bio p { margin:0; padding:0; }
.profile_personal_details_name_title { display:block; font-size:.8em; font-weight:bold; }
.profile_personal_details_bio	{ display:block; }

.profile_company_details { display:block; margin:1em 0; padding:1em; border-top:1px solid #cccccc; }
.profile_company_details p { }
.profile_company_logo { display:block; text-align:center; }
.profile_company_logo img { vertical-align: top; }

.profile_company_bio { display:block; text-align:left; border-left:1px solid #ccc; padding: 0 0 0 1em; min-height:75px; }

.profile_list { padding:0; margin:0; }

.profile_list_item {
	display: block;
	overflow:hidden;
    margin: 1em auto;
	padding: 0.5em 1em;
	background: #ffffff;
	border: 1px solid #ccc;
    text-align: center;
	position:relative;
}

.profile_logo { min-width: 50px; min-height:50px; margin: 0 0 .5em 0; padding:0; }

.delegate_survey_tab { display:block; position: absolute; margin:0; bottom: 0; left:0; background:rgba(0,0,0,0.25); }
.delegate_survey_tab img { margin:0; }

.profile_tile { display:block; padding:0.15em; }
.profile_tile:hover { cursor:pointer; background:rgba(0,0,0,0.1); }

.profile_no_logo { height:50px; padding: 5em 0 0 0; margin: 0 0 1em 0; }
.profile_no_logo p {
	font-size:1.2em;
	font-weight:bold;
	color:#999999;
}
.deleteMF {
	color:white;
	background-color:red;
	border: 1px solid black;
    position: absolute;
    top: 0px;
    right: 0px;
	text-align:center;
	width:15px;
}
.deleteGB {
	color:white;
	background-color:red;
	border: 1px solid black;
    position: absolute;
    top: 0px;
    right: 0px;
	text-align:center;
	width:15px;
}
.deleteES{
	color:white;
	background-color:red;
	border: 1px solid black;
    position: absolute;
    top: 0px;
    right: 0px;
	text-align:center;
	width:15px;
}
/* end Marketing Featured Attendees (MFD tab in summit cms) */

.clearfix:before, .clearfix:after { content: ""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom: 1; }

span.remove {
	width: 20px; 
	padding: 1px; 
	background-color: #ee2222;
	color: white; 
	font-weight: bold;
	margin-left: 5px;
	cursor: pointer;
	border: 1px solid black;
}


/* BEGIN TIMEOUT DIALOG STYLE */
.alert {

    object-position: center center;
    padding: 5px;
    margin: auto;
    text-align: center;
    font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	font-size: 1em;

  }

  .btn {
	  font-size:1em;
      padding: 5px;
      margin: 20px 20px;
      font-weight: bold;
      border-radius: 3px;
      border-style: outset;
     /* width: 80px;*/
  }


  button.autofillBtn {

	padding: 0 5px 0 5px !important;
	font-weight:bold;
  }

table.legacy{
	background:none !important;
	border:1px solid;
}

table.legacy tbody tr td, table.legacy tbody tr th {
	padding: .25em .5em 0px .5em;
	border-bottom: 1px solid;
	border-right: 1px solid;

}
table.legacy tbody tr:nth-child(even) td {
	background-color: rgba(128,128,128,.1);
}


/* END TIMEOUT DIALOG STYLE */
