/*Multi Select*/
.ms-container{
  background: transparent url('../images/switch.png') no-repeat 50% 50%;
  width: 100%;
}

.ms-container:after{
  content: ".";
  display: block;
  height: 0;
  line-height: 0;
  font-size: 0;
  clear: both;
  min-height: 0;
  visibility: hidden;
}

.ms-container .ms-selectable, .ms-container .ms-selection{
  background: #fff;
  color: #555555;
  float: left;
  width: 45%;
}
.ms-container .ms-selection{
  float: right;
}

.ms-container .ms-list{
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  transition: border linear 0.2s, box-shadow linear 0.2s;
  border: 1px solid #ccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  position: relative;
  height: 200px;
  padding: 0;
  overflow-y: auto;
}

.ms-container .ms-list.ms-focus{
  border-color: rgba(82, 168, 236, 0.8);
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(82, 168, 236, 0.6);
  outline: 0;
  outline: thin dotted \9;
}

.ms-container ul{
  margin: 0;
  list-style-type: none;
  padding: 0;
}

.ms-container .ms-optgroup-container{
  width: 100%;
}

.ms-container .ms-optgroup-label{
  margin: 0;
  padding: 5px 0px 0px 5px;
  cursor: pointer;
  color: #999;
}

.ms-container .ms-selectable li.ms-elem-selectable,
.ms-container .ms-selection li.ms-elem-selection{
  border-bottom: 1px #eee solid;
  padding: 2px 10px;
  color: #555;
  font-size: 14px;
}

.ms-container .ms-selectable li.ms-hover,
.ms-container .ms-selection li.ms-hover{
  cursor: pointer;
  color: #fff;
  text-decoration: none;
  background-color: #08c;
}

.ms-container .ms-selectable li.disabled,
.ms-container .ms-selection li.disabled{
  background-color: #eee;
  color: #aaa;
  cursor: text;
}
/* remove label borders in IE6 because IE6 does not support transparency */
* html .ui-multiselect-checkboxes label { border:none }

/*CUSTOM*/
HTML.ie8-custom {
    .small-1.columns,.medium-1.columns,.large-1.columns {width:8.0% !important;}
    .small-2.columns,.medium-2.columns,.large-2.columns {width:16.0% !important;}
    .small-3.columns,.medium-3.columns,.large-3.columns {width:25% !important;}
    .small-4.columns,.medium-4.columns,.large-4.columns {width:33.0% !important;}
    .small-5.columns,.medium-5.columns,.large-5.columns {width:41.0% !important;}
    .small-6.columns,.medium-6.columns,.large-6.columns {width:50% !important;}
    .small-7.columns,.medium-7.columns,.large-7.columns {width:58.0% !important;}
    .small-8.columns,.medium-8.columns,.large-8.columns {width:66.0% !important;}
    .small-9.columns,.medium-9.columns,.large-9.columns {width:75% !important;}
    .small-10.columns,.medium-10.columns,.large-10.columns {width:83.0% !important;}
    .small-11.columns,.medium-11.columns,.large-11.columns {width:91.0% !important;}
    .small-12.columns,.medium-12.columns,.large-12.columns {width:100% !important;}


    .top-bar-section UL { width:inherit !important; }
    .top-bar-section UL LI { float:left !important; }
    .top-bar { height:inherit !important; }
       .row { width: 960px !important; }
       .row .row { width: 100% !important; }

}

.top-bar .name h1 a small {
	color: #fff;
}

label {
	cursor: default;
}

.mce-tinymce {
	margin-bottom: 1rem !important;
}

div.upload-container{
	margin-bottom: 1rem !important;
}

.alert-box.error {
	background-color: #f04124;
	border-color: #de770f;
	color: #fff;
}

	.alert-box.error p{
		margin-bottom: .1em;
	}

  .spinner {
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -50px; /* half width of the spinner gif */
    margin-top: -50px; /* half height of the spinner gif */
    text-align:center;
    z-index:1234;
    overflow: auto;
    width: 100px; /* width of the spinner gif */
    height: 102px; /*hight of the spinner gif +2px to fix IE8 issue */
}

small.warning {
display: block;
padding: 0.375rem 0.5625rem 0.5625rem;
margin-top: -1px;
margin-bottom: 1rem;
font-size: 0.75rem;
font-weight: normal;
font-style: italic;
background: #fcf8e3;
color: #8a6d3b;