/* Reset.css*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  position: relative;
}
ul {
  list-style: none;
}
ol {
    padding-left:20px;
    margin:8px 0;
}
blockquote, q {
  quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Container styles*/
html, body {
  height: 100%;
}
.line-through{
  text-decoration:line-through;
}
.hidden{
  display:none;
}
.clear{
  clear:both;
}
.tooltip{
  display: inline;
  position: relative;
}
.tooltip:hover:before{
  border: solid;
  border-color: #215496 transparent;
  border-width: 0 6px 6px 6px;
  bottom: -10px;
  content: "";
  position: absolute;
  z-index: 99;
  left: 50%;
}
.tooltip:hover:after{
  background: #215496;
  border-radius: 5px;
  bottom: -35px;
  color: #fff;
  content: attr(data-title);
  left: 20%;
  padding: 5px 15px;
  position: absolute;
  z-index: 98;
  width: 220px;
}
.tooltip-right{
  text-align:right;
}
.tooltip-right:hover:before{
  right: 50%;
  left:initial;
}
.tooltip-right:hover:after{
  right: 20%;
  left:initial;
}

ul.nav, .no-select, .contextMenuItem{
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.contextMenuItem{
  cursor:pointer;
}
#notification_count {
  position: absolute;
  font-family: courier;
  top: 3px;
  left: 21px;
  font-size: 10px;
  color: #FFF;
  font-weight: bold;
  background: #F00;
  padding: 0px 2px;
  border: 1px solid #FAA;
  border-radius: 3px;
  z-index: 1;
}
#notification_count_exp {
	position: absolute;
	font-family: courier;
	top: 18px;
	left: 21px;
	font-size: 10px;
	color: #FFF;
	font-weight: bold;
	background: #ff5708;
	padding: 0px 2px;
	border: 1px solid #ff890e;
	border-radius: 3px;
	z-index: 1;
}

#docs_loader{
  position:fixed;
  top:50%;
  right:0;
  bottom:0;
  margin-top:-50px;
  height:100px;
  position: fixed;
  width: 100%;
  left:50%;
  font-size:24px;
  min-width:800px;
  margin: 0 0 0 -50%;
  text-align:center;
}
#notification_count.empty{
  display:none;
}
/* TASKS container */
#client_logo {
  position: absolute;
  bottom:50px;
  right: 20px;
  width: 340px;
  height: 120px;
  z-index: 5;
  opacity: 0.9;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:right;
}
#attachments h3{
  margin-bottom:0;
  margin-top:0;
}
#container {
  height: 100%;
  position: relative;
  /* background: #AAA;*/
}
.tab-content{
  overflow:initial;
}
/* DOCS container */
#container-docs {
  position: absolute;
  top: 36px;
  bottom: 0px;
  left: 0px;
  right: 0px;
  overflow: hidden;
}
#content {
  position: absolute;
  top: 35px;
  left: 0px;
  right: 0px;
  bottom: 0px;
}
body {
  padding: 0px;
  margin: 0px;
  font-family: 'Helvetica Neue', Sans-Serif;
  font-size: 13px;
}

/* Text styles*/
a {
  color: #3274D7;
  text-decoration: none;
}

h1 {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}
h2 {
  font-size: 15px;
  color: #555;
  font-weight: bold;
  margin: 0px 0px 10px;
}
h3{
  font-size: 15px;
  color: #555;
  font-weight: bold;
  margin: 10px 0px;
}

blockquote {
  margin: 15px;
  font-size: 14px;
  color: #333;
  line-height: 1.5;
}

strong {
  font-weight: bold;
}

/* UI.Dropdown styles*/
.caret {
  width: 0;
  height: 0;
  display: inline-block;
  content: '';
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid black;
  vertical-align: top;
  opacity: 0.3;
}

.dropdown {
  position: relative;
}
.dropdown_menu {
  display: none;
  position: absolute;
  background: #FFF;
  border: 1px solid #AAA;
  padding: 4px 0 0;
  box-shadow: 0 5px 10px rgba(0,0,0,0.2);
  border-radius: 0 0 4px 4px;
  min-width: 180px;
  z-index: 103;
  top: 100%;
  left: 0;
  margin-top: 2px;
}
.dropdown_open .dropdown_menu {
  display: block;
  overflow-y:auto;
}
.dropdown_menu li {
  display: block;
  line-height: 18px;
  color: #999;
}
.dropdown_menu li .expiredText{
	color: red
}

.dropdown_menu li a {
  display: block;
  text-shadow: none;
  color: #333;
  clear: both;
  white-space: nowrap;
  padding: 3px 15px;
  text-decoration: none;
}
.dropdown_menu li a.ticked {
  background-color: #CCC;
}
.dropdown_menu li.active-nav-item a:not(.disabled), .dropdown_menu li a:not(.disabled):hover{
  background-color: #3274D7;
  color: #FFF;
  cursor:pointer;
}
#topbar .dropdown_menu li a:not(.disabled):hover i,
.dropdown_menu li.active-nav-item a:not(.disabled) i,
.dropdown_menu li a:not(.disabled):hover i {
  background-image: url('/img/glyphicons-halflings-white.png');
}
.dropdown_menu li.divider {
  height: 1px;
  margin: 5px 1px;
  overflow: hidden;
  background-color: #E5E5E5;
  border-bottom: 1px solid #FFF;
}

.dropdown_menu li.header {
  text-transform: uppercase;
  font-weight: bold;
  font-size: 13px;
  padding: 3px 15px;
  position:relative;
}
.dropdown_menu li.header span.header-info.success{
  color:#0B0;
}
.dropdown_menu li.header span.header-info.error{
  color:#F00;
}
.dropdown_menu li.header span.header-info:hover{
  text-decoration:underline;
}
.dropdown_menu li.header span.header-info{
  font-size:12px;
  font-weight:normal;
  text-transform:none;
  display:block;
  font-style:italic;
  line-height:100%;
  padding-top:3px;
}
.dropdown_menu li.header span.header-info i{
  margin:0 5px 0 0;
}
.btn-group .dropdown_menu {
  right: 0;
  left: auto;
}

/* Topbar styles */
#topbar {
  padding: 0;
  background: #215496 url('/img/minilogo.png') no-repeat center;
  /* font-weight: bold;*/
  /* background-image: -webkit-linear-gradient(top, #444, #333);*/
  height: 35px;
  min-width: 850px;
  border-bottom: 1px solid #AAA;
}
#topbar.tasks{
  background: #215496 url('/img/minilogo_tasks.png') no-repeat center;
}
#topbar.docs{
  background: #215496 url('/img/minilogo_docs.png') no-repeat center;
}

#topbar ul li ul div{
  max-height:600px;
  overflow-y:auto;
  overflow-x:hidden;
}

@media only screen and (max-width: 1500px){
  #topbar {
    background: #215496;
  }
}
@media only screen and (max-width: 1450px){
  #topbar.tasks{
    background: #215496 url('/img/minilogo_tasks.png') no-repeat 655px;
  }
}

#topbar_name {
  padding: 5px;
  width: 300px;
  float: left;
  font-size: 23px;
  text-shadow: 0px 1px 2px #333;
  color: #FFF;
  cursor: pointer;
}
#topbar_name img {
  float: left;
  margin-right: 8px;
  margin-top: 2px;
}
#topbar .nav {
  margin: 0px;
}
#topbar .nav > li {
  font-size: 15px;
  padding: 10px 15px;
  color: #EEE;
  width: auto;
  float: left;
  /* text-shadow: 0px -1px 2px rgba(0,0,0,0.25);*/
  cursor: pointer;
}
#topbar .nav > li > a {
  display:inline;
  color: #FFF;
}
#topbar .nav > li.active {
  background: rgba(255,255,255,0.7);
  color: #333;
  text-shadow: none;
  /* box-shadow: inset 0px 3px 5px #FFF;*/
}
#topbar .nav > li.active a {
  color: #333;
}
#topbar .nav > li .caret {
  opacity: 1;
  margin-top: 7px;
  border-top-color: #DDD;
}
#topbar .nav > li:hover {
  color: #FFF;
}
#topbar .nav > li:hover .caret, #topbar .nav .dropdown_open .caret {
  border-top-color: #FFF;
}

#topbar .nav .dropdown_open {
  text-shadow: none;
  color: #FFF;
}

#topbar .right .dropdown_menu {
  right: 0px;
  left: auto;
}

#topbar .dropdown_menu::before {
  content: '';
  display: inline-block;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-bottom: 7px solid #AAA;
  position: absolute;
  top: -7px;
}
#topbar .dropdown_menu::after {
  content: '';
  display: inline-block;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid white;
  position: absolute;
  top: -6px;
}
#topbar .right .dropdown_menu::before {
  right: 15px;
}
#topbar .right .dropdown_menu::after {
  right: 16px;
}
#topbar .right .dropdown_menu.notification_dropdown::before{
  right:15px;
}
#topbar .right .dropdown_menu.notification_dropdown::after{
  right:16px;
}
#topbar .left .dropdown_menu::after {
  left: 31px;
}
#topbar .left .dropdown_menu::before {
  left: 30px;
}
#topbar .right  .dropdown_menu.icon::before {
  right: 15px;
}
#topbar .right .dropdown_menu.icon::after {
  right: 16px;
}
#topbar .pill {
  position: relative;
  border-left: 1px solid #FFF;
}
#topbar ul.left>li.pill {
  border-right: 1px solid #FFF;
  border-left: 0;
}
#topbar .pill:hover, #topbar .pill.open , #topbar .pill.dropdown_open {
  background-color: rgba(255,255,255,0.6);
}
#topbar .pill:hover>i, #topbar .pill.open>i , #topbar .pill.dropdown_open>i {
  background-image: url('/img/glyphicons-halflings.png');
}
#topbar .pill li {
  min-width: 150px;
}
#topbar .pill span.location {
  font-style: italic;
  font-size: 11px;
  float: right;
}


#topbar .right {
  float: right;
}
#topbar .left {
  float: left;
}

.modal-row-description{
    position: relative;
}

.modal-row-description .synced_p{
    color: grey;
    font-style:italic;
}

.mutations .modal-row-description:hover .share-link{
    opacity:1;
}

.mutations .share-link{
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    line-height:20px;
    height: 20px;
    padding: 2px 8px;
    border-radius:6px;
    background-color: #dddddd;
}


div.share-link{
    cursor:pointer;
    position: absolute;
    right: 8px;
    bottom: 8px;
    color: #3274D7;
}

div.share-link span,
.blue-overlay
{
    filter: invert(42%) sepia(90%) saturate(2640%) hue-rotate(202deg) brightness(88%) contrast(89%);
}
div.share-link:hover{
    text-decoration: underline;
}

p + div.share-link{
    bottom: 1px;
}

.black-tooltip{
    display: block;
    position: absolute;
    right: 0;
    width: 240px;
    background: #000000d9;
    bottom: calc(100% + 8px);
    padding: 4px;
    border-radius: 4px;
    color: #fffc;
    text-align: center;
}

.black-tooltip-container{
    position: relative;
    height: 0;
    width: 100%;
    transition: opacity 0.3s linear;
    opacity: 0;
}

.black-tooltip-left .black-tooltip {
    left:0;
    right:auto;

}
.black-tooltip-container.show {
    opacity: 1;
}

.black-tooltip-container::after{
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    clear: both;
    border-right: 8px solid #0000;
    border-left: 8px solid #0000;
    border-top: 8px solid #000000d9;
    bottom: 0;
    right: 6px;
}
.black-tooltip-left.black-tooltip-container::after{
    right:auto;
    left:6px;
}
/* Form Styles*/
.error-message {
  color: #F00;
}
/* Button styles*/


/* Icon Styles*/

[class^="icon-"],
[class*=" icon-"] {
  display: inline-block;
  width: 14px;
  height: 14px;
  line-height: 18px;
  margin-top: 1px;
  vertical-align: text-top;
  background-image: url("/img/glyphicons-halflings.png");
  background-position: 14px 14px;
  background-repeat: no-repeat;
}
.icon-white, .btn-inverse i, .btn-primary i, .btn-info i, .btn-success i, .btn-danger i {
  background-image: url("/img/glyphicons-halflings-white.png");
}
.icon-red:not(.icon-white),  #topbar .pill:hover i.icon-red {
  background-image: url("/img/glyphicons-halflings-red.png");
}

.icon-green, #topbar .pill:hover i.icon-green {
  background-image: url("/img/glyphicons-halflings-green.png");
}
.icon-glass {
  background-position: 0      0;
}
.icon-music {
  background-position: -24px 0;
}
.icon-search {
  background-position: -48px 0;
}
.icon-envelope {
  background-position: -72px 0;
}
.icon-heart {
  background-position: -96px 0;
}
.icon-star {
  background-position: -120px 0;
}
.icon-star-empty {
  background-position: -144px 0;
}
.icon-user {
  background-position: -168px 0;
}
.icon-film {
  background-position: -192px 0;
}
.icon-th-large {
  background-position: -216px 0;
}
.icon-th {
  background-position: -240px 0;
}
.icon-th-list {
  background-position: -264px 0;
}
.icon-ok {
  background-position: -288px 0;
}
.icon-remove {
  background-position: -312px 0;
}
.icon-zoom-in {
  background-position: -336px 0;
}
.icon-zoom-out {
  background-position: -360px 0;
}
.icon-off {
  background-position: -384px 0;
}
.icon-signal {
  background-position: -408px 0;
}
.icon-cog {
  background-position: -432px 0;
}
.icon-trash {
  background-position: -456px 0;
}
.icon-home {
  background-position: 0 -24px;
}
.icon-file {
  background-position: -24px -24px;
}
.icon-time {
  background-position: -48px -24px;
}
.icon-road {
  background-position: -72px -24px;
}
.icon-download-alt {
  background-position: -96px -24px;
}
.icon-download {
  background-position: -120px -24px;
}
.icon-upload {
  background-position: -144px -24px;
}
.icon-inbox {
  background-position: -168px -24px;
}
.icon-play-circle {
  background-position: -192px -24px;
}
.icon-repeat {
  background-position: -216px -24px;
}
.icon-refresh {
  background-position: -240px -24px;
}
.icon-list-alt {
  background-position: -264px -24px;
}
.icon-lock {
  background-position: -287px -24px;
}
.icon-flag {
  background-position: -312px -24px;
}
.icon-headphones {
  background-position: -336px -24px;
}
.icon-volume-off {
  background-position: -360px -24px;
}
.icon-volume-down {
  background-position: -384px -24px;
}
.icon-volume-up {
  background-position: -408px -24px;
}
.icon-qrcode {
  background-position: -432px -24px;
}
.icon-barcode {
  background-position: -456px -24px;
}
.icon-tag {
  background-position: 0 -48px;
}
.icon-tags {
  background-position: -25px -48px;
}
.icon-book {
  background-position: -48px -48px;
}
.icon-bookmark {
  background-position: -72px -48px;
}
.icon-print {
  background-position: -96px -48px;
}
.icon-camera {
  background-position: -120px -48px;
}
.icon-font {
  background-position: -144px -48px;
}
.icon-bold {
  background-position: -167px -48px;
}
.icon-italic {
  background-position: -192px -48px;
}
.icon-text-height {
  background-position: -216px -48px;
}
.icon-text-width {
  background-position: -240px -48px;
}
.icon-align-left {
  background-position: -264px -48px;
}
.icon-align-center {
  background-position: -288px -48px;
}
.icon-align-right {
  background-position: -312px -48px;
}
.icon-align-justify {
  background-position: -336px -48px;
}
.icon-list {
  background-position: -360px -48px;
}
.icon-indent-left {
  background-position: -384px -48px;
}
.icon-indent-right {
  background-position: -408px -48px;
}
.icon-facetime-video {
  background-position: -432px -48px;
}
.icon-picture {
  background-position: -456px -48px;
}
.icon-pencil {
  background-position: 0 -72px;
}
.icon-map-marker {
  background-position: -24px -72px;
}
.icon-adjust {
  background-position: -48px -72px;
}
.icon-tint {
  background-position: -72px -72px;
}
.icon-edit {
  background-position: -96px -72px;
}
.icon-share {
  background-position: -120px -72px;
}
.icon-check {
  background-position: -144px -72px;
}
.icon-move {
  background-position: -168px -72px;
}
.icon-step-backward {
  background-position: -192px -72px;
}
.icon-fast-backward {
  background-position: -216px -72px;
}
.icon-backward {
  background-position: -240px -72px;
}
.icon-play {
  background-position: -264px -72px;
}
.icon-pause {
  background-position: -288px -72px;
}
.icon-stop {
  background-position: -312px -72px;
}
.icon-forward {
  background-position: -336px -72px;
}
.icon-fast-forward {
  background-position: -360px -72px;
}
.icon-step-forward {
  background-position: -384px -72px;
}
.icon-eject {
  background-position: -408px -72px;
}
.icon-chevron-left {
  background-position: -432px -72px;
}
.icon-chevron-right {
  background-position: -456px -72px;
}
.icon-plus-sign {
  background-position: 0 -96px;
}
.icon-minus-sign {
  background-position: -24px -96px;
}
.icon-remove-sign {
  background-position: -48px -96px;
}
.icon-ok-sign {
  background-position: -72px -96px;
}
.icon-question-sign {
  background-position: -96px -96px;
}
.icon-info-sign {
  background-position: -120px -96px;
}
.icon-screenshot {
  background-position: -144px -96px;
}
.icon-remove-circle {
  background-position: -168px -96px;
}
.icon-ok-circle {
  background-position: -192px -96px;
}
.icon-ban-circle {
  background-position: -216px -96px;
}
.icon-arrow-left {
  background-position: -240px -96px;
}
.icon-arrow-right {
  background-position: -264px -96px;
}
.icon-arrow-up {
  background-position: -289px -96px;
}
.icon-arrow-down {
  background-position: -312px -96px;
}
.icon-share-alt {
  background-position: -336px -96px;
}
.icon-resize-full {
  background-position: -360px -96px;
}
.icon-resize-small {
  background-position: -384px -96px;
}
.icon-plus {
  background-position: -408px -96px;
}
.icon-minus {
  background-position: -433px -96px;
}
.icon-asterisk {
  background-position: -456px -96px;
}
.icon-exclamation-sign {
  background-position: 0 -120px;
}
.icon-gift {
  background-position: -24px -120px;
}
.icon-leaf {
  background-position: -48px -120px;
}
.icon-fire {
  background-position: -72px -120px;
}
.icon-eye-open {
  background-position: -96px -120px;
}
.icon-eye-close {
  background-position: -120px -120px;
}
.icon-warning-sign {
  background-position: -144px -120px;
}
.icon-plane {
  background-position: -168px -120px;
}
.icon-calendar {
  background-position: -192px -120px;
}
.icon-random {
  background-position: -216px -120px;
}
.icon-comment {
  background-position: -240px -120px;
}
.icon-magnet {
  background-position: -264px -120px;
}
.icon-chevron-up {
  background-position: -288px -120px;
}
.icon-chevron-down {
  background-position: -313px -119px;
}
.icon-retweet {
  background-position: -336px -120px;
}
.icon-shopping-cart {
  background-position: -360px -120px;
}
.icon-folder-close {
  background-position: -384px -120px;
}
.icon-folder-open {
  background-position: -408px -120px;
}
.icon-resize-vertical {
  background-position: -432px -119px;
}
.icon-resize-horizontal {
  background-position: -456px -118px;
}
.icon-wrench {
  background-position: -360px -144px;
}

.icon-funnel{
  background-position: -408px -144px;
}

/* Button Styles*/
.btn {
  display: inline-block;
  /* IE7 inline-block hack */

  zoom: 1;
  padding: 4px 10px 4px;
  margin-bottom: 0;
  font-size: 13px;
  line-height: 18px;
  color: #333333;
  text-align: center;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  vertical-align: middle;
  background-color: #f5f5f5;
  background-image: -moz-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -ms-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: -o-linear-gradient(top, #ffffff, #e6e6e6);
  background-image: linear-gradient(top, #ffffff, #e6e6e6);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e6e6e6', GradientType=0);
  border-color: #e6e6e6 #e6e6e6 #bfbfbf;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
  border: 1px solid #cccccc;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  cursor: pointer;
  margin-left: .3em;
}
.btn:hover,
.btn:active,
.btn.active,
.btn.disabled,
.btn[disabled] {
  background-color: #e6e6e6;
}
a.disabled{
  color:#AAA;
  cursor:default;
}
.btn:active,
.btn.active {
  background-color: #cccccc \9;
}
.btn:hover {
  color: #333333;
  text-decoration: none;
  background-color: #e6e6e6;
  background-position: 0 -15px;
  -webkit-transition: background-position 0.1s linear;
  -moz-transition: background-position 0.1s linear;
  -ms-transition: background-position 0.1s linear;
  -o-transition: background-position 0.1s linear;
  transition: background-position 0.1s linear;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn.active,
.btn.dropdown_open,
.btn:active {
  background-image: none;
  -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  background-color: #e6e6e6;
  background-color: #d9d9d9 \9;
  outline: 0;
}
.btn.disabled,
.btn[disabled] {
  cursor: default;
  background-image: none;
  background-color: #e6e6e6;
  opacity: 0.65;
  filter: alpha(opacity=65);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-large {
  padding: 9px 14px;
  font-size: 15px;
  line-height: normal;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-large [class^="icon-"] {
  margin-top: 1px;
}
.btn-small {
  padding: 5px 9px;
  font-size: 11px;
  line-height: 16px;
}
.btn-small [class^="icon-"] {
  margin-top: -1px;
}
.btn-mini {
  padding: 2px 6px;
  font-size: 11px;
  line-height: 14px;
}
.btn-primary,
.btn-primary:hover,
.btn-warning,
.btn-warning:hover,
.btn-danger,
.btn-danger:hover,
.btn-success,
.btn-success:hover,
.btn-info,
.btn-info:hover,
.btn-inverse,
.btn-inverse:hover {
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
  color: #ffffff;
}
.btn-primary.active,
.btn-warning.active,
.btn-danger.active,
.btn-success.active,
.btn-info.active,
.btn-inverse.active {
  color: rgba(255, 255, 255, 0.75);
}
.btn-primary {
  background-color: #0074cc;
  background-image: -moz-linear-gradient(top, #0088cc, #0055cc);
  background-image: -ms-linear-gradient(top, #0088cc, #0055cc);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0055cc));
  background-image: -webkit-linear-gradient(top, #0088cc, #0055cc);
  background-image: -o-linear-gradient(top, #0088cc, #0055cc);
  background-image: linear-gradient(top, #0088cc, #0055cc);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#0088cc', endColorstr='#0055cc', GradientType=0);
  border-color: #0055cc #0055cc #003580;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-primary:hover,
.btn-primary:active,
.btn-primary.active,
.btn-primary.disabled,
.btn-primary[disabled] {
  background-color: #0055cc;
}
.btn-primary:active,
.btn-primary.active {
  background-color: #004099 \9;
}
.btn-warning {
  background-color: #faa732;
  background-image: -moz-linear-gradient(top, #fbb450, #f89406);
  background-image: -ms-linear-gradient(top, #fbb450, #f89406);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));
  background-image: -webkit-linear-gradient(top, #fbb450, #f89406);
  background-image: -o-linear-gradient(top, #fbb450, #f89406);
  background-image: linear-gradient(top, #fbb450, #f89406);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbb450', endColorstr='#f89406', GradientType=0);
  border-color: #f89406 #f89406 #ad6704;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-warning:hover,
.btn-warning:active,
.btn-warning.active,
.btn-warning.disabled,
.btn-warning[disabled] {
  background-color: #f89406;
}
.btn-warning:active,
.btn-warning.active {
  background-color: #c67605 \9;
}
.btn-danger {
  background-color: #da4f49;
  background-image: -moz-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -ms-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));
  background-image: -webkit-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: -o-linear-gradient(top, #ee5f5b, #bd362f);
  background-image: linear-gradient(top, #ee5f5b, #bd362f);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ee5f5b', endColorstr='#bd362f', GradientType=0);
  border-color: #bd362f #bd362f #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-danger:hover,
.btn-danger:active,
.btn-danger.active,
.btn-danger.disabled,
.btn-danger[disabled] {
  background-color: #bd362f;
}
.btn-danger:active,
.btn-danger.active {
  background-color: #942a25 \9;
}
.btn-success {
  background-color: #5bb75b;
  background-image: -moz-linear-gradient(top, #62c462, #51a351);
  background-image: -ms-linear-gradient(top, #62c462, #51a351);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));
  background-image: -webkit-linear-gradient(top, #62c462, #51a351);
  background-image: -o-linear-gradient(top, #62c462, #51a351);
  background-image: linear-gradient(top, #62c462, #51a351);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#62c462', endColorstr='#51a351', GradientType=0);
  border-color: #51a351 #51a351 #387038;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-success:hover,
.btn-success:active,
.btn-success.active,
.btn-success.disabled,
.btn-success[disabled] {
  background-color: #51a351;
}
.btn-success:active,
.btn-success.active {
  background-color: #408140 \9;
}
.btn-info {
  background-color: #49afcd;
  background-image: -moz-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -ms-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));
  background-image: -webkit-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: -o-linear-gradient(top, #5bc0de, #2f96b4);
  background-image: linear-gradient(top, #5bc0de, #2f96b4);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5bc0de', endColorstr='#2f96b4', GradientType=0);
  border-color: #2f96b4 #2f96b4 #1f6377;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-info:hover,
.btn-info:active,
.btn-info.active,
.btn-info.disabled,
.btn-info[disabled] {
  background-color: #2f96b4;
}
.btn-info:active,
.btn-info.active {
  background-color: #24748c \9;
}
.btn-inverse {
  background-color: #414141;
  background-image: -moz-linear-gradient(top, #555555, #222222);
  background-image: -ms-linear-gradient(top, #555555, #222222);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#555555), to(#222222));
  background-image: -webkit-linear-gradient(top, #555555, #222222);
  background-image: -o-linear-gradient(top, #555555, #222222);
  background-image: linear-gradient(top, #555555, #222222);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#555555', endColorstr='#222222', GradientType=0);
  border-color: #222222 #222222 #000000;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-inverse:hover,
.btn-inverse:active,
.btn-inverse.active,
.btn-inverse.disabled,
.btn-inverse[disabled] {
  background-color: #222222;
}
.btn-inverse:active,
.btn-inverse.active {
  background-color: #080808 \9;
}



.btn-grey {
  background-color: #999;
  background-image: -moz-linear-gradient(top, #BBB, #AAA);
  background-image: -ms-linear-gradient(top, #BBB, #AAA);
  background-image: -webkit-gradient(linear, 0 0, 0 100%, from(#BBB), to(#AAA));
  background-image: -webkit-linear-gradient(top, #BBB, #AAA);
  background-image: -o-linear-gradient(top, #BBB, #AAA);
  background-image: linear-gradient(top, #BBB, #AAA);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#BBB', endColorstr='#AAA', GradientType=0);
  border-color: #AAA #AAA #802420;
  border-color: rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);
  filter: progid:dximagetransform.microsoft.gradient(enabled=false);
}
.btn-grey:hover,
.btn-grey:active,
.btn-grey.active,
.btn-grey.disabled,
.btn-grey[disabled] {
  background-color: #AAA;
}
.btn-grey:active,
.btn-grey.active {
  background-color: #AAA \9;
}

.btn.pending{
  opacity:0.4;
  filter: alpha(opacity=40); /* For IE8 and earlier */
}
.btn.left{
  margin-right:10px;
}
button.btn::-moz-focus-inner,
input[type="submit"].btn::-moz-focus-inner {
  padding: 0;
  border: 0;
}
#DrawingShareForm div.radio input[type="radio"]{
    margin-left: 0;
}
.btn-link,
.btn-link:active,
.btn-link[disabled] {
  background-color: transparent;
  background-image: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.btn-link {
  border-color: transparent;
  cursor: pointer;
  color: #0088cc;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-link:hover,
.btn-link:focus {
  color: #005580;
  text-decoration: underline;
  background-color: transparent;
}
.btn-link[disabled]:hover,
.btn-link[disabled]:focus {
  color: #333333;
  text-decoration: none;
}
div.input.radio{
  padding:0;
  margin-left:0;
}
div.input.radio>fieldset>legend{
  color: #08C;
  font-weight: bold;
  position:relative;
  margin:0;
}
div.input.radio>fieldset>input.inline{
  display:inline-block;
  position:absolute;
  margin:2px 0;
  padding:0;
  width:20px;
  float:none;
}
div.modal form div.input.radio>fieldset>label{
  display:inline-block;
  font-weight:normal;
  color:#333;
  margin:0 20px;
  display:inline-block;
}
/* Button Group Styles*/
.btn-group {
  position: relative;
}
.btn-group:before,
.btn-group:after {
  display: table;
  content: "";
}
.btn-group:after {
  clear: both;
}
.btn-group + .btn-group {
  margin-left: 5px;
}
.btn-toolbar {
  margin-top: 9px;
  margin-bottom: 9px;
}
.btn-toolbar .btn-group {
  display: inline-block;
}
.btn-group .btn {
  position: relative;
  float: left;
  margin-left: -3px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.btn-group .btn:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
  border-top-left-radius: 4px;
  -webkit-border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
  border-bottom-left-radius: 4px;
}
.btn-group .btn:last-child,
.btn-group .dropdown-toggle {
  -webkit-border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
  border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
  border-bottom-right-radius: 4px;
}
.btn-group .btn.large:first-child {
  margin-left: 0;
  -webkit-border-top-left-radius: 6px;
  -moz-border-radius-topleft: 6px;
  border-top-left-radius: 6px;
  -webkit-border-bottom-left-radius: 6px;
  -moz-border-radius-bottomleft: 6px;
  border-bottom-left-radius: 6px;
}
.btn-group .btn.large:last-child,
.btn-group .large.dropdown-toggle {
  -webkit-border-top-right-radius: 6px;
  -moz-border-radius-topright: 6px;
  border-top-right-radius: 6px;
  -webkit-border-bottom-right-radius: 6px;
  -moz-border-radius-bottomright: 6px;
  border-bottom-right-radius: 6px;
}
.btn-group .btn:hover,
.btn-group .btn:focus,
.btn-group .btn:active,
.btn-group .btn.active {
  z-index: 2;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group .dropdown-toggle {
  padding-bottom: 11px;
  padding-left: 8px;
  padding-right: 8px;
  -webkit-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 1px 0 0 rgba(255, 255, 255, 0.125), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn-group .btn-mini.dropdown-toggle {
  padding-left: 5px;
  padding-right: 5px;
}
.btn-group .btn-large.dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-menu {
  display: block;
  margin-top: 1px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.btn-group.open .dropdown-toggle {
  background-image: none;
  -webkit-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 6px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}
.btn .caret {
  margin-top: 7px;
  margin-left: 0;
}
.btn:hover .caret,
.open.btn-group .caret {
  opacity: 1;
  filter: alpha(opacity=100);
}
.btn-mini .caret {
  margin-top: 5px;
}
.btn-small .caret {
  margin-top: 6px;
}
.btn-large .caret {
  margin-top: 6px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #000000;
}
.btn-primary .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret,
.btn-success .caret,
.btn-inverse .caret {
  border-top-color: #ffffff;
  border-bottom-color: #ffffff;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.hide-text {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.input-block-level {
  display: block;
  width: 100%;
  min-height: 28px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
form {
  /* margin: 0 0 18px;*/
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
}
label,
legend,
input,
button,
select,
textarea {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px;
}
input,
button,
select,
textarea {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
label,
legend {
  display: block;
  margin-bottom: 3px;
  color: #333333;
}
.datepicker .footer input,
input,
textarea,
select,
.uneditable-input {
  display: inline-block;
  width: 210px;
  height: 18px;
  padding: 4px;
  margin-bottom: 9px;
  font-size: 13px;
  line-height: 18px;
  color: #555555;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  box-sizing:content-box;
}

select,
textarea,
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
.uneditable-input {
  height:auto;
}
select{
  padding:0;
}
.uneditable-textarea {
  width: auto;
  height: auto;
}
label input,
label textarea,
label select {
  display: block;
}
input[type="image"],
input[type="checkbox"],
input[type="radio"] {
  width: auto;
  height: auto;
  padding: 0;
  margin: 3px 0;
  /* IE7 */

  line-height: normal;
  cursor: pointer;
  background-color: transparent;
  border: 0 \9;
  /* IE9 and down */

  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
input[type="image"] {
  border: 0;
}
input[type="file"] {
  width: auto;
  min-width: 300px;
  padding: initial;
  line-height: initial;
  background-color: #ffffff;
  background-color: initial;
  border: initial;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
input[type="button"],
input[type="reset"],
input[type="submit"] {
  width: auto;
  height: auto;
}
select,
input[type="file"] {
  height: 28px;
  /* In IE7, the height of the select element cannot be changed by height, only font-size */

          *margin-top: 4px;
          /* For IE7, add top margin to align select with labels */

          line-height: 28px;
        }
        input[type="file"] {
          line-height: 18px \9;
        }
        select {
          width: 100%;
          background-color: #ffffff;
        }
        select[multiple],
        select[size] {
          height: auto;
        }
        input[type="image"] {
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
        }
        textarea {
          height: auto;
        }
        input[type="hidden"] {
          display: none;
        }
        .radio,
        .checkbox {
          min-height: 18px;
          padding-left: 18px;
        }
        .radio input[type="radio"],
        .checkbox input[type="checkbox"] {
          float: left;
          margin-left: -18px;
        }
        .controls > .radio:first-child,
        .controls > .checkbox:first-child {
          padding-top: 5px;
        }
        .radio.inline,
        .checkbox.inline {
          display: inline-block;
          padding-top: 5px;
          margin-bottom: 0;
          vertical-align: middle;
        }
        .radio.inline + .radio.inline,
        .checkbox.inline + .checkbox.inline {
          margin-left: 10px;
        }
        input,
        textarea {
          -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;
        }
        input:focus,
        textarea:focus {
          border-color: rgba(82, 168, 236, 0.8);
          outline: 0;
          outline: thin dotted \9;
          /* IE6-9 */

          -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
          -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
          box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
        }
        input[type="file"]:focus,
        input[type="radio"]:focus,
        input[type="checkbox"]:focus,
        select:focus {
          outline: thin dotted #333;
          outline: 5px auto -webkit-focus-ring-color;
          outline-offset: -2px;
          -webkit-box-shadow: none;
          -moz-box-shadow: none;
          box-shadow: none;
        }
        .input-mini {
          width: 60px;
        }
        .input-small {
          width: 90px;
        }
        .input-medium {
          width: 150px;
        }
        .input-large {
          width: 210px;
        }
        .input-xlarge {
          width: 270px;
        }
        .input-xxlarge, input[disabled]{
          width: 100%;
          -webkit-box-sizing: border-box;
          -moz-box-sizing: border-box;
          -ms-box-sizing: border-box;
          box-sizing: border-box;
          padding:5px
        }
        select.input-xxlarge {
          padding:0;
        }
        input[class*="span"],
        select[class*="span"],
        textarea[class*="span"],
        .uneditable-input[class*="span"],
        .row-fluid input[class*="span"],
        .row-fluid select[class*="span"],
        .row-fluid textarea[class*="span"],
        .row-fluid .uneditable-input[class*="span"] {
          float: none;
          margin-left: 0;
        }
        input,
        textarea,
        .uneditable-input {
          margin-left: 0;
          width: 100%;
          box-sizing: border-box;
          height:auto;
          padding:5px;
        }
        input.span12, textarea.span12, .uneditable-input.span12 {
          width: 930px;
        }
        input.span11, textarea.span11, .uneditable-input.span11 {
          width: 850px;
        }
        input.span10, textarea.span10, .uneditable-input.span10 {
          width: 770px;
        }
        input.span9, textarea.span9, .uneditable-input.span9 {
          width: 690px;
        }
        input.span8, textarea.span8, .uneditable-input.span8 {
          width: 610px;
        }
        input.span7, textarea.span7, .uneditable-input.span7 {
          width: 530px;
        }
        input.span6, textarea.span6, .uneditable-input.span6 {
          width: 450px;
        }
        input.span5, textarea.span5, .uneditable-input.span5 {
          width: 370px;
        }
        input.span4, textarea.span4, .uneditable-input.span4 {
          width: 290px;
        }
        input.span3, textarea.span3, .uneditable-input.span3 {
          width: 210px;
        }
        input.span2, textarea.span2, .uneditable-input.span2 {
          width: 130px;
        }
        input.span1, textarea.span1, .uneditable-input.span1 {
          width: 50px;
        }
        input[disabled],
        select[disabled],
        textarea[disabled],
        input[readonly],
        select[readonly],
        textarea[readonly] {
          cursor: not-allowed;
          background-color: #eeeeee;
          border-color: #ddd;
        }
        input[type="radio"][disabled],
        input[type="checkbox"][disabled],
        input[type="radio"][readonly],
        input[type="checkbox"][readonly] {
          background-color: transparent;
        }
        .control-group.warning > label,
        .control-group.warning .help-block,
        .control-group.warning .help-inline {
          color: #c09853;
        }
        .control-group.warning input,
        .control-group.warning select,
        .control-group.warning textarea {
          color: #c09853;
          border-color: #c09853;
        }
        .control-group.warning input:focus,
        .control-group.warning select:focus,
        .control-group.warning textarea:focus {
          border-color: #a47e3c;
          -webkit-box-shadow: 0 0 6px #dbc59e;
          -moz-box-shadow: 0 0 6px #dbc59e;
          box-shadow: 0 0 6px #dbc59e;
        }
        .control-group.warning .input-prepend .add-on,
        .control-group.warning .input-append .add-on {
          color: #c09853;
          background-color: #fcf8e3;
          border-color: #c09853;
        }
        .control-group.error > label,
        .control-group.error .help-block,
        .control-group.error .help-inline {
          color: #b94a48;
        }
        .control-group.error input,
        .control-group.error select,
        .control-group.error textarea {
          color: #b94a48;
          border-color: #b94a48;
        }
        .control-group.error input:focus,
        .control-group.error select:focus,
        .control-group.error textarea:focus {
          border-color: #953b39;
          -webkit-box-shadow: 0 0 6px #d59392;
          -moz-box-shadow: 0 0 6px #d59392;
          box-shadow: 0 0 6px #d59392;
        }
        .control-group.error .input-prepend .add-on,
        .control-group.error .input-append .add-on {
          color: #b94a48;
          background-color: #f2dede;
          border-color: #b94a48;
        }
        .control-group.success > label,
        .control-group.success .help-block,
        .control-group.success .help-inline {
          color: #468847;
        }
        .control-group.success input,
        .control-group.success select,
        .control-group.success textarea {
          color: #468847;
          border-color: #468847;
        }
        .control-group.success input:focus,
        .control-group.success select:focus,
        .control-group.success textarea:focus {
          border-color: #356635;
          -webkit-box-shadow: 0 0 6px #7aba7b;
          -moz-box-shadow: 0 0 6px #7aba7b;
          box-shadow: 0 0 6px #7aba7b;
        }
        .control-group.success .input-prepend .add-on,
        .control-group.success .input-append .add-on {
          color: #468847;
          background-color: #dff0d8;
          border-color: #468847;
        }
        /* Deze css geeft nieuwe formulier met validatie een raar uiterlijk
        input:focus:required:invalid,
        textarea:focus:required:invalid,
        select:focus:required:invalid {
        color: #b94a48;
        border-color: #ee5f5b;
        }
        input:focus:required:invalid:focus,
        textarea:focus:required:invalid:focus,
        select:focus:required:invalid:focus {
        border-color: #e9322d;
        -webkit-box-shadow: 0 0 6px #f8b9b7;
        -moz-box-shadow: 0 0 6px #f8b9b7;
        box-shadow: 0 0 6px #f8b9b7;
        }
         */
.form-actions {
  padding: 17px 20px 18px;
  margin-top: 18px;
  margin-bottom: 18px;
  background-color: #f5f5f5;
  border-top: 1px solid #ddd;
}
.form-actions:before,
.form-actions:after {
  display: table;
  content: "";
}
.form-actions:after {
  clear: both;
}
.uneditable-input {
  overflow: hidden;
  white-space: nowrap;
  cursor: not-allowed;
  background-color: #ffffff;
  border-color: #eee;
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
}
:-moz-placeholder {
  color: #999999;
}
::-webkit-input-placeholder {
  color: #999999;
}
.help-block,
.help-inline {
  color: #555555;
}
.help-block {
  display: block;
  margin-bottom: 9px;
}
.help-inline {
  display: inline-block;
  vertical-align: middle;
  padding-left: 5px;
}
.input-prepend,
.input-append {
  margin-bottom: 5px;
}
.input-prepend input,
.input-append input,
.input-prepend select,
.input-append select,
.input-prepend .uneditable-input,
.input-append .uneditable-input {
  position: relative;
  margin-bottom: 0;
  vertical-align: middle;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-prepend input:focus,
.input-append input:focus,
.input-prepend select:focus,
.input-append select:focus,
.input-prepend .uneditable-input:focus,
.input-append .uneditable-input:focus {
  z-index: 2;
}
.input-prepend .uneditable-input,
.input-append .uneditable-input {
  border-left-color: #ccc;
}
.input-prepend .add-on,
.input-append .add-on {
  display: inline-block;
  width: auto;
  height: 18px;
  min-width: 16px;
  padding: 4px 5px;
  font-weight: normal;
  line-height: 18px;
  text-align: center;
  text-shadow: 0 1px 0 #ffffff;
  vertical-align: middle;
  background-color: #eeeeee;
  border: 1px solid #ccc;
}
.input-prepend .add-on,
.input-append .add-on,
.input-prepend .btn,
.input-append .btn {
  margin-left: -1px;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.input-prepend .active,
.input-append .active {
  background-color: #a9dba9;
  border-color: #46a546;
}
.input-prepend .add-on,
.input-prepend .btn {
  margin-right: -1px;
}
.input-prepend .add-on:first-child,
.input-prepend .btn:first-child {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-append input,
.input-append select,
.input-append .uneditable-input {
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-append .uneditable-input {
  border-right-color: #ccc;
  border-left-color: #eee;
}
.input-append .add-on:last-child,
.input-append .btn:last-child {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.input-prepend.input-append input,
.input-prepend.input-append select,
.input-prepend.input-append .uneditable-input {
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
.input-prepend.input-append .add-on:first-child,
.input-prepend.input-append .btn:first-child {
  margin-right: -1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.input-prepend.input-append .add-on:last-child,
.input-prepend.input-append .btn:last-child {
  margin-left: -1px;
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.search-query {
  padding-right: 14px;
  padding-right: 4px \9;
  padding-left: 14px;
  padding-left: 4px \9;
  /* IE7-8 doesn't have border-radius, so don't indent the padding */

  margin-bottom: 0;
  -webkit-border-radius: 14px;
  -moz-border-radius: 14px;
  border-radius: 14px;
}
.form-search input,
.form-inline input,
.form-horizontal input,
.form-search textarea,
.form-inline textarea,
.form-horizontal textarea,
.form-search select,
.form-inline select,
.form-horizontal select,
.form-search .help-inline,
.form-inline .help-inline,
.form-horizontal .help-inline,
.form-search .uneditable-input,
.form-inline .uneditable-input,
.form-horizontal .uneditable-input,
.form-search .input-prepend,
.form-inline .input-prepend,
.form-horizontal .input-prepend,
.form-search .input-append,
.form-inline .input-append,
.form-horizontal .input-append {
  display: inline-block;
  display: inline;
  /* IE7 inline-block hack */

  zoom: 1;
  margin-bottom: 0;
}
.form-search .hide,
.form-inline .hide,
.form-horizontal .hide {
  display: none;
}
.form-search label,
.form-inline label {
  display: inline-block;
}
.form-search .input-append,
.form-inline .input-append,
.form-search .input-prepend,
.form-inline .input-prepend {
  margin-bottom: 0;
}
.form-search .radio,
.form-search .checkbox,
.form-inline .radio,
.form-inline .checkbox {
  padding-left: 0;
  margin-bottom: 0;
  vertical-align: middle;
}
.form-search .radio input[type="radio"],
.form-search .checkbox input[type="checkbox"],
.form-inline .radio input[type="radio"],
.form-inline .checkbox input[type="checkbox"] {
  float: left;
  margin-right: 3px;
  margin-left: 0;
}
.control-group {
  margin-bottom: 9px;
}
legend + .control-group {
  margin-top: 18px;
  -webkit-margin-top-collapse: separate;
}
.form-horizontal .control-group {
  margin-bottom: 18px;
}
.form-horizontal .control-group:before,
.form-horizontal .control-group:after {
  display: table;
  content: "";
}
.form-horizontal .control-group:after {
  clear: both;
}
.form-horizontal .control-label {
  float: left;
  width: 140px;
  padding-top: 5px;
  text-align: right;
}
.form-horizontal .controls {
  margin-left: 160px;
}
.form-horizontal .controls:first-child {
}
.form-horizontal .help-block {
  margin-top: 9px;
  margin-bottom: 0;
}
.form-horizontal .form-actions {
  padding-left: 160px;
}

/* table styles*/

table {
  max-width: 100%;
  background-color: transparent;
  border-collapse: collapse;
  border-spacing: 0;
}
.table {
  width: 100%;
  margin-bottom: 10px;
}
.table tr {
  border-top: 1px solid #dddddd;
}
.table th,
.table td {
  padding: 8px;
  line-height: 18px;
  text-align: left;
  vertical-align: middle;
}
.table th {
  font-weight: bold;
}
.table thead th {
  vertical-align: bottom;
}
.table caption + thead tr:first-child th,
.table caption + thead tr:first-child td,
.table colgroup + thead tr:first-child th,
.table colgroup + thead tr:first-child td,
.table thead:first-child tr:first-child th,
.table thead:first-child tr:first-child td {
  border-top: 0;
}
.table tbody + tbody {
  border-top: 2px solid #dddddd;
}
.table-condensed th,
.table-condensed td {
  padding: 4px 5px;
}
.table-bordered {
  border: 1px solid #dddddd;
  border-collapse: separate;
  border-left: 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.table-bordered th,
.table-bordered td {
  border-left: 1px solid #dddddd;
}
.table-bordered caption + thead tr:first-child th,
.table-bordered caption + tbody tr:first-child th,
.table-bordered caption + tbody tr:first-child td,
.table-bordered colgroup + thead tr:first-child th,
.table-bordered colgroup + tbody tr:first-child th,
.table-bordered colgroup + tbody tr:first-child td,
.table-bordered thead:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child th,
.table-bordered tbody:first-child tr:first-child td {
  border-top: 0;
}
.table-bordered thead:first-child tr:first-child th:first-child,
.table-bordered tbody:first-child tr:first-child td:first-child {
  -webkit-border-top-left-radius: 4px;
  border-top-left-radius: 4px;
  -moz-border-radius-topleft: 4px;
}
.table-bordered thead:first-child tr:first-child th:last-child,
.table-bordered tbody:first-child tr:first-child td:last-child {
  -webkit-border-top-right-radius: 4px;
  border-top-right-radius: 4px;
  -moz-border-radius-topright: 4px;
}
.table-bordered thead:last-child tr:last-child th:first-child,
.table-bordered tbody:last-child tr:last-child td:first-child {
  -webkit-border-radius: 0 0 0 4px;
  -moz-border-radius: 0 0 0 4px;
  border-radius: 0 0 0 4px;
  -webkit-border-bottom-left-radius: 4px;
  border-bottom-left-radius: 4px;
  -moz-border-radius-bottomleft: 4px;
}
.table-bordered thead:last-child tr:last-child th:last-child,
.table-bordered tbody:last-child tr:last-child td:last-child {
  -webkit-border-bottom-right-radius: 4px;
  border-bottom-right-radius: 4px;
  -moz-border-radius-bottomright: 4px;
}
.table-striped tbody tr:nth-child(odd),
.table-striped tbody tr:nth-child(odd){
  background-color: #f7f7f7;
  overflow:hidden;
}
.table:not(.no-hover-effects) tbody tr:hover{
  /* background-color: #f5f5f5;*/
}
.table.table-sortable th{
  cursor:pointer;
  position:relative;
}
.table.table-sortable th.table-th-sort div:after{
  content: '';
  display: inline-block;
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid #fff;
  margin-left: 5px;
  position:absolute;
  margin-top:6px;
}
.table.table-sortable th.table-th-sort-rev div:after{
  border-bottom: none;
  border-top: 4px solid #fff;
}
table .span1 {
  float: none;
  width: 44px;
  margin-left: 0;
}
table .span2 {
  float: none;
  width: 124px;
  margin-left: 0;
}
table .span3 {
  float: none;
  width: 204px;
  margin-left: 0;
}
table .span4 {
  float: none;
  width: 284px;
  margin-left: 0;
}
table .span5 {
  float: none;
  width: 364px;
  margin-left: 0;
}
table .span6 {
  float: none;
  width: 444px;
  margin-left: 0;
}
table .span7 {
  float: none;
  width: 524px;
  margin-left: 0;
}
table .span8 {
  float: none;
  width: 604px;
  margin-left: 0;
}
table .span9 {
  float: none;
  width: 684px;
  margin-left: 0;
}
table .span10 {
  float: none;
  width: 764px;
  margin-left: 0;
}
table .span11 {
  float: none;
  width: 844px;
  margin-left: 0;
}
table .span12 {
  float: none;
  width: 924px;
  margin-left: 0;
}
table .span13 {
  float: none;
  width: 1004px;
  margin-left: 0;
}
table .span14 {
  float: none;
  width: 1084px;
  margin-left: 0;
}
table .span15 {
  float: none;
  width: 1164px;
  margin-left: 0;
}
table .span16 {
  float: none;
  width: 1244px;
  margin-left: 0;
}
table .span17 {
  float: none;
  width: 1324px;
  margin-left: 0;
}
table .span18 {
  float: none;
  width: 1404px;
  margin-left: 0;
}
table .span19 {
  float: none;
  width: 1484px;
  margin-left: 0;
}
table .span20 {
  float: none;
  width: 1564px;
  margin-left: 0;
}
table .span21 {
  float: none;
  width: 1644px;
  margin-left: 0;
}
table .span22 {
  float: none;
  width: 1724px;
  margin-left: 0;
}
table .span23 {
  float: none;
  width: 1804px;
  margin-left: 0;
}
table .span24 {
  float: none;
  width: 1884px;
  margin-left: 0;
}

.pagination {
  height: 35px;
  margin: 5px 0;
}
.pagination ul {
  display: inline-block;
  display: inline;
  /* IE7 inline-block hack */

  zoom: 1;
  margin-left: 0;
  margin-bottom: 0;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.pagination ul > li {
  display: inline;
}
.pagination ul > li > a,
.pagination ul > li > span {
  float: left;
  padding: 0 14px;
  line-height: 32px;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-left-width: 0;
}
.pagination ul > li > a:hover,
.pagination ul > .current > a,
.pagination ul > .current > span {
  background-color: #f5f5f5;
}
.pagination ul > .current > a,
.pagination ul > .current > span {
  color: #999999;
  cursor: default;
}
.pagination ul > .disabled > span,
.pagination ul > .disabled > a,
.pagination ul > .disabled > a:hover {
  color: #999999;
  background-color: transparent;
  cursor: default;
}
.pagination ul > li:first-child > a,
.pagination ul > li:first-child > span {
  border-left-width: 1px;
  -webkit-border-radius: 3px 0 0 3px;
  -moz-border-radius: 3px 0 0 3px;
  border-radius: 3px 0 0 3px;
}
.pagination ul > li:last-child > a,
.pagination ul > li:last-child > span {
  -webkit-border-radius: 0 3px 3px 0;
  -moz-border-radius: 0 3px 3px 0;
  border-radius: 0 3px 3px 0;
}
.pagination-centered {
  text-align: center;
}
.pagination-right {
  text-align: right;
}

#category_switcher {
  width: 300px;
  position: relative;
}
#category_switcher ul {
  display: none;
}

.switcher_button {
  /* width: 240px;*/
  /* font-size: 18px;*/
  /* padding: 3px 5px;*/
  /* border: 1px solid #AAA;*/
  /* border-radius: 5px;*/
  color: #fff !important;
  /* background: url('/img/layout/gradient_gray.jpg');*/
  /* cursor: pointer;*/
}
.dropdown .switcher {
  /* top: 43px;*/
  /* position: absolute;*/
  /* z-index: 5000;*/
  /* border: 1px solid #AAA;*/
  width: 250px;
  overflow: hidden;
  overflow-y: hidden;
  /* border-radius: 5px;*/
  /* -webkit-box-shadow: 0px 0px 5px #CCC;*/
  /* background: #FFF;*/
}

.list_item {
  border-bottom: 1px solid #AAA;
  font-size: 15px;
  padding: 8px 15px;
  color: #888;
  cursor: pointer;
  position:relative;
}

.list_item.active{
  font-weight:normal;
  background: #3274D7;
  color: #FFF;
}

.list_header {
    /*border-bottom: 1px solid #AAA;*/
    padding: 8px 15px;
    color: #888;
    cursor: pointer;
    position:relative;
    text-transform: uppercase;
    font-weight: bold;
    font-size: 13px;
    background: #F7F7F7;
    text-align:center;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.list_header_padding {
    padding-left:30px;
}
.list_header_padding_double {
    padding-left:46px;
}
.list_header > .list_back {
    position:absolute;
    top:0;
    left:28px;
    padding: 6px 2px;
    cursor:pointer;
}
.list_header > .list_root {
    position:absolute;
    top:0;
    left:0;
    cursor:pointer;
    padding: 6px 8px;
}

.list_header > .list_right{
    position: absolute;
    top:0;
    right: 0;
    cursor: pointer;
    padding: 6px 8px;
}

.list_header > .list_right:hover > i,
.list_header > .list_root:hover > i,
.list_header > .list_back:hover > i
{
    filter: invert(37%) sepia(31%) saturate(1763%) hue-rotate(184deg) brightness(103%) contrast(94%);
}

.list_input{
    box-sizing:border-box;
    border-bottom:1px solid #AAA;
    padding:4px 10px 4px 8px;
    background: #F7F7F7;
    position:relative;
}

.list_input input{
    background: #FFFFFF;
    padding: 5px 20px 5px 24px;
    margin:0;
    border-radius: 15px;
}
.list_input:hover{
    background: rgba(118, 118, 118, 0.08);
}

.list_input .list_search_icon{
    position:absolute;
    top:11px;
    left:14px;
}
.list_input .list_cancel_icon{
    position:absolute;
    top:13px;
    right:16px;
    background:url('/img/search/close.png');
    width: 12px;
    height: 12px;
}
.list-item-wrapper {
    display:block;
    top:68px;
    overflow:auto;
}

.category_tree {
  display: none;
}
.column {
    position:relative;
  width: 250px;
  z-index:101;
  overflow:hidden;
  float:left;
}
.columns {
  width: 100000px;
  min-height:100px;
}
.switcher .column i {
  opacity: 0.8;
  float: right;
}
.switcher .column i.icon-white {
  opacity:1;
}
.checkbox {
  margin: 10px 0px;
  background: #EFEFEF;
  padding-top: 5px;
  padding-bottom: 5px;
  padding-left: 25px;
}

.nav-tabs{
  padding:0 15px;
}
.nav-tabs li{
  margin:0 1px;
}
#tabs{
  height:21px;
}
.nav-tabs {
  border-bottom: 1px solid #AAA;
  padding-left: 15px;
  margin: -0px -15px;
}
.nav-tabs li {
  padding: 5px 10px;
  display: inline;
  border-left:1px solid white;
  border-right:1px solid white;
  border-left: 1px solid transparent ;
  border-top: 1px solid transparent ;
  border-right: 1px solid transparent ;
}
.nav-tabs li:hover {
  cursor: pointer;
}
.nav-tabs li.open, .nav-tabs li:hover {
  border-left: 1px solid #AAA;
  border-top: 1px solid #AAA;
  border-right: 1px solid #AAA;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.task {
  padding: 0px 10px;
  padding-top: 9px;
  margin: 5px 0px;
  border: 1px solid #AAA;
    position:relative;
}
.task label{
  vertical-align:middle;
}
.task div {
  display: inline-block;
  vertical-align: middle;
}

.task div .searchable-options{
    display:block;
}
.task .checkbox {
  margin: 0;
  padding: 0px;
  background: none;
  float: right;
}

.locks{
    position:absolute;
    top:9px;
    right:18px;
}
.task .locks input{
    display:none;
}

.task .remove{
    position:absolute;
    top:6px;
    right:6px;
}

.task .input.dates{
    display:block;
}

.task .input.date{
    padding-top:5px;
}

.task .input.date .stripe{
    float:none;
    padding: 2px;
    text-shadow:none;
    opacity:1;
    font-weight:normal;
    font-size:14px;
}

.task .input.date .stripe:hover{
    cursor:default;
}

.task .input.date .day{
    width: 40px;
}

.task .input.date .month{
    width: 90px;
}

.task .input.date .month::after{
    content: "-";
}

.task .input.date .year{
    width: 54px;
}

.task .locks input ~ label {
  display: inline-block;
  padding: 5px;
  height: 15px;
  width: 15px;
  background: url(/img/locks.png) no-repeat;
  background-position: 5px -30px;
  cursor: pointer;
}

task .locks input:checked ~ label {
    background-position: 5px 5px;
}

.task .dynam input {
  display: none;
}
.task .dynam input ~ label{
  margin-top:2px;
  display: inline-block;
  background: url(/img/sensors.png) no-repeat;
  background-position: 0px -16px;
  margin-left: 2px;
  padding: 5px;
  height: 5px;
  width: 20px;
  cursor: pointer;
    position:absolute;
    top:13px;
    right:40px;
}

.task input:checked ~ label {
  background-position: 5px 5px;
}

.task .dynam input:checked ~ label{
  background-position: 0px 0px;
}
.task .checkbox input {
  float: right;
  opacity: 0;
}

.task label {
  display: inline;
  padding-right: 5px;
  padding-left: 5px;
}
.task input {
  width: 30px;
}
.task select {
  width: 180px;
  margin-bottom: 0px;
}
.task div.formInput{
  padding-top:10px;
  display:block;
}
.task div.formInput select{
  width:300px;
}
.task div.description{
  text-overflow: ellipsis;
  white-space:nowrap;
  display:inline-block;
  width:176px;
  font-style:italic;
  font-size:12px;
  padding-top:3px;
  vertical-align:middle;
  overflow:hidden;
}
em {
  font-style: italic;
}
.italic{
  font-style:italic;
}
.task i {
  margin-top: 5px;
  float: right;
}
.task span {
  font-size: 20px;
  padding-left: 5px;
  font-weight: bold;
  text-shadow: 0 1px 0 white;
  opacity: 0.3;
  display: inline-block;
  float: right;
}
.task span:hover {
  cursor: pointer;
  opacity: 1;
}

.task span.icon-lock{
    position:absolute;
    cursor:default;
    opacity:1;
    top:17px;
    right:1px;

}

.new_task {
  display: none;
}

.no_tasks {
  background: #EFEFEF;
  text-align: center;
  padding: 15px 0px;
  margin: 5px 0px;
  border: 2px dashed #AAA;
  color: #888;
  font-size: 20px;
  font-weight: bold;
}

hr {
  border: 0px;
  border-bottom: 1px solid #AAA;
}

.info hr {
  margin: 30px 0px;
}
.info label {
  font-weight: bold;
  color: #08C;
}
ul.downloads li {
  background: #EEE;
  padding: 15px 5px;
  margin: 5px 0px;
  border: 1px solid #AAA;
}

#advanced_search {
  width: 600px;
  z-index: 14;
}

span.badge{
  background-color:#3274D7;
  border-radius:3px;
  height:14px;
  padding:2px 5px;
  position:absolute;
  right:32px;
  top:7px;
  color:white;
}

span.badge-docs{
	background-color:#ff5708;
	border-radius:3px;
	height:13px;
	font-size: 13px;
	padding:2px 5px;
	position:absolute;
	right:3px;
	top:3px;
	color:white;
}


.file-list-item .badge-docs-rnd{
	right: 2px;
	top: 5px;
}
.preview .badge-docs-rnd{
	right: -5px;
	top:-5px;
}
td .badge-docs-rnd{
	left: 74px;
	top: -5px;
}
span.badge-docs-rnd{
	background-color:#ff5708;
	border-radius:50%;
	position:absolute;
	height:13px;
	width: 13px;
}

.file-list-item .lock-external{
	right: 21px;
	top: 3px;
}

.preview .lock-external{
	left: -7px;
	top: -6px;
}

td .lock-external{
	right: 75px;
	top:-7px;
}

.file_info .lock-external{
	left: 177px;
	top: 17px;
}

span.lock-external{
	position: absolute;
}

.file_info .sticker-docs {
	left: 5px;
	top: 35px;
}

.preview .sticker-docs{
	left: 12px;
	top: 25px;
}

td .sticker-docs{
	left: 8px;
	top: 25px;
}

span.sticker-docs{
	transform: rotate(18deg);
	position: absolute;
	padding: 2px;
	font-size: 12px;
	color: red;
	border: 1px rgba(255,0,0,.8) solid;
	border-radius: 6px;
	background-color: rgba(255,255,255,.9);
	box-shadow: 1px 2px 4px rgba(0, 0, 0, .3);
	text-align: center;
	pointer-events: none
}

span.sticker-grey{
	color: #a7a7a7;
	border: 1px rgba(125, 125, 125, 0.8) solid;
}


div.list_title{
    background-color:#3274D7;
    color: white;


}
a.link-hover:hover{
  text-decoration:underline;
}
.center{
  margin:auto;
  text-align:center;
}
.tab_view{
  padding-top:15px;
}
#marker_reports{
  overflow-x:auto;
}

div.radio{
  margin-bottom:10px;
}
div.radio input[type="radio"]{
  position:absolute;
}
div.radio label{
  margin:0 30px 0 20px;
  font-weight:bold;
  font-size:inherit;
  display:inline-block;
}

.dateinput {
  width: auto;
}
.date select[name*="day"]{
  width:50px;
}
.date select[name*="month"]{
  width:120px;
}
.date select[name*="year"]{
  width:80px;
}

.form-control.form-error{
  background-color:#FFF2F2;
}
.form-group.error{
  background-color:inherit;
  display:block;
}

.info {
  width: 650px;
}
.modal .nav-tabs li{
  margin:0;
}
.modal #tabs{
  height:20px;
}
div.form-group.required>label:after{
  content:' *';
}
.modal .error {
  display:block;
  padding:10px;
  border-radius:5px;
}
.modal .input.error, div.form-group.error, .modal .error {
  display:block;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
  margin-bottom:10px;
  color:#b94a48;
}
div.form-group.error>div.error-message,div.modal div.form-group.error>label{
  color:#b94a48;
}
.form-error {
  border-color: #eed3d7;
}
div.modal.share div.modal_body{
  overflow-x:visible;
  overflow-y:visible;
}
textarea{
  padding:5px;
  width:100%;
  box-sizing:border-box;
  max-width:100%;
}
.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 20px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.alert,
.alert h4 {
  color: #c09853;
}
.alert h4 {
  margin: 0;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 20px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #468847;
}
.alert-success h4 {
  color: #468847;
}
.alert-danger,
.alert-error {
  background-color: #f2dede;
  border-color: #eed3d7;
  color: #b94a48;
}
.alert-danger h4,
.alert-error h4 {
  color: #b94a48;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #3a87ad;
}
.alert-info h4 {
  color: #3a87ad;
}
.alert-block {
  padding-top: 14px;
  padding-bottom: 14px;
}
.alert-block > p,
.alert-block > ul {
  margin-bottom: 0;
}
.alert-block p + p {
  margin-top: 5px;
}

#general_loader span{
  font-size:12px;
  line-height:100%;
  display:inline-block;
  margin:0 5px 0 0;
}
#general_loader{
  position:absolute;
  top:35px;
  background-color:#dfdfdf;
  color:#6f6f6f;
  padding:5px 5px 4px;
  width:100%;
  z-index:103;
  opacity:0.9;
  box-sizing:border-box;
}

.box{
  width:90%;
  position:relative;
  margin:15px auto;
  border:1px solid #ccc;
  box-sizing:border-box;
  float:left;
  margin-left:5%;
  background-color:white;
}
.box>h2{
  color:white;
  font-weight:bold;
  width:100%;
  background-color:#215496;
  padding:15px;
  box-sizing:border-box;
  margin:0;
}
.box>div.box-inner>img{
  max-width:200px;
  display:block;
  margin:0 auto 15px;

}
.box>div.box-inner>a{
  display:block;
  margin:15px 0 0;
  target:_blank;
  padding:5px 0;
}
.box>div.box-inner{
  padding:15px;
  box-sizing:border-box;
  color:#777;
  min-height:200px;
}
@media (min-width:500px) {
  .box{
    margin-left:4%;
    width:44%;
  }
}
@media (min-width:750px) {
  .box{
    margin-left:2.5%;
    width:30%;
  }
}
@media (min-width:1000px) {
  .box{
    margin-left:1.6%;
    width:23%;
  }
}

table.block-display, table.block-display tbody, table.block-display thead, table.block-display tr{
  display:block;
  clear:both;
}
table.important-auto-width td, table.important-auto-width th{
  width:auto !important;
}
table.block-display td, table.block-display th,table.block-display td, table.block-display th{
  display:inline-block;
  box-sizing:border-box;
}
div.table-body-container{
  overflow:auto;
  position:relative;
}
div.table-container table.table.thead{
  display:block;
  background-color:#333;
}
div.table-container table.thead tr{
  border:0;
}
div.table-container table.thead th{
  box-sizing:border-box;
}
.modal.table-modal>.modal_body>.table-container{
  min-width:600px;
  overflow-x:hidden;
}
.modal.table-modal>.modal_body>.table-container table.table{
  margin:0;
}
.modal.table-modal table.block-display tbody, .modal.table-modal table.styled-log tbody{
  overflow-y:auto;
}
.modal.table-modal table.table.tbody tr:nth-child(1){
  border-top:0;
}
.modal.table-modal table.block-display thead{
  display:block;
  position:relative;
}
.modal.table-modal table.block-display thead,.modal.table-modal table.styled-log thead{
  background-color:#333;
  color:white;
  -webkit-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.55);
  -moz-box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.55);
  box-shadow: 0px 6px 3px -3px rgba(0,0,0,0.55);
  margin: 0 -5px;
  padding: 0 5px;
  overflow:hidden;
}
.modal.table-modal>.modal_body>.table-container>.thead-container>.table>thead>tr{
  display: inline-flex;/* Keep modal headers on 1 line */
}
.modal.table-modal>.modal_body>.table-container>.thead-container>.table>thead>tr>th{
  box-sizing:border-box;
  display:block;
  vertical-align:top;
}
.modal.table-modal>.modal_body>.table-container>.tbody-container{
  overflow-y:auto;
}
div.description-title{
  position:absolute;
  left:0;
  font-weight:bold;
  width:170px;
  text-align:right;
  padding:0 8px 0 0;
  box-sizing:border-box;
}
div.description-description{
  padding-left:170px;
  box-sizing:border-box;
  min-height:18px;
}
div.description-description:after{
}
div.inline-container{
  display:inline-block;
  position:relative;
  vertical-align:top;
  float:left;
}
div.image-container{
  position:relative;
}
div.image-container img{
  width:100%;
}


div.location-link:hover,
.open-sensor-boxplot-on-date:hover,
.open-sensor-log-on-date:hover,
.drawing-link:hover,
.markerlog-link:hover,
.report-markerlog-link:hover,
.marker-link:hover,
.formReport:hover{
  text-decoration:underline;
}

.open-sensor-boxplot-on-date{
display:inline-block;
}
div.location-link,
.open-sensor-boxplot-on-date,
.open-sensor-log-on-date,
.formReport,
.marker-link,
.report-markerlog-link,
.drawing-link,
.markerlog-link{
  color:#3274D7;
  cursor:pointer;
}
.blur{
  -webkit-filter: blur(5px); -moz-filter: blur(5px); -o-filter: blur(5px); -ms-filter: blur(5px); filter: blur(5px);
}
div.loading_bar{
  position:absolute;
  z-index:105;
  bottom:0;
  left:0;
  min-height:38px;
  border-top:1px solid #ddd;
  background:white url('../img/loading_bar.gif');
  background-position:center center;
  background-repeat:no-repeat;
}

th>span.sort.desc:after {
  border-bottom: none;
  border-top: 4px solid #fff;
}
th>span.sort:after {
  content: '';
  display: inline-block;
  border-left: 4px solid rgba(0, 0, 0, 0);
  border-right: 4px solid rgba(0, 0, 0, 0);
  border-bottom: 4px solid #fff;
  margin-left: 5px;
  position: absolute;
  margin-top: 6px;
}
th.cursor-default:hover{
  cursor:default;
}

th[data-sort]:hover{
  text-decoration:underline;
  cursor:pointer;
}

div.greyTooltip h2{
    margin:0 0 10px;
}
div.greyTooltip h1{
    color:white;
    margin:0;
    font-size:20px;
    font-weight:normal;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
div.greyTooltip div.body{
  position: relative;
  background-color:white;
  color:#333;
  text-align: left;
  padding:4px;
  line-height:130%;
}
div.greyTooltip div.contents{
  position: relative;
  min-height: 100px;
  padding-right: 140px;
}
div.greyTooltip div.img{
  width: 133px;
  position:absolute;
  right:10px;
  max-height:100px;
}
div.greyTooltip {
  min-height:100px;
  z-index:100;
}

div.greyTooltip label{
  font-size:14px;
  line-height:100%;
  width: 35%;
  margin-bottom:5px;
  float:left;
  color:#08C;
  font-weight:bold;
  display:block;
}
div.greyTooltip span{
  font-size:14px;
  line-height:100%;
  width:60%;
  display:inline-block;
  margin-bottom:5px;
  float:right;
}
div.greyTooltip img {
  border-radius: 5px;
  box-shadow: inset 0 0px 6px rgba(0, 0, 0, 0.25);
  border: 1px solid #AAA;
  max-width:100%;
  max-height:100px;
  float:right;
}
div.greyTooltip {
  position: absolute;
  width:358px;
  color: #FFFFFF;
  background: #333;
  line-height: 30px;
  text-align: center;
  border-radius: 6px;
  padding:4px;
  z-index:20;
}
div.greyTooltip.left:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -12px;
  width: 0; height: 0;
  border-right: 12px solid #333;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}
div.greyTooltip.right:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 100%;
  margin-top: -10px;
  width: 0; height: 0;
  border-left: 10px solid #000000;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}
.table th.question, td.question{
  padding:0;
  position:relative;
  vertical-align:middle;
}
th.question>div, td.question>div{
  position: relative;
  display: block;
}
th.question>div>div, td.question>div>div{
  float: left;
  display: inline-block;
  text-align:center;
  overflow:hidden;
  padding:8px 0;
}
td.question>div>div.correct{
  background-color:green;
}
td.question>div>div.false{
  background-color:red;
}

.input-group{
  display:table;
  position:relative;
  border-collapse:separate;
  box-sizing:border-box;
  margin-bottom:20px;
}
.input-group>div,.input-group>span,.input-group>input{
  display:table-cell;
  margin:0;
}
.input-group>.input-group-addon{
  width:1%;
  white-space:nowrap;
  vertical-align:middle;
}
.input-group .form-control:not(:last-child){
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.input-group .form-control:not(:first-child){
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.greyscale{
  /* Greyscale */
  -webkit-filter: grayscale(1);
  -webkit-filter: grayscale(100%);
  filter: gray;
  filter: grayscale(100%);
  filter: url(desaturate.svg#greyscale);
}
.disabled{
  cursor:disabled;
}
.questionnaire-answer h3{
  color:rgba(0,0,0,0.7);
  margin-top:0;
}
.questionnaire-answer{
  padding:5px;
  border-bottom:1px solid rgba(0,0,0,0.2);
}
.questionnaire-success h3{
  color:green;
}
.questionnaire-error h3{
  color:red;
}
.opaque{
  opacity:0.2;
}
.fileDropCatcher{
  opacity:0;
  position:absolute;
  top:1px;
  bottom:1px;
  left:1px;
  right:1px;
  z-index:100;
  cursor:pointer;
}
.img-preview{
  cursor:pointer;
}

.mutations .table-striped tbody tr.create{
  background-color:#b8d4b8;
}
.mutations .table-striped tbody tr.update{
  cursor: pointer;
  background: #FCA;
}
.mutations .table-striped tbody .image,.mutations .table-striped tbody .image_return{
  background: #feedbb;
}
.mutations .table-striped tbody tr.delete{
  background: #F88;
}
.modal .table-striped tbody img.open-image,.modal .table-striped tbody img.return-image{
  cursor:pointer;
}
.changelog-description ul li{
    list-style-type:disc;
    margin-left:20px;
}
h3.changelog{
  background-color:#DDD;
  color:#2177e5;
  font-weight:normal;
  padding:8px;
  text-align:center;
  font-size:14px;
}
.changelog-description h4{
    font-weight:bold;
    margin-bottom:4px;
    font-size:16px;
}
.changelog-description .date{
  font-style:italic;
  color:#777;
  font-size:12px;
}
.changelog-description{
  color:#333;
  position:relative;
  overflow:hidden;
  display:block;
  margin-top:16px;
}
.changelog-description span.inline-seperator{
  display:block;
  width:100%;
  margin-bottom:16px;
}


.datePicker{
  text-align:left;
  z-index:100;
  width:400px;
  position:absolute;
  background-color:#eee;
  border:1px solid #CCC;
  top:100%;
  right:0;
  box-sizing:border-box;
  display:block;
  height:260px;
}
.datePicker div.preview-text{
  position:absolute;
  top:34px;
  left:0;
  right:0;
  background-color:#c3d3e8;
  color:#215496;
  border-bottom:1px solid #215496;
  border-top:1px solid #215496;
  font-style:italic;
  line-height:24px;
  font-size:12px;
  font-weight:bold;
  text-align:center;
}
.datePicker div.input.checkbox{
  margin-top:0;
}
.datePicker>.menu{
  position:absolute;
  top:0;
  left:0;
  display:table;
  table-layout:fixed;
  width:100%;
}
.datePicker>.footer{
  border-top:1px solid #ddd;
  position:absolute;
  display:table;
  table-layout:fixed;
  width:100%;
  bottom:0;
  left:0;
}
.datePicker>.footer>.footer-button,
.datePicker>.menu>.menu-item{
  cursor:pointer;
  color:#333;
  font-weight:bold;
  width:100%;
  display:table-cell;
  text-align:center;
  padding:10px;
  border-bottom:1px solid #ddd;
}
.datePicker>.menu>.menu-item:hover,
.datePicker>.footer>.footer-button:hover{
  background-color:#ddd;
}
.datePicker>.menu>.menu-item.active{
  background-color:#215496;
  color:white;
}
.datePicker>.footer>.footer-button.save{
  background-color:#16a41c;
  color:white;
}
.datePicker>.content{
  padding:5px;
  top:61px;
  bottom:35px;
  left:0;
  right:0;
  position:absolute;
  background-color:white;
}
.datePicker .to-date{
  -webkit-transition: height 0.4s;
  height:0px;
  overflow:hidden;
}
.datePicker .to-date.showMe{
  height:60px;
}
.datePicker>.content>.wrapper{
  display:none;
}
.datePicker .to-date.showMe,
.datePicker>.content>.wrapper.active{
  display:block;
}

.exports>.exportList,
.datePicker{
  -webkit-transform: scaleY(0);
  -o-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);

  -webkit-transform-origin: top;
  -o-transform-origin: top;
  -ms-transform-origin: top;
  transform-origin: top;

  -webkit-transition: -webkit-transform 0.16s ease-out;
  -o-transition: -o-transform 0.16s ease;
  -ms-transition: -ms-transform 0.16s ease;
  transition: transform 0.16s ease;
}
.exports.open>.exportList,
.datePicker.datepicker-open{
  -webkit-transform: scaleY(1);
  -o-transform: scaleY(1);
  -ms-transform: scaleY(1);
  transform: scaleY(1);
}

#sideView{
  position:absolute;
  z-index:100;
  left:0;
  border-right:1px solid #215496;
  top:0;
  height:100%;
  width:400px;
  background-color:#EEE;
  transform:scaleX(0);
}
#sideView{
  -webkit-transform-origin: left;
  -o-transform-origin: left;
  -ms-transform-origin: left;
  transform-origin: left;
  -webkit-transition: transform 0.25s;
  transition:transform 0.25s;
}
#map,
#zoom_container,
#planningToggle{
  cursor:pointer;
  -webkit-transition: left 0.25s;
  transition:left 0.25s;
  background-image:url('/img/controls/checklist.png');
  background-size:80% auto;
  background-position:center;
  background-repeat:no-repeat;
}
#planningToggle{
  z-index:100;
  width:40px;
  height:40px;
  position:absolute;
  left:10px;
  bottom:10px;
  background-color:#EEE;
  border:1px solid #DDD;
  border-radius:4px;
}
#sideView.active{
  transform:scaleX(1);
}
#map.sideViewOpen{
  left:400px;
}
#planningToggle.sideViewOpen,
#zoom_container.sideViewOpen{
  left:410px;
}
#sideView .close_button{
  position:absolute;
  top:0;
  right:0;
  width:38px;
  height:38px;
  line-height:38px;
  cursor:pointer;
  text-align:center;
  color:rgba(255,255,255,0.5);
}
#sideView .side-title{
  position:relative;
  display:block;
  padding:10px;
  font-size:18px;
  font-weight:bold;
  color:rgba(255,255,255,0.5);
  background-color:rgba(33,84,150,0.7);
}
#sideView .side-title.has-back{
  padding-left:48px;
}
#sideView .side-title .back{
  position:absolute;
  display:none;
  background-color:rgba(255,255,255,0.15);
  top:0;
  left:0;
  bottom:0;
  width:38px;
  border-right:rgb(33,84,150);
  cursor:pointer;
}
#sideView .side-title .back i{
  opacity:0.5;
  top:50%;
  left:50%;
  transform:translate3d(-50%,-50%,0);
  position:absolute;
  margin:0;
}
#sideView .side-title.has-back .back{
  display:block;
}
#sideView .side-title .back:hover{
  background-color:rgba(255,255,255,0.3);
}
#sideView .loading{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate3d(-50%,-50%,0);
}
#sideView .side-menu{
  display:table;
  border-top:1px solid rgb(33,84,150);
  border-bottom:1px solid rgb(33,84,150);
  text-align:center;
  width:100%;
  font-size:14px;
  font-weight:bold;
}
#sideView .side-menu>.menu-item{
  display:table-cell;
  padding:5px;
  background-color:white;
  cursor:pointer;
}
#sideView .side-menu>.menu-item:not(first-child){
  border-left:1px solid rgb(33,84,150);
}
#sideView .side-menu>.menu-item.active{
  background-color:rgba(33,84,150,0.6);
  color:white;
}
#sideView .side-menu>.menu-item:hover{
  background-color:rgba(33,84,150,0.4);
  color:white;
}
#sideView .side-menu>.menu-item.active>i.icon,
#sideView .side-menu>.menu-item:hover>i.icon{
  background-image:url('/img/glyphicons-halflings-white.png');
}
#sideView .side-body>.header{
  text-transform:capitalize;
  background-color:#999;
  color:white;
  padding:5px;
  font-weight:bold;
}
#sideView .side-body>.info{
  background-color:#DDD;
  color:#777;
  padding:20px 10px;
  width:auto;
}
#sideView .side-body>.list-item{
  background-color:#f7f7f7;
  padding:10px 5px;
  position:relative;
}
#sideView .side-body>.list-item.selectable{
  cursor:pointer;
  padding-right:20px;
}
#sideView .side-body>.list-item.selectable>i.dot{
  margin-right:5px;
}
#sideView .side-body>.list-item.selectable>i.icon{
  position:absolute;
  right:5px;
  top:50%;
  transform:translate3d(0,-50%,0);
}
#sideView .side-body>.list-item.selectable:hover{
  background-color:#3274D7;
  color:white;
}
#sideView .side-body>.list-item.selectable:hover>i.icon{
  background-image:url("/img/glyphicons-halflings-white.png");
}
#sideView .dropbox{
  width:100%;
  height:150px;
  background:#888;
  position:absolute;
  z-index:17;
}
#sideView .dropbox .inner{
  position:absolute;
  top:10%;
  bottom:10%;
  left:10%;
  right:10%;
  border:2px dashed white;
  background-color:#CCC;
}
#sideView .dropbox .inner .content{
  width:90%;
  text-align:center;
  line-height:150%;
  font-size:16px;
  font-weight:bold;
  color:white;
  position:absolute;
  top:50%;
  left:50%;
  transform:translate3d(-50%,-50%,0);
}
#sideView .dropbox.dropping{
  background-color:#AAA;
}
.dot{
  width:8px;
  height:8px;
  margin:1px 0;
  border-radius:4px;
  background-color:black;
  display:inline-block;
}
.dot-pending{
  background-color:#AAA;
}
.dot-success{
  background-color:green;
}
.dot-need_check{
  background-color:orange;
}
.dot-failed{
  background-color:#e52a2a;
}
#sideView div.remove,
#sideView div.status{
  position:absolute;
  top:0;
  right:0;
  bottom:0;
  width:40px;
  text-align:center;
  display:table-cell;
  padding-top:17px;
}
#sideView .menu-item.inactive{
  background-color:#999;
  opacity:0.4;
}
#sideView .menu-item.inactive:hover{
  background-color:#DDD;
}

#sideView .planning-task{
  position:relative;
  display:block;
  border-bottom:1px solid #DDD;
  color:#777;
  min-height:41px;
  background-color:#F7F7F7;
}
#sideView .planning-task:nth-child(even){
  background-color:white;
}
#sideView .planning-task .description{
  margin:0 40px 0 0;
  padding:5px 5px 5px 40px;
}
#sideView .planning-task .icon{
  position:absolute;
  left:2px; top:8px;
  width:32px;height:37px;
}
#sideView .planning-task .icon.icon-remove{
  position:absolute;
  left:13px;
  top:15px;
  width:14px;height:14px;
}
#sideView .planning-task .remove:hover .icon.icon-remove{
  background-image: url('/img/glyphicons-halflings-white.png');
}
#sideView .planning-task .tasktype,
#sideView .planning-task .location,
#sideView .planning-task .date{
  font-size:10px;
  display:block;
}
#sideView .planning-task .tasktype{
  font-size:12px;
  font-weight:bold;
  margin:3px 0;
}
#sideView .planning-task .comments{
  padding-top:3px;
  margin-top:5px;
  border-top:1px solid #777;
  display:block;
}
#sideView .planning-task .comments.success{
  color:green;
  border-top-color:green;
}
#sideView .planning-task .comments.failed{
  color:#e52a2a;
  border-top-color:#e52a2a;
}

#sideView .planning-task>.remove:hover,
#sideView .planning-task>.description:hover,
#sideView .planning-task>.description:hover>.comments,
#sideView .planning-task>.status:hover{
  cursor:pointer;
  background-color: #3274D7;
  color:white !important;
  border-color:white !important;
}
#sideView .planning-task>.status:hover{
  padding-top:14px;
}
#sideView .planning-task>.status:hover>i.dot{
  border: 4px solid rgba(255,255,255,0.5);
  border-radius:8px;
}
#sideView .side-body{
  position:absolute;
  top:0;
  bottom:0;
  width:100%;
  overflow-y:auto;
}
#sideView .side-menu.side-footer-menu{
  position:absolute;
  bottom:0;
}


.datePicker{
  text-align:left;
  width:400px;
  position:absolute;
  background-color:#eee;
  border:1px solid #ddd;
  height:300px;
  top:100%;
  right:0;
  box-sizing:border-box;
  display:block;
}
.datePicker.open{
  display:block;
  border-left:none;
}
.datePicker>.menu{
  position:absolute;
  border-bottom:1px solid #ddd;
  top:0;
  left:0;
  display:table;
  table-layout:fixed;
  width:100%;
}
.datePicker>.footer{
  border-top:1px solid #ddd;
  position:absolute;
  display:table;
  table-layout:fixed;
  width:100%;
  bottom:0;
  left:0;
}
.datePicker>.menu>.menu-item:not(:first-child),
.datePicker>.footer>.footer-button:not(:first-child){
  border-left:1px solid #ddd;
}
.datePicker>.menu>.menu-item:hover,
.datePicker>.footer>.footer-button:hover{
  background-color:#ddd;
}
.datePicker>.footer>.footer-button.save,
.datePicker>.menu>.menu-item.active{
  background-color:#215496;
  color:white;
}

.datePicker.datePicker-inline{
  height:auto;
  display:block;
  position:relative;
  width:100%;
  top:auto;left:auto;right:auto;bottom:auto;
}
.datePicker.datePicker-inline>.content,
.datePicker.datePicker-inline .preview-text,
.datePicker.datePicker-inline>.menu{
  position:relative;
  top:auto;left:auto;right:auto;bottom:auto;
}
.datePicker.datePicker-inline>.footer{
  display:none;
}
.report-row.unchecked {
  font-weight:bold;
}

.strong{
    font-weight:bold;
}

.empty-metadata .empty-metadata-text{
    display: none;
}

.toggle-metadata{
    position:absolute;
    top:0;
    right:0;
}

.toggle-metadata p{
    display:inline;
}

.toggle-metadata:hover{
    filter: invert(42%) sepia(90%) saturate(2640%) hue-rotate(202deg) brightness(88%) contrast(89%);
    cursor:pointer;
}

.hide-metadata{
    display: none;
}

.hidemetadata{
    display: block;
}

.hidemetadata .changeField{
    display: none;
}

.metadatatitle{
    position:relative;
    margin: 20px 20px 20px 0;
}
.report-description{
    display:block;
    margin-bottom:8px;
}
.report-description-header{
    font-style:italic;
}
