.loginBox {
    background: #fff;
    width: 320px;
    height: 224px;
    padding: 15px 20px 15px 20px;
    position: absolute;
    z-index: 5;
    top: 50%;
    z-index: 11;
    left: 50%;
    margin-left: -156px;
    margin-top: -112px;
}

.lsTitle {
    font-family: 'Unisect Black';
    margin: 0px;
    font-size: 30px;
    padding: 0px;
    float: left;
}

.loginBox label {
    color: #0183a8;
    font-weight: bold;
    font-size: 16px;
}

.blue {
    color: #0183a8;
}

.orange {
    color: #e2472d;
}

.gold {
    color: #ecbe10;
}

.loginShadow {
    width: 362px;
    height: 256px;
    background: #000;
    position: absolute;
    z-index: 4;
    top: 50%;
    left: 50%;
    margin-left: -150px;
    margin-top: -106px;
    opacity: 0.4;
    -moz-opacity: 0.4;
    filter: alpha(opacity = 40);
}

input[type="Text"], input[type="Password"] {
    width: 310px;
    font-size: 12px;
    font-weight: bold;
    color: #0183a8;
    height: 30px;
    outline: none;
    margin-top: 26px;
    padding-left: 10px;
    margin-bottom: 5px;
    border: 1px solid #aaaaaa;
}

.bottom {
    margin-top: 10px;
}

.imageholder {
    width: 110%;
    max-height: 100%;
}

.nuna {
    float: left;
}

.nuna {
    border: none;
    display: block;
    width: 90px;
    height: 120px;
}

.bottom .small {
    font-size: 14px;
}

.bottom a {
    color: #666;
    font-size: 18px;
    font-family: 'Trebuchet MS';
    text-decoration: none;
    font-weight: bold;
}

.bottom button {
    color: #666;
    font-size: 18px;
    font-family: 'Trebuchet MS';
    text-decoration: none;
    font-weight: bold;
	border:none;
	background-color: Transparent;
    background-repeat:no-repeat;
}

.bottom a:hover {
    text-decoration: underline;
    cursor: pointer;

}

.bottom button:hover {
    text-decoration: underline;
    cursor: pointer;
	border:none;
	background-color: Transparent;
    background-repeat:no-repeat;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

.loginBox fieldset {
    display: block;
    border: none;
    -webkit-margin-start: 0;
    -webkit-margin-end: 0;
    -webkit-padding-before: 10px;
    -webkit-padding-start: 0;
    -webkit-padding-end: 0;
    -webkit-padding-after: 0;
}

.loginBox fieldset div {
    background: #fff;
    display: block;
}

body {
background: rgba(34, 48, 59, 1.0);
    font: normal 14px Trebuchet MS, san-serif;
    padding: 0px;
    margin: 0px;
    overflow-x: hidden;
    overflow-y: hidden;
}








/* REGISTRATION FORM */
/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Montserrat);

/*form styles*/
#registrationForm {
	width: 404px;
    z-index: 200;
	text-align: center;
    top: -900px;
	position: absolute;
    left: 50%;
    margin-left: -180px;
    height: 50px;
    margin-top: 300px;
    padding-top: 20px;
    background: rgba(41, 107, 132, 0.95);
    color: white;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
}
#registrationForm fieldset {
	border: 0 none;
	border-radius: 3px;
    position: absolute;
    background: white;
    width: 100%;
	padding: 20px 30px;
    top: 50px;
	box-sizing: border-box;
    margin: 0px;
}
/*Hide all except first fieldset*/
#registrationForm fieldset:not(:first-of-type) {
	display: none;
}
/*inputs*/
/*buttons*/
#registrationForm .action-button {
	width: 100px;
	background: #0183a8;
	font-weight: bold;
	color: white;
	border: 0 none;
	border-radius: 1px;
	cursor: pointer;
	padding: 10px 5px;
	margin: 10px 5px;
}
#registrationForm .action-button:hover, #registrationForm .action-button:focus {
	box-shadow: 0 0 0 2px white, 0 0 0 3px #0183a8;
}
/*headings*/
.fs-title {
	font-size: 15px;
	text-transform: uppercase;
	color: #2C3E50;
	margin-bottom: 10px;
}
.fs-subtitle {
	font-weight: normal;
	font-size: 13px;
	color: #666;
	margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
    margin-left: -42px;
    width:100%;
	margin-bottom: 30px;
    margin-top: 20px;
	overflow: hidden;
	/*CSS counters to number the steps*/
	counter-reset: step;
    -webkit-margin-before: 0;
    -webkit-margin-after: 0;
    -webkit-margin-start: 0px;
    position: absolute;
    top: -10px;
    padding-bottom: 10px;
    -webkit-margin-end: 0px;
    -webkit-padding-start: 0;
}

#progressbar li {
	list-style-type: none;
	text-transform: uppercase;
	font-size: 9px;
	width: 33.33%;
	float: left;
	position: relative;
}
#progressbar li:before {
	content: counter(step);
	counter-increment: step;
	width: 20px;
	line-height: 20px;
	display: block;
	font-size: 10px;
	color: #333;
	background: white;
	border-radius: 3px;
	margin: 0 auto 5px auto;
}

/*progressbar connectors*/
#progressbar li:after {
	content: '';
	width: 100%;
	height: 2px;
	background: white;
	position: absolute;
	left: -50%;
	top: 9px;
	z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
	/*connector not needed before the first step*/
	content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
	background: #e2472d;
	color: white;
}


/* FLOATING LABELS */
@import url("http://fonts.googleapis.com/css?family=Roboto");

.fieldHolder {
    text-align: left;
}

.fieldHolder .specificLabel label {
    top: 0px;
    left: -2px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 3px;
    padding-right:3px;
    font-size: 20px;
    color: #0183a8;
    background: transparent;
    position: relative;
}

.fieldHolder .css.active label {
    top: 0px;
    left: -2px;
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: 3px;
    padding-right:3px;
    font-size: 20px;
    color: #0183a8;
    background: transparent;
}

.css {
  display: inline-block;
  position: relative;
}

input {
  transition: .1s all linear;
}

.fieldHolder label {
  position: absolute;
  top: 36px;
  left: 10px;
  font-size: 12px;
  font-weight: bold;
  color: #aaa;
  transition: .1s all linear;
  cursor: text;
}


/* SELECT BOXES */
h1 {
  font-weight: normal;
  font-size: 40px;
  font-weight: normal;
  text-transform: uppercase;
}
h1 span {
  font-size: 13px;
  display: block;
  padding-left: 4px;
}

p {
  margin-top: 200px;
}
p a {
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  color: #fff;
  padding: 5px 10px;
  margin: 0 5px;
  background-color: #e2472d;
  -moz-transition: all 0.2s ease-in;
  -o-transition: all 0.2s ease-in;
  -webkit-transition: all 0.2s ease-in;
  transition: all 0.2s ease-in;
}
p a:hover {
  background-color: #ab3326;
}

.select-hidden {
  display: none;
  visibility: hidden;
  padding-right: 10px;
}

.select {
  cursor: pointer;
  display: inline-block;
  position: relative;
  font-size: 16px;
  color: white;
  min-width: 110px;
  height: 40px;
}

.imageCover {
    z-index: 10;
    height: 100%;
    width: 100%;
    position: absolute;
    display: block;
}

.select-styled {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #e2472d;
  padding: 8px 15px;
}
.select-styled:after {
  content: "";
  width: 0;
  height: 0;
  border: 7px solid transparent;
  border-color: white transparent transparent transparent;
  position: absolute;
  top: 16px;
  right: 10px;
}
.select-styled:hover {
  background-color: #0183a8;
}
.select-styled:active, .select-styled.active {
  background-color: #e2472d;
}
.select-styled:active:after, .select-styled.active:after {
  top: 9px;
  border-color: transparent transparent white transparent;
}

.select-options {
  display: none;
  position: absolute;
  min-width: 100%;
  padding-left: 30px;
  left: 0;
  z-index: 999;
  max-height: 231px;
  overflow-y: auto;
  margin: 0;
    top: 100%;
  padding: 0;
  list-style: none;
  background-color: #e2472d;
}
.select-options li {
  margin: 0;
  padding: 10px 0px;
    padding-right: 20px;
  text-indent: 15px;
}
.select-options li:hover {
  color: white;
  background: #0183a8;
}
.select-options li[rel="hide"] {
  display: none;
}

/* LOGIN ANIMATION */

.loader {
  position: relative;
  margin: auto;
  width: 360px;
  color: #e16745;
  font-family: "Unisect";
    text-align: center;
  font-size: 40px;
    background: white;
    overflow: hidden;
  text-shadow: 3px 3px 5px rgba(0,0,0,0.3);
    text-align: center;
}

.loader:after {
  content: "";
  display: table;
  clear: both;
}

.loader span {
  float: left;
  height: 50px;
  line-height: 50px;
  width: 100%;
}

.covers {
  position: absolute;
  height: 100%;
  width: 100%;
}

.covers span {
    background: rgba(255, 255, 255, 0.5);    
  animation: up 2s infinite;
  -webkit-animation: up 10s infinite;
  -moz-animation: up 2s infinite;
    width: 5px;
    transform:rotate(20deg);
-ms-transform:rotate(20deg); /* IE 9 */
-webkit-transform:rotate(20deg); /* Opera, Chrome, and Safari */
    height: 80px;
    margin-left: 64px;
    margin-top: -10px;
}

@keyframes up {
  50%  { margin-left: 350px; }
}
@-webkit-keyframes up {
  10%  { margin-left: 64px; }
  50%  { margin-left: 300px; }
  90%  { margin-left: 64px; }
}
@-moz-keyframes up {
  50%  { margin-left: 350px; }
}

@-webkit-keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 0;
    width: 10px;
  }

  50% {
    height: 20px;
    width: 10px;
  }
}
@-moz-keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 0;
    width: 10px;
  }

  50% {
    height: 20px;
    width: 10px;
  }
}
@-ms-keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 0;
    width: 10px;
  }

  50% {
    height: 20px;
    width: 10px;
  }
}
@keyframes check {
  0% {
    height: 0;
    width: 0;
  }

  25% {
    height: 0;
    width: 10px;
  }

  50% {
    height: 20px;
    width: 10px;
  }
}
.unstyled {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

li {
  margin: 20px 0;
}

.centered {
  width: 300px;
  margin: auto;
}

.text-center {
  text-align: center;
}

h2 {
  color: #4571ec;
}

.control-inline label {
  display: inline;
}

:not(#foo) .styled-checkbox {
  position: absolute;
  opacity: 0;
}
:not(#foo) .styled-checkbox + label {
  position: relative;
  cursor: pointer;
  padding: 0;
}
:not(#foo) .styled-checkbox + label:before {
  content: '';
  margin-right: 10px;
  display: inline-block;
  vertical-align: text-top;
  width: 20px;
  height: 20px;
  background: white;
}
:not(#foo) .styled-checkbox + label:before {
    background: #ccc;
}
:not(#foo) .styled-checkbox:focus + label:before, :not(#foo) .styled-checkbox:hover + label:before {
  background: #ccc;
}
:not(#foo) .styled-checkbox:checked + label:before {
  background: #e14429;
}
:not(#foo) .styled-checkbox.disabled + label, :not(#foo) .styled-checkbox[disabled] + label {
  color: #b8b8b8;
}
:not(#foo) .styled-checkbox.disabled + label:before, :not(#foo) .styled-checkbox[disabled] + label:before {
  box-shadow: none;
  background: #ddd;
}
:not(#foo) .styled-checkbox:checked + label:after {
  content: '';
  position: absolute;
  left: 6px;
  top: 9px;
  background: white;
  width: 2px;
  height: 2px;
  box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
