@import url("//fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600");

html {
    width:100%;
    height:100%;
}


body {
    font-family: 'Source Sans Pro';
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    color:#8a8d99;
    font-size:14px;
    margin:0;
    padding:0;
}


.border-box * {box-sizing:border-box;-moz-box-sizing:border-box;-ms-box-sizing:border-box;-webkit-box-sizing:border-box}
.box-sizing * {-moz-box-sizing: border-box;-ms-box-sizing: border-box;-webkit-box-sizing: border-box;}
.clear,.spacer{clear:both !important;height:0 !important;overflow:hidden !important;line-height:0 !important;font-size:0 !important;float:none !important}.spacer{height:20px !important}



.disabled-effect {
    opacity:0.4;
    filter:alpha(opacity=40);
    -webkit-filter: grayscale(.5);
}


a {
    text-decoration:none;
    color: #0e72a3;
}

a:hover {
    color: #333;
}

.bold {
    font-weight:400;
}

.full{
    width:100%;
}

.clickable {
    color: #52a1c9;
    cursor: pointer;
}

.clickable:hover {
    cursor: pointer;
    color:#62b1d9;
}

.border-rounded {
    -moz-border-radius:3px;
    -webkit-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 3px;
    -khtml-border-radius: 3px;
    border-radius: 3px;
}

.border-rounded-bottomleft {
    -moz-border-radius-bottomleft:3px;
    -webkit-border-bottom-left-radius: 3px;
    -o-border-bottom-left-radius: 3px;
    -ms-border-bottom-left-radius: 3px;
    -khtml-border-radius: 3px;
    border-bottom-left-radius: 3px;
}

.border-rounded-bottomright {
    -moz-border-radius-bottomright:3px;
    -webkit-border-bottom-right-radius: 3px;
    -o-border-bottom-right-radius: 3px;
    -ms-border-bottom-right-radius: 3px;
    -khtml-border-radius: 3px;
    border-bottom-right-radius: 3px;
}

.border-rounded-topleft {
    -moz-border-radius-topleft:3px;
    -webkit-border-top-left-radius: 3px;
    -o-border-top-left-radius: 3px;
    -ms-border-top-left-radius: 3px;
    -khtml-border-radius: 3px;
    border-top-left-radius: 3px;
}

.border-rounded-topright {
    -moz-border-radius-topright:3px;
    -webkit-border-top-right-radius: 3px;
    -o-border-top-right-radius: 3px;
    -ms-border-top-right-radius: 3px;
    -khtml-border-radius: 3px;
    border-top-right-radius: 3px;
}

/*
#app-left {
    float:left;
}

#app-right {
    overflow: hidden;
    height:100vh;
}

#mainpage {
    padding:20px 30px;
    background-color:white;
}
*/


.app-container {
    overflow:hidden;
    white-space: nowrap;
}
#app-left {
    display: inline-block;
}

#app-right {
    overflow-y: scroll;
    height:100vh;
    width:80vw;
    display: inline-block;
    vertical-align: top;
    white-space: normal;
}

#mainpage .placefree {
    position:absolute;
}

sup, sub {
    vertical-align: baseline;
    position: relative;
    top: -0.4em;
}
sub { top: 0.4em; }

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




div.alert {
    position: absolute;
    left:0;
    right:0;
    text-align: center;
    display:none;
}

div.alert.top {
    top:5px;
}
div.alert.bottom {
    bottom:0px;
}

div.alert > div {
    padding: 8px 35px 8px 14px;
    margin-bottom: 18px;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #c09853;
    display: inline-block;
}

div.alert > div strong {
    margin-right:10px;
}


div.alert .alert-heading {
    color: inherit;
}

div.alert .close {
    position: relative;
    top: -2px;
    right: -21px;
    line-height: 18px;
    float: right;
    font-size: 20px;
    font-weight: bold;
    line-height: 18px;
    color: #000000;
    text-shadow: 0 1px 0 #ffffff;
    opacity: 0.2;
    filter: alpha(opacity=20);
}

div.alert .close:hover {
    color: #000000;
    text-decoration: none;
    opacity: 0.4;
    filter: alpha(opacity=40);
    cursor: pointer;
}
div.alert .alert-success {
    background-color: #dff0d8;
    border-color: #d6e9c6;
    color: #468847;
}
div.alert .alert-danger,div.alert .alert-error {
    background-color: #f2dede;
    border-color: #eed3d7;
    color: #b94a48;
}
div.alert .alert-info {
    background-color:rgba(149,203,229,0.8);
    border-color: #52a1c9;;
    color: #1a779d;
}
div.alert .alert-block {
    padding-top: 14px;
    padding-bottom: 14px;
}
div.alert .alert-block > p,div.alert .alert-block > ul {
    margin-bottom: 0;
}
div.alert .alert-block p + p {
    margin-top: 5px;
}





.pagetitlebar {
    background-color:#f3f3f3;
    height:350px;
}




div.table {
    display:table;
}

div.table .header {
    display:table-header-group;
}

div.table .header .col{
    display:table-cell;
}

div.table .row {
    display:table-row;
}

div.table .row .col{
    display:table-cell;
}

h2 {
    font-size:20px;
    font-weight: 400;
    line-height: 38px;
    color:#666;
    margin:0;
}



hr {
    border:none;
    border-bottom: 1px solid #d9d9d9;
    height:0;
}

.clear,.spacer{clear:both !important;height:0 !important;overflow:hidden !important;line-height:0 !important;font-size:0 !important;float:none !important}.spacer{height:20px !important}

.reflection-down-7 {
    -webkit-box-reflect:below -7px -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0.7, transparent), to(white));
}

.border-rounded {
    moz-border-radius:4px;
    -webkit-border-radius: 4px;
    -o-border-radius: 4px;
    -ms-border-radius: 4px;
    -khtml-border-radius: 4px;
    border-radius: 4px;
}

.border-rounded-bottomleft {
    moz-border-radius-bottomleft:4px;
    -webkit-border-bottom-left-radius: 4px;
    -o-border-bottom-left-radius: 4px;
    -ms-border-bottom-left-radius: 4px;
    -khtml-border-radius: 4px;
    border-bottom-left-radius: 4px;
}

.border-rounded-bottomright {
    moz-border-radius-bottomright:4px;
    -webkit-border-bottom-right-radius: 4px;
    -o-border-bottom-right-radius: 4px;
    -ms-border-bottom-right-radius: 4px;
    -khtml-border-radius: 4px;
    border-bottom-right-radius: 4px;
}

.border-rounded-topleft {
    moz-border-radius-topleft:4px;
    -webkit-border-top-left-radius: 4px;
    -o-border-top-left-radius: 4px;
    -ms-border-top-left-radius: 4px;
    -khtml-border-radius: 4px;
    border-top-left-radius: 4px;
}

.border-rounded-topright {
    moz-border-radius-topright:4px;
    -webkit-border-top-right-radius: 4px;
    -o-border-top-right-radius: 4px;
    -ms-border-top-right-radius: 4px;
    -khtml-border-radius: 4px;
    border-top-right-radius: 4px;
}
