﻿
/*#region form inputs */

input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
.input-dropdown {
    background-color: rgba(255,255,255,0.3);
    /*border-color:rgba(255,255,255,0.5);*/
    border: 1px solid;
    border-color: rgba(255,255,255,0.25);
    box-shadow: none;
}

	input[type=text]:focus,
	input[type=email]:focus,
	input[type=password]:focus,
	input[type=number]:focus,
	textarea:focus
	{
		background-color:rgb(255,255,255);
		outline:none;
	}

input[type=checkbox] {
	outline: none;
}


.input-mobile {
	font-size: 16px;	
}

input.input-control, .input-control {
	font-family: myriad-pro,calibri,sans-serif;
	font-weight: 300;
	font-size: 16px;
}

/* ReSharper disable once CssBrowserCompatibility */
	.input-control::-webkit-input-placeholder {
		font-style: italic;
	}

/* ReSharper disable once CssBrowserCompatibility */
	.input-control::-moz-placeholder {
		font-style: italic;
	}

	.input-control:-ms-input-placeholder {
		font-style: italic;
	}

/*#endregion */



#SiteGroups {
	/* select for site groups */
	height: 125px;
}

/* login email input */
.controls #Email,
.controls #Tags,
.controls #ClassCodes
{
	width: 300px;
}




/*#region login-problems-hint and password-reset-instructions */

.login-problems-hint {
	max-width: 550px;
	background: white;
	border-radius: 10px;
	border: 2px solid green;
	padding: 15px;
	padding-top: 10px;

	font-size: 16px;
	color: rgb(81, 122, 81);
}

.login-problems-hint ol {
	margin-top: 10px;
}

.login-problems-hint li {
	margin-top: 10px;
}

.login-problems-hint a {
	color: green;
	text-decoration: underline;	
}


.password-reset-instructions {
	font-size: 17px;
	color: #659ace;
	max-width: 600px;
	margin-bottom: 20px;

	padding: 20px;
	padding-top: 15px;
	border-radius: 10px;
	background-color: white;
	background-color: rgba(255, 255, 255, 0.3);
	border-color: white;
	border: 1px solid white;
}

.password-reset-instructions ol {
	padding-left: 30px;
}

.password-reset-instructions li {
	margin-top: 10px;
}

/*#endregion */


/*#region dropdown tables [START] */

	div.dropdown-menu table{
		width: 300px;
		margin-bottom: 10px;
		border-collapse: collapse;
	}

	tr.dropdown-menu-table-row:hover {
		background-color: #e5eef8;
	}

	tr.dropdown-menu-table-row:hover a {
	}

	tr.dropdown-menu-table-row a {
		display: block;
		color: #333333;
		padding: 4px;
	}

	tr.dropdown-menu-table-row a:hover {
		background-color: #659ace;
		text-decoration: none;
		color: #ffffff;
	}

	tr.dropdown-menu-table-row td:first-child a {
		padding-left: 20px;
	}

	tr.dropdown-menu-table-row a i {
		margin-left: 10px;
		margin-right: 10px;
	}

	.dropdown-menu div:first-child.dropdown-menu-heading {
		margin-top: 0;
	}

	/* fix dropdowns that are too long */
	.dropdown-menu {
		max-height: 480px;
		overflow-x: hidden;
		overflow-y: auto;
	}


	.dropdown-menu tr.divider {
		border-bottom: 1px solid #dddddd;
		background-color: transparent;
	}

	.dropdown-menu tr.dropdown-menu-heading td {
		padding-left: 10px;
	}

	

	.dropdown-menu tr.chosen {
		background-color: #11aa11;
	}

	.dropdown-menu tr.chosen td a,
	.dropdown-menu tr.chosen td a.insightCompare
	{
		color: #ffffff !important;
	}

	


	.dropdown-menu td {
		padding: 0;
	}

	.dropdown-menu tr.dropdown-menu-table-row-text td {
		padding-left: 20px;
		color: #aaa;
	}


/*#endregion */



a.insightCompare
{
	font-size: 14px;
	font-weight: bold;
	color: #999999 !important;
	width: 40px;
	text-align: center;
}


a.insightCompare:hover
{
	color: #ffffff !important;
}



.didbook-control-group
{

	background-color:#9cc6ee;
	background-color: rgba(255,255,255,0.2);

	border-radius: 5px;

	border:0px solid rgba(255,255,255,0.25);

	box-shadow:none;

	padding:10px;

	margin-bottom:10px;
}


.userlink-editor.control-group {
    margin-bottom: 20px;
}

.userlink-editor label {
    margin-bottom: 3px;
}

#UserLink_Title {
    margin-bottom: 0;
}


.de-emphasise
{
	color:#999999;
	color:rgba(0,0,0,0.7);
}

.userDisabled, 
.guidance 
{
	/* when logged in as a Server Administrator and seeing the hidden system fields */
	color: #999999;
	color: rgba(0, 0, 0, 0.4);
}

.control-group .information-panel {
	background: rgba(255, 255, 255, 0.2);
	border-radius: 7px;
	broder-color: rgba(255, 255, 255, 0.2);
	padding: 5px;
	padding-left: 9px;
    padding-top: 7px;
    margin-top: 9px;
}

.control-group .information {
    padding-bottom: 7px;
    margin-top: -4px;
    opacity: 0.75;
    font-style: italic;
    line-height: 105%;
}


.control-group select.didbook-dropdown {
    background: rgba(255,255,255,0.5);
    border-color: rgba(255,255,255,0.25);
}




div.tip {
	/* used to provide a tip or guidance after an input box in a form (e.g. email not regarding school / personal email accounts) */
	font-size: 12px;
	color: #999999;
	padding: 4px;
	padding-left: 6px;
	padding-bottom: 2px;
	line-height: 14px;
	max-width: 225px;
}

div.tip.full-width {
	max-width: auto;
	padding-left: 0;
}










hr.control-divider {
	margin-top: 5px;

	border-top: 1px solid #000000;
	border-bottom: 1px solid #ffffff;

	border-top-color: rgba(0, 0, 0, 0.15);
	border-bottom-color: rgba(255, 255, 255, 0.5);
}




hr.row-divider {
	border-top: 1px solid #000000;
	border-bottom: 1px solid #ffffff;

	border-top-color: rgba(0, 0, 0, 0.15);
	border-bottom-color: rgba(255, 255, 255, 0.5);

	margin-left: -20px;
	margin-right: -20px;
}

hr.row-divider.modal-divider {
	margin-left: -15px;
	margin-right: -15px;
}

hr.modal-subtle-divider {
    border-top: none;
    border-bottom: 1px solid rgba(101, 154, 215, 0.2);
    margin-left: 20px;
    margin-right: 20px;
}


h2.didbook-well-title {
	line-height: 100%;

	margin-top: -15px;
	margin-bottom: -15px;

	padding: 0;
	padding-top: 10px;
	padding-bottom: 10px;


	font-size: 175%;
}

/*note: this multiple class selector doesn't work in IE6 and below'*/
h2.didbook-well-title.parent {
	/*requires spacing below the line*/
	margin-bottom: 10px;
}

h2.didbook-well-title.sub {
}


.didbook-well-instruction {
	margin-top: 10px;
	margin-bottom: 12px;

	color:#999999;
	color:rgba(0,0,0,0.5);
}



.well-didbook.parent {
	padding-bottom: 0px;
	margin-bottom: 0px;
}


.tooltip-inner {
	/*background-color: #657ace;*/
}



.form-inline label {
	/* make labels line up better with inputs if they are inline */
	margin-bottom: -2px;
}



/* can't be used with table columns that don't have a specified width
	
.image-caption {
	overflow: hidden;
	width: 100px;
	white-space:nowrap;
    text-overflow: ellipsis;
}
	*/



/* User Manager */
/* ------------------------------------------------------------------ */

#SearchResultsPanel .warning { 
	/* applied to a table cell in the UserManager if there is a problem with it */
	color: #cc0000 !important;
	background-color: #f5e7e7 !important;
	background-color: rgba(200,0,0,0.3) !important;
	/* note: important is needed because of the Bootstrap table CSS which is quite specific*/
}

.filter
{
	color: #659ace;
	font-size: 12px;
	text-transform: uppercase;
	display: inline-block;
	border: 1px solid white;
	background-color: rgba(255,255,255,0.2);
	border-color: rgba(255,255,255,0.6);
	padding-left: 6px;
	padding-right: 4px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	cursor: pointer;
	margin-right: 5px;
	margin-bottom: 5px;
}

	.filter:hover .icon-white {
		opacity: 1;
	}

	.filter:hover {
		border-color: white;
	}


#column-selector-AllApps {
	border-top: 1px solid #eeeeee;
	border-bottom: 1px solid #eeeeee;
	font-style: italic;
}

#column-selector-CommentsReceived,
#column-selector-CommentsAuthored
 {
	border-top: 1px solid #eeeeee;
}

td.username {
	white-space: nowrap;
}

td.username img.icon-new-window {
	
}

	a.open-in-new-window {
		opacity: 0.6;
		margin:0;
		padding: 0;
		margin-left: 5px;
	}
	a.open-in-new-window:hover {
		opacity: 1;
	}


div.modal-question.question {
	color: #659ad7;
	font-size: 12px;
	text-transform: uppercase;

	background-color: rgba(255, 255, 255, 0.15);

	border: 1px solid white;
	border-bottom-color: rgba(0, 0, 0, 0.1);


	padding-bottom: 5px; 
	padding-top: 5px;
	padding-left: 5px;

	margin-bottom: 0px;

	cursor: pointer;
}
	div.modal-question.question::before {
		/* entity codes from: http://www.evotech.net/articles/testjsentities.html and http://stackoverflow.com/questions/2701192/character-for-up-down-triangle-arrow-to-display-in-html */
		/*content: "Hide";*/
		/*content: "\25BE ";*/
		content: "\25BC ";
	}

		div.modal-question.question.collapsed {
			margin-bottom: 10px;
			border-bottom-color: white;
			padding-left: 7px; /* 2px extra to compensate for the arrow width differences */
		}

			div.modal-question.question.collapsed::before {
				/*content: "Show";*/
				/*content: "\25B8 ";*/ 
				content: "\25B6 "; /* from: http://www.evotech.net/articles/testjsentities.html */
			}




div.modal-answer.in {
	background-color: rgba(255, 255, 255, 0.15);
	border: 1px solid white;
	margin-bottom: 20px;
	padding-top: 10px;
}


input[type=checkbox] {
	margin-bottom: -2px;
}

a.load-more-indicator
{
	background-color: white;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	border-radius: 5px;

	padding-top: 3px;
	padding-bottom: 5px;
	padding-left: 10px;
	padding-right: 10px;

	color: #659ad7;
	
}



input[type=checkbox].userSelect {
	margin-bottom: 4px;
	margin-left: 5px;
}





.note {
	margin-top: -10px;
	margin-bottom: -10px;
	font-size: 100%;

	color: #999999;
	color: #4b7ab1;/*dark version of 659ace*/
}


.image-list-caption {
	color: #4b7ab1;/*dark version of 659ace*/
	font-weight: normal;
}


.table td {
	border-top-color: #659ace;
	border-top-color: rgba(255, 255, 255, 0.3);
}



tr.selected {
	border: 2px solid #00cc00;
	border-radius: 5px;
	background-color: #e5eef8;
	background-color: rgba(255, 255, 255, 0.5);

}


table.enumeratorManager tbody tr:hover {
	/*
	background-color: #b2cceb;
	background-color: rgba(0, 0, 0, 0.1);
	*/
}

.fieldErrors {
    color: #cc0000;
}

.requiredField {
    color: #cc0000;
}

.validation-summary-errors {
    color: #cc0000;
}

div.validation-summary-errors
{
	border: 1px solid #cc0000;
	border-color: rgba(204, 0, 0, 0.5);
	background-color: white;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
	border-radius: 10px;

	color: #cc0000;
	font-size: 16px;

	padding: 20px;
	padding-top: 15px;

	margin-bottom: 20px;
	max-width: 600px;
}

div.validation-summary-errors ul {
	list-style: none;
	margin: 0;
}



label.required {
	font-weight: bold;
}

label.required::after {
	content: " *";
	color: #cc0000;
}


.user-field-class-codes {
	max-width: 150px;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 13px;
	white-space: nowrap;
}





.debug-properties {
	/* a tooltip only displayed for server administrators */
	float: right;
	margin-top: -25px;/* overlaps the label which has a height of 20px (line height) + bottom margin of 5px */
}

.debug-toggle {
	float: right;
	margin-top: -25px;/* overlaps the label which has a height of 20px (line height) + bottom margin of 5px */
	margin-right: 20px;
}

#debug {
	right: 20px;
}






/* bootstrap drop down classes */
.dropdown-menu .dropdown-menu-option a{
	padding-left: 10px; 
}


.dropdown-menu li.dropdown-menu-option[data-selected=false] a i{
	width: 0px;
	margin-right: 25px;
}

.dropdown-menu li.dropdown-menu-option[data-selected=true] a i{
	width: 16px;
	margin-right: 9px;
}

.dropdown-menu li.dropdown-menu-option[data-selected=true] {
	background-color: pink;
}



.dropdown-menu .divider-before {
	border-top: 1px solid #eeeeee;
}


.dropdown-menu .dropdown-menu-heading {
	color:#659ace;font-size:12px;text-transform:uppercase;
	padding:0 10px;
	margin-bottom:0px;
	margin-top: 10px;
}

	.dropdown-menu .dropdown-menu-heading.parent {
		color: #999999;
		font-size: 14px;
	}

		.dropdown-menu .dropdown-menu-heading.parent td {
			padding-top: 10px;
		}


.dropdown-menu li:first-child.dropdown-menu-heading {
	margin-top: 0px;
}


.dropdown-menu .divider-after-heading {
	margin-top: 0px;
	margin-bottom: 2px;
}


/* used to suffix a title with an action icon in a dropdown menu */
.dropdown-menu-action-icon {
	margin-left:5px;
	margin-top:2px;
}


/* format a number as a clickable page*/
.dropdown-page {
	width: 24px;
	border: solid 1px #cccccc;
	margin-right: 5px;
	margin-bottom: 12px;
	background-color: white;
	border-top-right-radius: 6px;
	cursor: pointer;
	float: left;
	text-align: center;
	color: #333333;
}

.dropdown-page:hover {
	border-color: #9cc6ee;
	background-color: #e5eef8;
	color: #333333;
}

.dropdown-page-active {
	border-color: #4b7ab1;
	background-color: #4b7ab1;
	color: white;
}


#resultsTableBody td {
	white-space: nowrap;
}

.scrollPanel {
	overflow: auto;
}


thead tr th{
	border-bottom: 2px solid #659ace; 
  /*border-collapse:separate; 
  border-spacing:5px 5px;*/
} 

/* table layout - legacy HTML as CSS */

td.valign-top {
	vertical-align: top;
}












/* Showcase Editor Rules */



.loading-showcase-pool-indicator {
	font-size: 20px;
	line-height: 40px;
	font-family: myriad-pro, Calibri Light, sans-serif;
	font-weight: 300;
	color: #659ace;
}


.showcase-pool-empty-notification {
	font-size: 20px;
	line-height: 20px;
	font-family: myriad-pro, Calibri Light, sans-serif;
	font-weight: 300;
	color: #659ace;
}

.applications-filter-user-information {
	padding-top: 10px;
	padding-bottom: 5px;
}
	
	.my-showcase-editor { list-style: none;
		padding: 25px;
	}



/* Showcase Template Picker [start] */
/* ----------------------------------------------------------------------------------------------------*/


	input[title="Showcase Template"] {
		margin-top: 10px;
	}


	#showcase-template-picker {
		padding-top: 5px;
		padding-bottom: 10px;
	}

		.showcase-template-option {
			border: 1px solid #bbbbbb;
			padding-top: 4px;
			padding-bottom: 7px;
			padding-left: 9px;
			padding-right: 10px;

			font-family: myriad-pro, Calibri Light, sans-serif;
			font-weight: 300;
			font-size: 18px;
			color: #888888;
			float: left;
			margin-right: 10px;
			cursor: pointer;

			border-radius: 5px;

			background-color: rgba(255, 255, 255, 0.5);
			background-image: url(/mobile/Images/transparentRectangles/white50.png)\9;
		}

		.showcase-template-option:hover {
			color: #659ace;
			border-color: #659ace;
			background-color: white;
		}

		.showcase-template-option.selected {
			border-color: #659ace;
			color: #659ace;
			background-color: rgba(255, 255, 255, 0.8);
			background-image: url(/mobile/Images/transparentRectangles/white80.png)\9;
			cursor: default;
		}


/* ----------------------------------------------------------------------------------------------------*/
/* Showcase Template Picker [end] */


	#control-showcaseSectionsXML {
		display: none;
		border: 2px solid red;
	}

	div.application-myShowcase i.icon-info-sign {
		margin-top: 25px;
	}

	

	div.showcase-section {
		position: relative;
	}

		div.showcase-section-title-row {
			position: relative;
			height: 40px;
		}
			div.showcase-section-title {
				font-size: 20px;
				line-height: 40px;
				font-family: myriad-pro, Calibri Light, sans-serif;
				font-weight: 300;
				padding-top: 5px;
			}

			div.showcase-section-choose-entries-button {
				padding-bottom: 10px;
				text-align: right;
				border: 1px;
				position: absolute;
				right: 0;
				top: 5px; /* problem when section title isn't displayed '*/
			}

  /* override the well padding and margin settings*/
	.slide
	{

		/*height: 50px;*/ /* auto heights now supported */
		padding: 5px;
		padding-left: 35px; /*make room for the slide icon*/
		padding-right: 20px;
		margin-bottom: 10px;
		margin-left: 0px;

		position: relative; /* needed to allow drag handles to be positioned absolutely*/

		/*background-image: url("../images/didbook/star_bronze_45degrees_26x25.png");
		background-position: 4px	5px;
		background-repeat: no-repeat;*/

	}

	.slide .dragHandle {
		position: absolute;
		left: 0px;
		top: 5px;

		padding-left: 8px;
		padding-top: 3px;
		padding-bottom: 10px;
		padding-right: 8px;
	}

	.slide .dragHandle:hover {
		cursor: move;
	}


	.slide-remmed:hover {
		cursor: move;
		border-color: rgba(255, 255, 255, 1);
		background-color: rgba(255, 255, 255, 0.6);
	}




	.slide-entry-details
	{
		padding-left: 4px;
		font-size: 90%;
	}

	.slide-entry-title { }

	.slide-entry-application { color: #659ace; }



	/* sales title input */
.slide input {
	font-family: myriad-pro,calibri,sans-serif;
	font-size: 120%;
	display: inline-block;
	width: 100%;
	margin-bottom: 0;
	margin-left: -4px;
	padding-bottom: 2px;
	padding-left: 5px;
	padding-top: 0;
	background-color: rgba(255, 255, 255, 0.1);
	border-color: transparent;
}

  .slide-entry-sales-title {
	  font-size: 120%;
	  cursor: text;
	  border: 1px solid transparent;
	  margin-left: -2px;padding-left: 2px; /*give the outline a bit more room on the left*/
	  padding-bottom: 1px;
  }

  .slide-entry-sales-title:hover {
	  /*font-size: 120%;*/
	  cursor: text;
	  background-color: #ffffff;
	  /*border: 1px solid green;*/
  }

#showcase-manager-sortable-instructions {
	margin-top: 10px;
	margin-bottom: 10px;
}


	/* this is the UL that contains the sortable list */
	ul.ui-sortable
	{
		list-style: none;
		margin-left: 0px;
		/*margin-bottom: 20px;*/

		border-radius: 5px;
	} 
  
	ul.ui-sortable li {}  
  


	/* size and highlight the temporary li that acts as a drop placeholder*/
	/* code created dynamically by sortable on drag */
	.ui-state-highlight
	{

		border: 1px solid #00cc00;

		background: none;
		background-color: white;
		background-color: rgba(255,255,255,0.3);

		/*height: 60px;*/ 
		/* not needed now we are using auto heights */ /*don't forget to allow for the border height*/
		margin-bottom: 10px;/* be consistent with the slide margins*/ /* see also didbook-ie-lt9-hacks */
		padding-bottom: 10px;
	}

  .ui-state-active {
		border: 1px solid #00cc00;
		border-color: red;

  }

  .ui-state-disabled {
	  border: 1px solid #000000;
  }

  .ui-state-hover {
	  border: 1px solid #0000cc;
  }

  
  #SearchResultsTable th {
	cursor: pointer;
}


/* used to help debug user property values */
.storage-value
{
	color: #659ace;
	background-color: rgba(255, 255, 255, 0.2);
	padding-left: 4px;
	padding-right: 4px;
	border: 1px solid rgba(255, 255, 255, 0.4);
	white-space: nowrap;
}


/* SeqTextEditor input text formatting application specific styles */
/* =============================================================== */
/* see SeqTextEditor.css for default styles */

#userlinkEditorEditForm.application-enrichmentDiary.not-comment div.textEditor {
	/* frm scrapbook-text in didbook-scrapbook.css */
	font-family: "gooddog-new", "myriad-pro";
	font-size: 20px;
	color: #659ace;
	color: rgba(101, 154, 206, 0.85);
	line-height: 21px;
}

html.lt-ie9 #userlinkEditorEditForm.application-enrichmentDiary.not-comment div.textEditor {
	color: #659ace; /* fallback for rgba value for modern browsers */
}

#userlinkEditorEditForm.application-enrichmentDiary div.textEditorHolder
{
	max-width: 394px; /* textEditor target width of 366 + 14 (2x6 for textEditor padding 2*1 for border), + 14 (2*6 for this padding and 2*1 for this border) */
}

html.lt-ie9 div.textEditorHolder {
	border-color: transparent;
	background-image: url(../Images/transparentRectangles/white15.png);
}


/* Traffic Light styles */
/* =============================================================== */

.option-selector,
.single-option-selector,
.multi-option-selector,
.weighted-multi-option-selector
{
	border: 1px solid #659ace;
	border-color: rgba(101, 154, 206, 0.4); /* #659ace */
	border: none;
	-moz-border-radius: 7px;
	-webkit-border-radius: 7px;
	border-radius: 7px;

	background-color: rgba(101, 154, 206, 0.2); /* #659ace */

	padding: 8px;
	padding-top: 6px;
	padding-right: 3px; /* each option has margin-right 5px */
	padding-bottom: 0;

	display: inline-block;
	position: relative;
}

	.weighted-multi-option-selector .debug-properties {
		position: absolute;
		right: 0;
		top: 2px;
	}

	.option-selector .option,
	.single-option-selector .option,
	.multi-option-selector .option,
	.weighted-multi-option-selector .option
	 {
		border: 1px solid white;
		border-color: rgba(255, 255, 255, 0.3);


		-moz-border-radius: 5px;
		-webkit-border-radius: 5px;
		border-radius: 5px;

		background-color: #C6E2EE;
		background-color: rgba(255, 255, 255, 0.2);
		padding: 10px;
		padding-top: 5px;
		padding-bottom: 6px;
		display: inline-block;
		margin-right: 5px;
		margin-bottom: 10px;
		cursor: pointer;

		opacity: 0.75;
	}

		.option-selector .option:hover,
		.single-option-selector .option:hover,
		.multi-option-selector .option:hover,
		.weighted-multi-option-selector .option:hover,
		.single-option-selector .option.selected,
		.multi-option-selector .option.selected,
		.weighted-multi-option-selector .option.selected
		{
			background-color: rgba(255, 255, 255, 0.4);
			border-color: white;
			opacity: 1;
		}

		.single-option-selector .option.selectedmania {
			background: red;
		}


/* Publish Control */
/* =============================================================== */

#userlink-publish-selections-friendly {
	border: 1px solid white;
	border-color: rgba(101, 154, 206, 0.50);
	background-color: rgba(101, 154, 206, 0.20);
	border-radius: 7px;
	padding: 10px;
	padding-top: 5px;
	margin-top: 5px;
	margin-bottom: 10px;
}

#userlink-publish-selections-friendly-title
{
	text-transform: uppercase;
	font-size: 12px;
	color: white;
	margin-bottom: 5px;
	border-bottom: 1px solid #659ace;
	border-color: rgba(101, 154, 206, 0.50);
}

#PublishlistSelector .dropdown-menu,
#PublishSpeciallistSelector .dropdown-menu,
#PublishSiteGroupGroupslistSelector .dropdown-menu,
#PublishSiteGroupslistSelector .dropdown-menu
 {
	display: block;
	position: relative;
	max-height: inherit;
	box-shadow: none;
}

#PublishlistSelectorDisplay, #PublishlistSelectorDownArrow,
#PublishSpeciallistSelectorDisplay, #PublishSpeciallistSelectorDownArrow,
#PublishSiteGroupGroupslistSelectorDisplay, #PublishSiteGroupGroupslistSelectorDownArrow,
#PublishSiteGroupslistSelectorDisplay, #PublishSiteGroupslistSelectorDownArrow
{
	display: none;
}




/* Improvement Centre styles */
/* =============================================================== */

#userlinkEditorEditForm.application-improvementCentre div.textEditorHolder
{
	max-width: 592px; /*  578 observed from IE11 F12 + 14 (2x6 for textEditor padding 2*1 for border) */
}

#userlinkEditorEditForm.application-improvementCentre div.textEditor h2{
	margin-top: 0px;
	font-size: 26px;
	font-weight:300;
	font-family:myriad-pro,calibri,sans-serif;
	border-bottom: 1px solid #ccc;
}

#userlinkEditorEditForm.application-improvementCentre div.textEditor h3{
	margin-top: 0px;
	font-size: 100%;
	font-weight:300;
	font-family:myriad-pro,calibri,sans-serif;
}


#userlinkEditorEditForm.application-improvementCentre div.textEditor h4 {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 18px;
	font-weight:300;
	font-family:myriad-pro,calibri,sans-serif;
}


	#userlinkEditorEditForm.application-improvementCentre div.textEditor h2.question,
	#userlinkEditorEditForm.application-improvementCentre div.textEditor h4.question
	{
		padding-left: 25px;
		color: #659ace;
		cursor: pointer;
		background-image: url(../../Images/didbook/arrow_right.gif);
		background-repeat: no-repeat;
		background-position: 10px 5px;
	}

	#userlinkEditorEditForm.application-improvementCentre div.textEditor h2.question {
		margin-left: 0;
		padding-left: 15px;
		background-position: -3px center;
		border-bottom-color: transparent;
		margin-bottom: 0;
	}

		#userlinkEditorEditForm.application-improvementCentre div.textEditor h2.question.in,
		#userlinkEditorEditForm.application-improvementCentre div.textEditor h4.question.in {
			background-image: url(../../Images/didbook/arrow_down.gif);
		}

		#userlinkEditorEditForm.application-improvementCentre div.textEditor h2.question.in {
			background-position: -1px center;
		}


		h2.question:hover,
		h4.question:hover {
			color: #333;
		}

		.answer {
			padding-left: 25px;
		}

		.collapsed-part {
			padding-left: 14px;
		}

		div.collapsed-part h2 {
			font-size: 22px;
			color: #999;
		}

	#userlinkEditorEditForm.application-improvementCentre div.textEditor ol,
	#userlinkEditorEditForm.application-improvementCentre div.textEditor ul {
		margin-top: 10px;
		padding-left: 25px;
	}

	#userlinkEditorEditForm.application-improvementCentre div.textEditor ol li,
	#userlinkEditorEditForm.application-improvementCentre div.textEditor ul li {
		margin-bottom: 30px;
	}

	#userlinkEditorEditForm.application-improvementCentre div.textEditor strong {
		font-weight: 400;
		font-family:myriad-pro,calibri,sans-serif;
	}



/* =============================================================== */



/*#region SearchGroupSelections editor */
/* =============================================================== */


.active-filters-container {
	background-color: rgba(101,154,215,0.3);
	border: 1px solid rgba(101,154,215,0.2);
	padding: 9px;
	padding-top: 7px;
	padding-bottom: 7px;
	border-radius: 9px;
}

	.active-filters-container-title {
		display: inline-block;
		padding-right: 20px;
		padding-bottom: 8px;
		padding-left: 1px;
		
		font-size: 14px; 
		color: white; 
		text-transform: uppercase;
	}

	.active-filters-container-removeAll {
		margin-right: 0px;
		margin-top: 0px;
		background: none;
		border: none;
	}


/* =============================================================== */
/*#endregion */





/*! jQuery Placeholder Plugin - v0.7.0 - 2013-02-18
* http://andrew-jones.com/jquery-placeholder-plugin
* Copyright (c) 2013 Andrew Jones; Licensed MIT */

input.placeholder { color:#999999; font-style:italic }
input.placeholderFocus { color: #000; }






/*#region Judgement Editor */

	.note {
		text-transform: uppercase;

		margin-bottom: 5px;
		font-size: 12px;
		color: #ccc;
	}


/*#endregion */





/*#region Chosen */

div.chosen-container-multi ul.chosen-choices{
	padding-top: 2px;
	padding-bottom: 2px;
	border-radius: 5px;
	background-color: rgba(255, 255, 255, 0.3);
	border-color: rgba(255, 255, 255, 0.25);
	background-image: none;
}

div.chosen-container-multi.chosen-container-active ul.chosen-choices{
	background-color: rgba(255, 255, 255, 1);
	border-bottom-left-radius: 0px;
	border-bottom-right-radius: 0px;
	border-color: rgba(114,184,239,0.573);
}
/*#endregion */




/*#region Passwords */

.password-guidance-container {

}

.password-guidance-list {

}
/*#endregion */