/* FONT STACK */
body,
input, select, textarea {
	font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
    font-size: 11pt;
}

h1, h2, h3, h4, h5, h6 {
	line-height: 1.1;
}

h2.inline {
    display:inline;
    padding-right: 0.5em;
}

/* BASE LAYOUT */

html {
	background-color: #ddd;
	background-image: -moz-linear-gradient(center top, #aaa, #ddd);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #aaa), color-stop(1, #ddd));
	background-image: linear-gradient(top, #aaa, #ddd);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorStr = '#aaaaaa', EndColorStr = '#dddddd');
	background-repeat: no-repeat;
	height: 100%;
	/* change the box model to exclude the padding from the calculation of 100% height (IE8+) */
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

html.no-cssgradients {
	background-color: #aaa;
}

.ie6 html {
	height: 100%;
}

html * {
	margin: 0;
}

body {
	background: #ffffff;
	color: #333333;
	margin: 0 auto;
	max-width: 960px;
	overflow-x: hidden; /* prevents box-shadow causing a horizontal scrollbar in firefox when viewport < 960px wide */
	   -moz-box-shadow: 0 0 0.3em #255b17;
	-webkit-box-shadow: 0 0 0.3em #255b17;
	        box-shadow: 0 0 0.3em #255b17;
}

#grailsLogo {
	background-color: #FF0000;
}

/* replace with .no-boxshadow body if you have modernizr available */
.ie6 body,
.ie7 body,
.ie8 body {
	border-color: #000;
	border-style: solid;
	border-width: 0 1px;
}

.ie6 body {
	height: 100%;
}

a:link, a:visited, a:hover {
	color: #1C94C4;
    text-decoration: none;
}

a:hover, a:active {
	outline: none; /* prevents outline in webkit on active links but retains it for tab focus */
}

a:hover {
    text-decoration: underline;
}

h1 {
	color: #000;
	font-weight: normal;
	font-size: 1.25em;
	margin: 0.8em 0 0.3em 0;
}

ul {
	/*padding: 0;*/
}

img {
	border: 0;
}

/* GENERAL */

#grailsLogo a {
	display: inline-block;
	margin: 1em;
}

.content {
}

.content h1 {
	border-bottom: 1px solid #CCCCCC;
	margin: 0.8em 1em 0.3em;
	padding: 0 0.25em;
}

.scaffold-list h1 {
	border: none;
}

.footer {
	background: #000;
	color: white;
	clear: both;
	font-size: 0.8em;
	margin-top: 1.5em;
	padding: 1em;
	min-height: 1em;
}

.spinner {
	background: url(../images/spinner.gif) 50% 50% no-repeat transparent;
	height: 16px;
	width: 16px;
    padding: 0.5em;
    position: absolute;
    right: 0;
	top: 0;
	text-indent: -9999px;
}

/* NAVIGATION MENU */

.nav {
	background-color: #efefef;
	padding: 0.5em 0.75em;
	   -moz-box-shadow: 0 0 3px 1px #aaaaaa;
	-webkit-box-shadow: 0 0 3px 1px #aaaaaa;
	        box-shadow: 0 0 3px 1px #aaaaaa;
	zoom: 1;
}

.nav ul {
	overflow: hidden;
	padding-left: 0;
	zoom: 1;
}

.nav li {
	display: block;
	float: left;
	list-style-type: none;
	margin-right: 0.5em;
	padding: 0;
}

.nav a {
	color: #FF0000;
	display: block;
	padding: 0.25em 0.7em;
	text-decoration: none;
	   -moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	        border-radius: 0.3em;
}

.nav a:active, .nav a:visited {
	color: #666666;
}

.nav a:focus, .nav a:hover {
	background-color: #999999;
	color: #ffffff;
	outline: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.no-borderradius .nav a:focus, .no-borderradius .nav a:hover {
	background-color: transparent;
	color: #444444;
	text-decoration: none;
}

.nav a.home, .nav a.list, .nav a.create {
	background-position: 0.7em center;
	background-repeat: no-repeat;
	text-indent: 25px;
}

.nav a.home {
	background-image: url(../images/skin/house.png);
}

.nav a.list {
	background-image: url(../images/skin/database_table.png);
}

.nav a.create {
	background-image: url(../images/skin/database_add.png);
}

/* CREATE/EDIT FORMS AND SHOW PAGES */

fieldset,
.property-list {
	margin: 0.6em 1.25em 0 1.25em;
	padding: 0.3em 1.8em 1.25em;
	position: relative;
	zoom: 1;
	border: none;
}

.property-list .fieldcontain {
	list-style: none;
	overflow: hidden;
	zoom: 1;
}

.fieldcontain {
	margin-top: 1em;
}

.fieldcontain label,
.fieldcontain .property-label {
	color: #FF0000;
	text-align: right;
	width: 25%;
}

.fieldcontain .property-label {
	float: left;
}

.fieldcontain .property-value {
	display: block;
	margin-left: 27%;
}

label {
	cursor: pointer;
	display: inline-block;
	margin: 0 0.25em 0 0;
}

input, select, textarea {
	background-color: #fcfcfc;
	border: 1px solid #cccccc;
	font-size: 1em;
	padding: 0.2em 0.4em;
}

select {
	padding: 0.2em 0.2em 0.2em 0;
}

select[multiple] {
	vertical-align: top;
}

textarea {
	width: 250px;
	height: 150px;
	overflow: auto; /* IE always renders vertical scrollbar without this */
	vertical-align: top;
}

input[type=checkbox], input[type=radio] {
	background-color: transparent;
	border: 0;
	padding: 0;
}

input:focus, select:focus, textarea:focus {
	background-color: #ffffff;
	border: 1px solid #eeeeee;
	outline: 0;
	   -moz-box-shadow: 0 0 0.5em #ffffff;
	-webkit-box-shadow: 0 0 0.5em #ffffff;
	        box-shadow: 0 0 0.5em #ffffff;
}

.required-indicator {
	color: #FF0000;
	display: inline-block;
	font-weight: bold;
	margin-left: 0.3em;
	position: relative;
	top: 0.1em;
}

ul.one-to-many {
	display: inline-block;
	list-style-position: inside;
	vertical-align: top;
}

.ie6 ul.one-to-many, .ie7 ul.one-to-many {
	display: inline;
	zoom: 1;
}

ul.one-to-many li.add {
	list-style-type: none;
}

/* EMBEDDED PROPERTIES */

fieldset.embedded {
	background-color: transparent;
	border: 1px solid #CCCCCC;
	margin-left: 0;
	margin-right: 0;
	padding-left: 0;
	padding-right: 0;
	   -moz-box-shadow: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

fieldset.embedded legend {
	margin: 0 1em;
}

/* MESSAGES AND ERRORS */

.errors,
.message {
	font-size: 0.8em;
	line-height: 2;
	margin: 1em 2em;
	padding: 0.25em;
}

.message {
	background: #f3f3ff;
	border: 1px solid #b2d1ff;
	color: #006dba;
	   -moz-box-shadow: 0 0 0.25em #b2d1ff;
	-webkit-box-shadow: 0 0 0.25em #b2d1ff;
	        box-shadow: 0 0 0.25em #b2d1ff;
}

.errors {
	background: #fff3f3;
	border: 1px solid #ffaaaa;
	color: #cc0000;
	   -moz-box-shadow: 0 0 0.25em #ff8888;
	-webkit-box-shadow: 0 0 0.25em #ff8888;
	        box-shadow: 0 0 0.25em #ff8888;
}

.errors ul,
.message {
	padding: 0;
}

.errors li {
	list-style: none;
	background: transparent url(../images/skin/exclamation.png) 0.5em 50% no-repeat;
	text-indent: 2.2em;
}

.message {
    background: transparent url(../images/skin/information.png) 0.5em 50% no-repeat;
    background-position: 0.3em 0.3em;
    text-indent: 2.2em;
}

/* form fields with errors */

.error input, .error select, .error textarea {
	background: #fff3f3;
	border-color: #ffaaaa;
	color: #cc0000;
}

.error input:focus, .error select:focus, .error textarea:focus {
	   -moz-box-shadow: 0 0 0.5em #ffaaaa;
	-webkit-box-shadow: 0 0 0.5em #ffaaaa;
	        box-shadow: 0 0 0.5em #ffaaaa;
}

/* same effects for browsers that support HTML5 client-side validation (these have to be specified separately or IE will ignore the entire rule) */

input:invalid, select:invalid, textarea:invalid {
	background: #fff3f3;
	border-color: #ffaaaa;
	color: #cc0000;
}

input:invalid:focus, select:invalid:focus, textarea:invalid:focus {
	   -moz-box-shadow: 0 0 0.5em #ffaaaa;
	-webkit-box-shadow: 0 0 0.5em #ffaaaa;
	        box-shadow: 0 0 0.5em #ffaaaa;
}



table {
	border-collapse: collapse;
	width: 100%;
	margin-bottom: 1em;
}
/* TABLES
tr {
	border: 0;
}

tr>td:first-child, tr>th:first-child {
	padding-left: 1.25em;
}

tr>td:last-child, tr>th:last-child {
	padding-right: 1.25em;
}

td, th {
	line-height: 1.5em;
	padding: 0.5em 0.6em;
	text-align: left;
	vertical-align: top;
}

th {
	background-color: #efefef;
	background-image: -moz-linear-gradient(top, #ffffff, #eaeaea);
	background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #eaeaea));
	    filter: progid:DXImageTransform.Microsoft.gradient(startColorStr = '#ffffff', EndColorStr = '#eaeaea');
	-ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorStr='#ffffff', EndColorStr='#eaeaea')";
	color: #666666;
	font-weight: bold;
	line-height: 1.7em;
	padding: 0.2em 0.6em;
}

thead th {
	white-space: nowrap;
}

th a {
	display: block;
	text-decoration: none;
}

th a:link, th a:visited {
	color: #666666;
}

th a:hover, th a:focus {
	color: #333333;
}

th.sortable a {
	background-position: right;
	background-repeat: no-repeat;
	padding-right: 1.1em;
}

th.asc a {
	background-image: url(../images/skin/sorted_asc.gif);
}

th.desc a {
	background-image: url(../images/skin/sorted_desc.gif);
}

.odd {
	background: #f7f7f7;
}

.even {
	background: #ffffff;
}

th:hover, tr:hover {
	background: #E1F2B6;
}
*/
/* PAGINATION */

.pagination {
	border-top: 0;
	margin: 0;
	padding: 0.3em 0.2em;
	text-align: center;
	   -moz-box-shadow: 0 0 3px 1px #AAAAAA;
	-webkit-box-shadow: 0 0 3px 1px #AAAAAA;
	        box-shadow: 0 0 3px 1px #AAAAAA;
	background-color: #EFEFEF;
}

.pagination a,
.pagination .currentStep {
	display: inline-block;
	margin: 0 0.1em;
	padding: 0.25em 0.7em;
	text-decoration: none;
	   -moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	        border-radius: 0.3em;
}

.pagination a:hover, .pagination a:focus,
.pagination .currentStep {
	background-color: #999999;
	color: #ffffff;
	outline: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
}

.no-borderradius .pagination a:hover, .no-borderradius .pagination a:focus,
.no-borderradius .pagination .currentStep {
	background-color: transparent;
	color: #444444;
	text-decoration: none;
}

/* ACTION BUTTONS */

.buttons {
	background-color: #efefef;
	overflow: hidden;
	padding: 0.3em;
	   -moz-box-shadow: 0 0 3px 1px #aaaaaa;
	-webkit-box-shadow: 0 0 3px 1px #aaaaaa;
	        box-shadow: 0 0 3px 1px #aaaaaa;
	margin: 0.1em 0 0 0;
	border: none;
}

.buttons input,
.buttons a {
	background-color: transparent;
	border: 0;
	color: #666666;
	cursor: pointer;
	display: inline-block;
	margin: 0 0.25em 0;
	overflow: visible;
	padding: 0.25em 0.7em;
	text-decoration: none;

	   -moz-border-radius: 0.3em;
	-webkit-border-radius: 0.3em;
	        border-radius: 0.3em;
}

.buttons input:hover, .buttons input:focus,
.buttons a:hover, .buttons a:focus {
	background-color: #999999;
	color: #ffffff;
	outline: none;
	text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.8);
	   -moz-box-shadow: none;
	-webkit-box-shadow: none;
	        box-shadow: none;
}

.no-borderradius .buttons input:hover, .no-borderradius .buttons input:focus,
.no-borderradius .buttons a:hover, .no-borderradius .buttons a:focus {
	background-color: transparent;
	color: #444444;
	text-decoration: none;
}

.buttons .delete, .buttons .edit, .buttons .save {
	background-position: 0.7em center;
	background-repeat: no-repeat;
	text-indent: 25px;
}

.buttons .delete {
	background-image: url(../images/skin/database_delete.png);
}

.buttons .edit {
	background-image: url(../images/skin/database_edit.png);
}

.buttons .save {
	background-image: url(../images/skin/database_save.png);
}

a.skip {
	position: absolute;
	left: -9999px;
}

/*added by Pawel*/

#cisProcess #steps li {
    display: inline;
    padding: 0 .2em;
}

#cisProcess #steps li {
	display: inline;
	padding: 0 .2em;
}

#cisProcess #steps li.stepComplete a{
	color:green;
    background-image: url(../images/skin/tick.png);
    background-repeat: no-repeat;
    padding-right: 25px;
    background-position: 99%;
}

#cisProcess #steps li.stepDraft a{

}

#cisProcess #steps li.selectedStepComplete {
	background-color: black;
	color:green;

}

#cisProcess #steps li.selectedStepDraft {
	background-color: black;
	color:white;

}



#cisProcess #attributeGroups li {
}



#cisProcess #attributeGroups li.groupComplete a {
	color:green;
    background-image: url(../images/skin/tick.png);
    background-repeat: no-repeat;
    padding-right: 25px;
    background-position: 99%;
}

#cisProcess #attributeGroups li.groupDraft a {

}

#cisProcess #attributeGroups li.selectedGroupComplete {
	background-color: black;
	color:green;
}

#cisProcess #attributeGroups li.selectedGroupDraft {
	background-color: black;
    color:white;
}

#cisProcess #attributeGroups {
    padding-left: 0;
}



#cisProcess #steps {
	padding-bottom: 1em;
    padding-left: 0em;
}

#cisProcess #stepContent {
	padding: 0 0;
}

#cisProcess #stepContent #buttons{
	margin-top:0.5em;
}

#cisProcess #stepContent #buttons .action {
	margin: 0.2em 0 0 1em;
}


#cisProcess #stepContent p.attributeLabel {
	margin: .2em 0 .2em 0;
	color: #777777;
}

.courseGuideEntryTitle {
	font-weight: bold;
}

.floatLeft {
	float:left;
}

.floatRight {
	float:right;
}

.clear {
	clear:both;

}

.clearLeft {
	clear:left;

}

.clearRight {
	clear:right;

}

#cisProcess {



}



#cisProcess .removeColumn {
	text-align: center;
}

/*#cisProcess .ui-widget {
	font-size: 1em;
}*/

#cisProcess div.attribute {
	margin-bottom: 1em;

}


.grid-canvas .removeColumn a, div.gridContainer a.addRow {
	padding: 0px;
	font-size: .7em;
	border: 1px solid gray;
}

#addNewAssessment {
	padding: 0px;
	border: 1px solid gray;
	margin-bottom:1em;
}

#cisProcess .gridContainer {
	margin-top: 0.5em;
}

#cisProcess .addRow {
	margin-top: 1em;
}

input.editor-text, select.editor-yesno, input.editor-autocomplete, select.editor-select {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    height: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
    width: 100%;
}

div.editor-spinner, div.editor-spinner input {
    background: none repeat scroll 0 0 transparent;
    border: 0 none;
    height: 100%;
    margin: 0;
    outline: 0 none;
    padding: 0;
    width: 100%;
}

#cisProcess textarea.longText {
	width: 90%;
}

#cisProcess input.attributeSpinner {
	width: 3em;
}

#mainBanner {
	padding: 0;
	margin: 0.5em 0em 0px 1em;

}

#mainSection {
    padding: 0;
    margin: 20px 0em 20px 1em;

}

#userInfo {
    max-width: 600px;
}

.stepLabel, .groupLabel {
	margin: 0;
	padding: 0;
	display:block;
	background-color: #dedede;
	color:white;


}

.groupLabel {
	margin-left: 0px;
}

#cisProcess .slickGridCellError {
	background-color: #FFA6A6;
}


#cisProcess hr.buttonsHr {
	border: 2px solid #DEDEDE;
}

#cisProcess div.courseGuideEntrySerialized {



}

#cisProcess div.courseGuideEntryTextAreaContainer {


}



ul#proposals {
	list-style: none;

}


.ui-tabs li .ui-icon-close {
    cursor: pointer;
    float: left;
    margin: 0.4em 0.2em 0 0;
}

#cisCourseProposal, #cisCourseProposal h1, #cisCourseProposal h2, #cisCourseProposal h3, #cisCourseProposal h4 {
	line-height: 2.0em;
}

#cisCourseProposal div.step {
	margin:0 .5em;

}
#cisCourseProposal div.attributeGroup {
	margin:0;
}

#cisCourseProposal div.attributeGroup div.attributeValue {

}

#cisCourseProposal div.attributeGroup div.emptyAttributeValue {

}

#cisCourseProposal div.attributeGroup div.emptyAttributeValue table {
	border: none;


}

#cisCourseProposal div.attributeGroup div.emptyAttributeValue table td {
	border-bottom:1px dotted gray;
	height: 2em;
}

#cisCourseProposal div.attributeGroupMargin {
	margin-left:0.5em;
}



#cisCourseProposal h3.attributeGroup {
	color:gray;
}

#cisCourseProposal a.stepEdit {
	line-height: 3.0em;
	margin-left: 0.5em;
}


#cisCourseProposal a.attributeGroupEdit {
	line-height: 2.0em;
	margin-left: 0.5em;
}


#cisCourseProposal #tableOfContents {
	position:fixed;
	top: 40px;
	right: 125px;
	border: 2px solid gray;
	padding: 5px;
	font-size: .8em;
	height: 600px;
	overflow: auto;
	background:white;
}

#tableOfContents ul {
	list-style: none;
    padding-left: 0.5em;
}

#tableOfContents li {

}

#cisCourseProposal h1.courseProposalTitle {
	text-align:center;
}

.formatted table.grid {
	width:auto;
}

.formatted table.grid thead th {
	background-color: #d1d1d1;
	padding:0 .3em;
}

.formatted table.grid td {
	border-left: 1px solid #d1d1d1;
	border-right: 1px solid #d1d1d1;
	border-bottom: 1px solid #d1d1d1;
	padding:.3em .3em;
}




#cisCourseProposal #tableOfContents ul.attributeGroups {
	margin-left: 1em;
}

#cisProcess #goTo {
	margin: .5em 0;
}

#dataEntry {
	padding:.5em .5em 0 .5em;
}

div#comments ul {
	list-style-type: disc;
}

#cisProcess input.gridSpinner {
	height: 0.9em;
}


#reportABug {
	text-align: center;
}

#cisProcess #assessments .ui-tabs .ui-tabs-panel {
	padding: 0;
}

#cisProcess #assessments .ui-tabs {
	padding: 0;
}

#cisProcess #assessments .ui-widget {
	font-size:.9em;
}

#cisProcess #assessments div.assessment .weightTotal {
	font-weight: bold;
}

#cisProcess #assessments div.assessment .weightTotal.assessmentWeightAbove100 {
	color:red;
}

#cisProcess #assessments div.assessment .weightTotal.assessmentWeightBelow100 {
	color:blue;
}
#cisProcess #assessments div.assessment .weightTotal.assessmentWeight100 {
	color:green;
}

#cisProcess #assessments div.assessment div.assesmentTypeSeparator {
	margin-bottom: 1.5em;
}

#cisProcess #assessments div.assessment div.assesmentTypeSeparator p.type {
	margin-bottom: 0.3em;
	font-style: italic;
}
#cisProcess ul.attributeErrors {
	list-style: none;
    padding: 0;


}
#cisProcess ul.attributeErrors li {
	background-color:#F74848;
	color:white;
	font-weight:bold;
	font-size:.8em;
	padding:.1em .2em;
}


#cisCourseProposal div.formattedAttributeValue {
	border: 1px solid #d1d1d1;
	padding-left:0.5em;
}

#cisCourseProposal div.formattedAttributeValue ul, #cisCourseProposal div.formattedAttributeValue ol {
	padding-left:1em;
}

#cisCourseProposal .attribute div.courseGuideEntry, #cisProcess .attribute div.courseGuideEntry {
	margin:0 0 1em 0;
}


#cisCourseProposal p.courseGuideAutocompleted, #cisCourseProposal p.courseGuideNotAutocompleted {
	font-style: italic;
}

table#courseProposals {

    font-size: .9em;
}

table#courseProposals td,table#courseProposals th {
    text-align: center;

    border: 1px solid #808080;
}

#courseProposals td.processActions {
    text-align: right;
}

#courseProposals td.processActions a {
    white-space: nowrap;
}

#cisProcess #stepContent p.attributeLabel span.attributeError {
    color:red;
    padding: .5em;
    font-size: .8em;
}

ul#generalActions {

}

ul#generalActions li {
    float: left;
    list-style: none;
    margin-left: 1em;
    padding: .2em;
}

ul#generalActions li a {
    text-decoration: none;
    padding: .2em;
}

/*ul#generalActions li a:hover {
    color:white;
    background-color: #FF0000;
}*/


textarea.commentText {
    width: 600px;
}

hr.commentSeparator {
    background: #dedede;
    border: #dedede;
}

div.commentOverflow {
    max-height: 150px;
    overflow: auto;
}

#lse-banner {
    background: none repeat scroll 0 0 #000000;
    border-bottom: medium none #333333;
    /*float: left;*/
    margin-bottom: 0px;
    padding: 5px 0;
    position: relative;
    width: 100%;
}

#lse-banner #lse-logo {
    /*margin: 1px 0 5px 5px;
    position: absolute;*/
}

table.readOnlyGrid th {
    background: url("images/ui-bg_glass_75_e6e6e6_1x400.png") repeat-x scroll 50% 50% #E6E6E6;
    color: #555555;
    text-align: left;
}

table.readOnlyGrid td {
    border-color: transparent silver silver transparent;
    border-style: solid dotted solid solid;
    border-width: 1px;
    vertical-align: top;
}


.loading-indicator {
    display: inline-block;
    padding: 12px;
    background: white;
    -opacity: 0.5;
    color: black;
    font-weight: bold;
    z-index: 9999;
    border: 1px solid red;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-box-shadow: 0 0 5px red;
    -webkit-box-shadow: 0px 0px 5px red;
    -text-shadow: 1px 1px 1px white;
}

.loading-indicator label {
    padding-left: 20px;
    background: url('images/ajax-loader-small.gif') no-repeat center left;
}

div.xactions {

    width: 100px;
    height: 100px;
    overflow: visible;
    position: relative;


}

div.xactions div.action{



    overflow: visible;
    position: absolute;


}

div.slickgridactions {
    overflow: visible;
}


ul.generalProposalActions {
    text-align: right;
}

ul.generalProposalActions li {
    list-style: none;
}

#proposals, #generalActionList {
    font-size: .8em;
}

#cisCourseProposalDetails table#details td.resourcesLeft, #cisCourseProposalDetails table#details th.resourcesLeft {
    border-left:1px solid black;
}

#cisCourseProposalDetails table#details td.resourcesRight, #cisCourseProposalDetails table#details th.resourcesRight {
    border-right:1px solid black;
}

#cisCourseProposalDetails table#details {
    text-align: center;
    margin: .5em 0;
}

#cisCourseProposalDetails table#details tr.smallPrint td, #cisCourseProposalDetails table#details tr.smallPrint th {
    font-size: .7em;
}

#cisCourseProposalDetails table#details tr.mediumPrint td, #cisCourseProposalDetails table#details tr.mediumPrint th {
    font-size: .8em;
}


ul#proposalDetailsActions {
    list-style: none;
    padding:0;
}

ul#proposalDetailsActions li {

    margin-left: 1em;

}

ul#proposalDetailsActions.horizontal li {
    float: left;
}


ul#batchActions {
    list-style: none;
    padding:0;
}

ul#batchActions li {
    float: left;
    margin-left: 2em;
}

h1.proposalTitle {
    background: none repeat scroll 0 0 #D1D1D1;
    color: white;
    padding: 0.2em;
    text-align: center;
    margin: 0;
}

h1.proposalTitle span {

}

.grid-header {

}


.ui-widget-content a.defaultAction {
    color: #1C94C4;
}

div.batchActionsContainer, div.createNewProposalContainer {
    padding: .5em 0;
}

#historyEvents td {
    padding: .2em;
    font-size: .9em;
    border-bottom: 1px dotted #d1d1d1;
}

#historyEvents td.date {
    padding: .2em;
    white-space: nowrap;
}

#historyEvents td.description {
    width: 60%;
}

span.approved {
    color:green;
}

span.rejected {
    color:red;
}


.createNewProposalContainer input#name {
    width: 43em;
}

#cisProcess .ui-tabs .ui-tabs-nav li a, #cisProcess .ui-tabs .ui-tabs-nav li strong {
    padding: .4em .3em;
}

#cisProcess #stepsContainer {
    margin: .5em 0 2em;
    border: none;
}
#cisProcess #substepsContainer {
    margin: -2em 0 2em;
    border: none;
}

#cisProcess #stepsContainer #steps, #cisProcess #substepsContainer #attributeGroups{
    padding: 0;
    border: none;
    background: transparent;
}

#cisProcess #substepsContainer {
    float:right;
}

#cisProcess #stepsContainer #steps {
    border-bottom: 5px solid #808080;
}

#cisProcess #substepsContainer #attributeGroups {
    border-bottom: 3px solid #808080;
}

#cisProcess .ui-tabs li.ui-tabs-selected {
    font-weight: bold;
}


#dataEntry input.ui-button, #dataEntry a.ui-button span {
    padding: 0.1em 0.3em;
}

#dataEntry a.ui-button {
    border: 1px solid #cccccc;
    color: #555555;
}


.ui-button {
    font-size:1em;
}

.ui-tabs li {
    font-size: 1em;
}

#cisCourseProposalDetails #tableDetails1 {
    width: 400px;
}

#cisCourseProposalDetails #tableDetails2 {
    width: 400px;
}

#cisCourseProposalDetails #tableDetails2 .strong {
    font-weight: bold;
}

#cisCourseProposalDetails #tableDetails2 .indent {
    padding-left: 2em;
}

#cisCourseProposalDetails #tableDetails2 .separated {
    border-bottom: 1px dashed black;
    border-top:    1px dashed black;
}

.richTextMaxCapacity {
    font-weight: bold;
}

.slick-header .ui-sortable .slick-header-column {
    cursor: pointer;
}

.slick-sort-indicator {
    background: url("images/asc-desc.gif") repeat scroll 0 1px transparent;
}

#cisProcess #stepContent #buttons .biggerButton {
    font-weight: bold;
}

#breadcrumbsContainer {
    background-color: #d1d1d1;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}

#breadcrumbs {
    padding: 0
}

#breadcrumbs li {
    list-style: none;
    float: left;

}

#breadcrumbs li.arrow {
    margin: 0 .5em;
}

td.attribute1Value {
    border-right: 1px solid black;
    max-width: 475px;
}

td.attribute2Value {
    border-left: 1px solid black;
    max-width: 475px;
}

#comparison td {
    vertical-align: top;
    max-width: 475px;
}

#comparisonTable th.proposalHeading {
    font-size:1.2em;
}

#listActions {
    padding-left: 2em;
}

#listActions li{
    margin: .5em 0;
    list-style: square;

}

span.error {

    color: #cc0000;

}

select#currentRole {
    width: 20em;
}

.landingPanel .landingContent {
    padding: 0 0 0 1em;
}

.landingPanel .landingContent hr {
    border: 1px solid #d1d1d1;
    background: #d1d1d1;
}

.landingPanel .landingContent label {
    width: 15em;
}

#cloneJobDetails {
    border: 1px solid #000000;
}

#cloneJobDetails td, #cloneJobDetails th{
    border: 1px solid #000000;
}

#cloneJobDetails th {
    width: 25%;
}

#sessionYear option.currentYear {
    font-weight: bold;
}

#courseGuidesSummary td {
    text-align: center;
}

table#pdamGuidance {
    border: 1px solid #000000;
}

table#pdamGuidance td {
    border: 1px solid #000000;
    padding: .2em;
}

table.programmeSpecificationEntry th.number,
table.programmeSpecificationReference td.number {
    width: 2em;
    text-align: left;
    font-weight: bold;
    vertical-align: top;
}

table.programmeSpecificationEntry th.label, table.programmeSpecificationReference td.label {
    text-align: left;
    font-weight: bold;
}


table.programmeSpecificationReference td.label {
    width: 20em;
}

table.programmeSpecificationReference td.programmeSpecificationReferenceBody {
    text-align:left;
}

input.programmeStructuresURL {
    width: 55em;
}



/*programme regulations*/


div.paperRoot {
    padding: .5em 0em .5em .5em;
    background: #f1f1f1;
}

div.courseList {
    margin-top: 1em;
    min-height: 200px;
    min-width: 10em; min-height: 1em;
    background: #d1d1d1;
    width: 734px;
}


div.courseList ul {
    margin: 1em;
}
div.courseList ul li {
    background: #9dd17d;
}

div.rulePanel{
    margin-top: 1em;
    width: 540px ;
    height: 200px;
    background: #d1d1d1;
    display: none;
}

.ui-accordion h3.ui-accordion-header {
    padding-left: 2.2em;
}

div.rulesPanel {
    font-size: .8em;
}

.listDroppable, .paperHandler {
    cursor: move;
}

#accordion .ui-accordion-content {
    padding: 1em 1.5em;
}

select.courseElementDroppable {
    width: 7em;
}

.optionsToggleable {

}


.hideOptionsToggleable .optionsToggleable {
    display: none;
}


.clccAdditionalInfo {
    display: none;
}

.showOptionsToggleable .clccAdditionalInfo {
    display: block;
}



.paperOptions {
    display: none;
}

.namedList .namedListElements {
    display: none;
}

.streamLabel {
    font-size: 1.3em;
}

.programmeYearLabel {
    font-size: 1.2em;
}

.paperLabel {
    font-size: 1.1em;
    font-weight: bold;
}

.pathwayLabel {
    font-size: 1.0em;
    padding: 0.5em;
    width: 685px;
}

table.courses tbody td {
    font-size: 1.0em;
}

.simOut {
    text-decoration: line-through;
}


.notSimulation .simOut {
    text-decoration: none;
}

.unselectable {
    -moz-user-select: none;
    -khtml-user-select: none;
    -webkit-user-select: none;
    -o-user-select: none;
}

select.anyCourseDrop {
    width: 10em;
}

.simulationItem {

}

.notSimulation .simulationItem {
    display: none;
}

ul.incrementalSimulationList li{
    list-style: none;
    color:red;
}


body.notSimulation {

}

body.notSimulation div.uiLeftPanel {
    background-color: white;
}

div.uiLeftPanel {
    width: 780px;
    margin-right: 10px;
    background-color: #ffd5bd;
}

body.notSimulation p.simulationModeIndicator {
    display: none;

}

p.simulationModeIndicator {
    color: red;
}

.indent {
    margin-left: 1em;
    margin-top: 1em;
    margin-bottom: 1em;
}


.simulation span.ui-icon-folder-open, .simulation span.ui-icon-trash, .simulation .newCourseListGroup, .simulation button {
    visibility: hidden;
}

.optout {
    color: #87cefa;
}

#retrospectiveData {
    width:29em;
    display: none;
}

#retrospectiveData td {
    border-top: 2px solid #dcdcdc;
    vertical-align: top;
}

#retrospectiveData td.noData {
    vertical-align: middle;
}

#retrospectiveData td.score {
    text-align: center;
}

#retrospectiveData td.year {
    width: 0em;
    text-align: center;
    vertical-align: top;
    padding-top: 0.5em;
}

#retrospectiveData > thead th {
    vertical-align: top;
}
#retrospectiveData td.data {
    text-align: center;
}




table.courseSurveyResults {
    font-size: .8em;
    width: 206px;
}

table.courseExamsResults {
    font-size: .8em;
    width: 100px;
}

#toBePublishedCourseAverages {
    width:29em;
}

#toBePublishedCourseAverages td {
    border-top: 2px solid #dcdcdc;
    vertical-align: top;
}

#toBePublishedCourseAverages td.noData {
    vertical-align: middle;
}

#toBePublishedCourseAverages td.score {
    text-align: center;
}

#toBePublishedCourseAverages td.year {
    width: 5em;
    text-align: center;
    vertical-align: top;
    padding-top: 0.5em;
}

#toBePublishedCourseAverages > thead th {
    vertical-align: top;
}
#toBePublishedCourseAverages td.data {
    text-align: center;
}

td.optOut table, th.optOut {
    color: grey;
}


div#taughtLess3YearsContainer.disabled, div#singleLecturerContainer.disabled, div#examsQuestionContainer.disabled {
    color: #808080;
}


div#taughtLess3YearsContainer hr, div#singleLecturerContainer hr, div#commentContainer hr, div#examsQuestionContainer hr {
    border:none;
    height: 2px;
    background-color: #d1d1d1;
    margin: 1em 0 1em 0;
}

p.questionNotApplicable {
    font-style: italic;
    color:grey;
    font-weight: bold;
    color:#444444;
}

li.reasonNotApplicable {
    text-decoration: line-through;
}

p.statementExplanation {
    font-style: italic;
    font-size: .9em;
    border: 2px solid grey;
    background-color: #d1d1d1;
    padding: .2em;
    margin: .2em 0;
}

td.exams .teacherStamp, td.survey .teacherStamp {
    display: none;
}



#toBePublishedCourseAverages table.recommended td, #retrospectiveData table.recommended td {
    border:none;
}

#toBePublishedCourseAverages table.recommended td.percent, #retrospectiveData table.recommended td.percent {
    text-align: right;
}
