/** Curriculum Development System Specific Styles ***/
.topContainer{
  padding-top: 3em
}
.noleftmargin{
	margin-left: 0;
	padding-left: 0
}

.avatar {
	height:50px;
	width:50px;
	margin: 0 5px;
}

.req {
	color:#F00;
	font-weight: bold;
}

.table thead>tr>th:last-child,
.table tbody>tr>td:last-child {
	text-align:right;
}

table.lastchild-normal thead>tr>th:last-child,
table.lastchild-normal tbody>tr>td:last-child {
	text-align:inherit;
}

.breadcrumb>li+li:before {
	padding: 0 0 0 5px;
}
.checkbox-additional+.checkbox{
	margin-top: -5px;
}

.radio-additional+.radio{
  margin-top: -5px;
}

.cost-total {
    background-color:#ddd;
    padding-top:10px;
    padding-bottom:10px;
  }

/** Pop-up helpers **/
.popable i {
  font-size:1.5em;
  vertical-align: middle;
  padding-bottom: 6px;
}

/** Show that form error list is clikable**/
#errorLabelContainer li label {
  color:#3a87ad;
}
#errorLabelContainer li label:hover {
  cursor:pointer;
}

/** Sticky Footer **/
html {
  position: relative;
  min-height: 100%;
}
body {
  /* Margin bottom by footer height */
  margin-bottom: 60px;
}
#footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  /* Set the fixed height of the footer here */
  height: 60px;
  color: #FFF;
  background-color: #535353;
}
#footer div.container{
  margin:1em;
}

#footer a {
  color:#FFF;
}
.label-inverse {
  background-color: black
}

.btn-inverse{
  background-color: #161616;
  color:white;
}

.btn-inverse:hover,.btn-inverse:focus, .btn-inverse:active, .btn-inverse.active,
.open .dropdown-toggle.btn-inverse {
    color: white;
    background-color: #363636;
    border-color: #363636;
}

.well h3 {
  margin-top:0;
}

/* a11y */
p a {
  text-decoration: underline;
}
p a.btn {
  text-decoration: none;
}


.skill-ol{
  list-style-type: none;
  list-style-position: outside;
  counter-reset: objectivecounter;
  text-indent: -5.5em;
  margin-left: 5.5em;
}
.skill-ol > li {
  display: list-item;
}

.skill-ol > li::before {
  content:'Objective ' counter(objectivecounter) ': ';
  counter-increment: objectivecounter;
}

.skill-ol > li:not(:last-child) {
  margin-bottom: 1em;
}