@import url(http://fonts.googleapis.com/css?family=Open+Sans);
@import url(http://fonts.googleapis.com/css?family=Inconsolata);
@import "title.css";
@import "menu.css";
@import "sideBar.css";
@import "footer.css";
@import "content.css";

/** Page **/

.dbg {
    border: 1px solid #eeeeee;
    padding: 5px;
    width: 95%;
    overflow-wrap: break-word;
    overflow: scroll;
}

body {
    overflow: hidden;
}

#page {
    position: absolute;
    overflow: scroll;
    top: 156px;
    left: 1px;
    right: 1px;
    bottom: -25px;
    z-index: 20;
}

#pageContentTable {
    width: 100%;
}

#contents {
    /*float: left;*/
    height: 100%;
    overflow: scroll;
    vertical-align: top;
}

/** General **/
.tableFullWidth {
    width: 100%;
}

h2 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-variant: small-caps;
    font-size: 20px;
    color: #000000;
}

h3 {
    font-family: 'Open Sans', sans-serif;
    font-weight: bold;
    font-variant: small-caps;
    font-size: 15px;
    color: #000000;
}

input[type=text], input[type=password], .noteText, .informationText {
    font-size: 15px;
    font-family: 'Inconsolata', sans-serif;
}

input[type=button], input[type=submit], .linkButton, .linkButton:visited {
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-image: url('./buttonBG.jpg');
    border: #676342 1px solid;
    min-width: 70px;
    color: #000000;
    font-size: 12px;
    height: 25px;
    -webkit-box-shadow: 3px 3px 6px 3px #d4d4d4;
    box-shadow: 2px 2px 2px 1px #DFDFDF;
}

.linkButton {
    text-decoration: none;
    padding: 4px 5px;
    margin: 6px;
}

input[type=button]:hover, input[type=submit]:hover, .linkButton:hover {
    background-color: #6f6a50;
    border: #c7c290 1px solid;
    color: #ffffff;
}

input[type=button]:active, input[type=submit]:active, .linkButton:active {
    background-color: #ffffff;
    border: #676342 1px solid;
    color: #6f6a50;
}

.searchFieldName {
    text-align: left;
}

.searchFieldInput {
    width: 100px;
}

.badgeImage {
    max-height: 70px;
}

.largeTextView {
    padding: 3px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    border: 1px solid #999999;
    background-color: #fefefe;
    left: 4px;
    right: 4px;
    height: 60px;
    overflow-style: scrollbar;
    font-family: arial, helvetica, san-serif;
    overflow: scroll;
}

.hasDatepicker {
    margin: 2px 0;

}

.largeTextView b, .largeTextView strong {
    font-weight: 800;
}

.largeTextView i, .largeTextView em {
    font-style: italic;
}

.largeTextView ul {
    list-style: circle;
    margin-left: 20px;
}

.largeTextView ol {
    list-style: lower-latin;
    margin-left: 20px;
}

#abstract {
    height: 300px;
}

.printImageBorder {
    margin: 20px;
    border: 1px solid #000000;
    padding: 10px;
}

li {
    margin-left: 20px;
    padding: 3px 0;
}

.restricted {
    position: relative;
    font-size: .8em;
    color: red;
    text-decoration: none;
    /*font-weight: bold;*/
}

.mediaManagerPopover {
    position: relative;
    width: 100%;
    height: 90%;
    margin: 0;
    padding: 0;
    z-index: inherit;
    overflow: scroll;
}

.badgeLink, .badgeLink:visited{
    text-decoration: none;
    color:white;
}

.badgeLink:hover{
    font-weight: bold;
}

#mediaDisplay {
    position: relative;
    height: 600px;
    height: calc(100vh - 300px);
    overflow: scroll;
}

/** DISPLAY **/
@media print {

    #titleBar, #footer, #menuBar, #sideBar, .doNotPrint {
        display: none;
    }

    #contents {
        display: inherit;
    }

    #contents {
        position: static;
        top: 0;
        height: 100%;
    }

    #page {
        position: static;
        top: 0;
        height: 100%;
        z-index: auto;
    }

    body {
        overflow: visible;
    }

}