<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
* Copyrighted (c) 2011. Lineage Medical, LLC
* All rights reserved.
* Author: Serge Agroskin
* Redistribution and use in source or binary forms, with or without modification, is not permitted without the written consent by the author.
*/

/*#region Default Elements */

html {
    height: 100%;
}

body {
    background: #F9F9F9 !important;
    color: #333;
    font-family: "Arial", Helvetica, sans-serif;
    font-size: 12px;
    margin: 0;
    padding: 0;
}

textarea {
    min-height: 48px;
}

img {
    border: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: #22229C;
    font-size: 12px;
}

a.bluelink {
    color: #0066FF;
}

a.bluelink:hover {
    color: #888;
}

a:hover {
    text-decoration: underline;
}

h1 {
    font-size: 24px;
    margin-top: 0;
}

h2 {
    font-size: 16px;
    margin: 0;
    padding: 5px 0px 5px 0px;
}

h3 {
    font-size: 14px;
    margin: 0;
    padding: 5px 0px 5px 0px;
}

h4 {
    font-size: 14px;
    margin: 0;
    padding: 5px 0px 5px 0px;
}

::-webkit-input-placeholder {
    font-style: italic;
}

input:-moz-placeholder {
    font-style: italic;
}

/*#endregion*/

/*#region Custom Classes */

.author {
    background: #0063DC;
    color: #FFF;
    padding: 1px 5px 1px 5px;
    margin-left: 5px;
}

.caret {
    display: inline-block;
    width: 0;
    height: 0;
    vertical-align: middle;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0054BD;
    opacity: 0.3;
    filter: alpha(opacity=30);
    content: "";
}

.dropdown {
    cursor: pointer;
    font-size: 24px;
    padding: 10px 0px 10px 0px;
    font-weight: bold;
}

.dropdown-menu {
    display: none;
    list-style: none;
    position: absolute;
    margin: 0;
    padding: 0;
    background-color: #EEE;
    border: 1px solid #CCC;
    margin-top: 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;

    z-index: 1000;
}

.dropdown-menu::before {
    content: '';
    display: inline-block;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-bottom: 7px solid #CCC;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    position: absolute;
    top: -7px;
    left: 9px;
}

.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;
    left: 10px;
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
    clear: both;
}

.dropdown-menu li a {
    display: block;

    text-decoration: none;
    padding: 5px 10px 5px 10px;
    display: block;
    border-bottom: 1px solid #CCC;
    font-size: 16px;
    color: #383838;
}

.dropdown-menu li a:hover {
    background: #E2EDFF;
}

.warning {
    border: 1px solid #FE8;
    padding: 10px;
    background-color: #FFFFE5;
}

.error {
    color:red;
}

.success {
    border: 1px solid Green;
    padding: 10px;
    background-color: #DFF2BF;
}

.success2 {
    padding: 10px;
    color: #1c7c1c;
    font-size: 24px;
    text-align: center;
}

ul.clean {
    padding: 0;
    margin: 0;
    list-style: none;
}

[class^="icon2-"], [class*=" icon2-"] {
    display: inline-block;
    width: 14px;
    height: 14px;
    line-height: 14px;
    vertical-align: text-top;
    background-image: url("/images/sprite.png");
    background-position: 0px 0px;
    background-repeat: no-repeat;
}

.large-icon {
    width: 24px;
    height: 24px;
    line-height: 24px;
    padding: 0px 2px 4px 2px;
}

.icon2-twitter {
    background-position: 0px 0px;
}

.icon2-facebook {
    background-position: 0px -40px;
}

.icon2-linkedin {
    background-position: 0px -80px;
}

.center {
    margin: 0px auto;
    width: 980px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.clear {
    clear: both;
}

.strikeout:hover {
    cursor: pointer;
}

.table {
    width: 100%;
    margin-bottom: 18px;
}

.table th, .table td {
    padding: 8px;
    line-height: 18px;
    text-align: left;
    vertical-align: top;
    border-top: 1px solid #ddd;
}

.table tr:first-child th, .table tr:first-child td {
    border-top: none;
}

.table th {
    font-weight: bold;
    background: #EFEFEF; /* Old browsers */
    background: -moz-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(255, 255, 255, 1)), color-stop(100%, rgba(229, 229, 229, 1))); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 100%); /* IE10+ */
    background: linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(229, 229, 229, 1) 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#e5e5e5', GradientType=0); /* IE6-9 */

}

.table thead th {
    vertical-align: bottom;
}

.table thead:first-child tr th, .table thead:first-child tr td {
    border-top: 0;
}

.table tbody + tbody {
    border-top: 2px solid #ddd;
}

.table-condensed th, .table-condensed td {
    padding: 4px 5px;
}

.table-bordered {
    border: 1px solid #ddd;
    border-collapse: separate;
    *border-collapse: collapsed;

}

.table-bordered th + th, .table-bordered td + td, .table-bordered th + td, .table-bordered td + th {
    border-left: 1px solid #ddd;
}

.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-striped tbody tr:nth-child(even) td, .table-striped tbody tr:nth-child(even) th {
    background-color: #F3F7FA;
}

.styledtable th {
    border-bottom: 1px solid #D3D3D3;
    border-top: 1px solid #D3D3D3;
    background: #EEE;
    text-align: left;
    font-size: 13px;
    padding: 4px 4px 4px 4px;
}

.styledtable td {
    border-bottom: 1px solid #B2C1D6;
    padding: 4px 4px 4px 4px;
    background-color: #FFF;
    font-size: 12px;
    vertical-align: top;
}

.styledtable-border td {
    border: 1px solid #F2F2F2;
}

.altrow td {
    background-color: #F3F7FA;
}

#register input {
    color: #333;
    padding: 6px;
    border: 1px solid #959595;
    border-right: 1px solid lightGrey;
    border-bottom: 1px solid lightGrey;
    width: 200px;
}

#register select {
    padding: 6px;
}

.largeinput {
    color: #333;
    padding: 6px;
    border: 1px solid #959595;
    border-right: 1px solid lightGrey;
    border-bottom: 1px solid lightGrey;
    width: 200px;
}

.clean {
    padding: 0;
    margin: 0;
    list-style: none;
}

.header {
    background: #FFF;
}

.step1 {
    background: #E2EDFF;
    border-bottom: 1px solid #AEC2E5;
}

.step2 {
    background: #FFFDE2;
    border-bottom: 1px solid #EDE9B4;
}

.step3 {
    background: #E0EBFF;
    border-bottom: 1px solid #AFCCFF;
}

.technique_guide {
    background: #D2EFD2 !important;
}

.submenu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.submenu li {
    float: left;
    margin: 0;
    padding: 0;
}

.submenu li a {
    font-size: 12px;
    padding: 5px 17px 5px 17px;
    display: block;
    margin: 0;
    color: #000;
    font-weight: bold;
}

.submenusmall li a {
    padding: 5px 6px 5px 6px;
}

.submenu li a:hover {
    text-decoration: underline;
}

.leftmenu {
    float: left;
    width: 200px;
    color: black;
    background: #FFF;
}

/* Left Menu becomes static and scrollable for topics */
.topicmenu {
    position: fixed;
    top: 131px;
    bottom: 0px;
    overflow: auto;
}

/* Less padding for topic menu links */
.topicmenu li a {
    padding: 2px 2px 2px 8px;
    display: block;
    border-bottom: 0;
}

li.menuheader {
    font-weight: bold;
    text-align: center;
    color: #004FAF;
    font-size: 14px;
    padding: 25px 0px 10px 0px;
}

li.menusection {
    font-weight: bold;
    background: #EEE;
    color: #000;
    padding: 4px 2px 4px 8px;
    border-bottom: 1px solid #D3D3D3;
}

.leftmenu ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.leftmenu li a {
    padding: 4px 2px 4px 8px;
    display: block;
    border-bottom: 1px solid #EEE;
}

.glass {
    position: relative;
    left: -25px;
    top: 4px;
    cursor: pointer;
    vertical-align: top !important;
}

.rightcontent {
    float: left;
    width: 737px;
    padding: 20px;
    min-height: 600px;
    overflow: auto;
    background: #FFF;
}

.rightbanner {
    position: absolute;
    top: 140px;
    margin-left: 770px;
    width: 160px;
}

.rightbox {
    background-color: #EEE;
    padding: 9px;
    border: 1px solid #DDD;
}

.topicheader {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 131px;
    width: 100%;
    z-index: 10;
}

.topiccontent {
    margin-top: 128px;
    margin-left: 200px;
    border-bottom: 1px solid #DDD;
}

.homefooter {
    font-size: 13px;
    color: #FFF;
    background: #1C1C1C;
    background: url(/images/footerbg.jpg) repeat-x;
    padding: 20px 0px 20px 0px;
}

.copyright {
    text-align: center;
    color: #888;
    padding: 10px 0px 10px 0px;
    background: #141414;
}

.homefooter a {
    color: #CCC;
}

.badge {
    padding: 2px 5px 2px 5px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    background: #D4D4D4;
    color: #000;
}

.tabs {
    margin: 0px;
    padding: 0px;
    list-style: none;
}

.tabs li {
    float: left;
    margin: 0px 5px -1px 0px;
}

.tabs a {
    display: block;
    text-decoration: none;
    font-size: 13px;
    margin: 0px;
    padding: 8px 8px 8px 8px;
    min-width: 80px;
    text-align: center;
    -webkit-border-radius: 4px 4px 0 0;
    -moz-border-radius: 4px 4px 0 0;
    border-radius: 4px 4px 0 0;
    background: #EEE;
    color: #000;
}

.smalltabs a {
    min-width: 0px;
    padding: 3px 5px 3px 5px;
}

.selected a {
    background: #FFF;
    color: #000;
    border: solid 1px #888;
    border-bottom: 0;
}

.selectedborder a {
    background: #FFF;
    font-weight: bold;
}

.tabbox2 {
    border: 1px solid #888;
    padding: 20px;
    background: #FFF;
    margin: 0px 0px 20px 0px;
}

.borderbox {
    border: 2px solid #E2EDFF;
    padding: 0px 20px 20px 20px;
}

.borderbox h3 {
    font-size: 12px;
    color: #0000CC;
}

.grayborder {
    border: 2px solid #CCC;
}

ul.video-list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

ul.video-list li {
    display: block;
    margin-bottom: 5px;
}

.video-thumb:hover span, .video-thumb-hover span {
    background: transparent url("/images/video-hover.png") no-repeat 50% 50%;
    display: block;
    position: absolute;
    margin-top: -83px;
    z-index: 100;
    height: 80px;
    width: 106px;
}

.video-thumb-large:hover span {
    background: transparent url("/images/video-hover.png") no-repeat 50% 50%;
    display: block;
    position: absolute;
    margin-top: -151px;
    z-index: 100;
    height: 148px;
    width: 198px;
}

ul.video-list-detailed {
    margin: 0px 0px 10px 0px;
    padding: 0px;
    list-style-type: none;
}

ul.video-list-detailed li {
    display: block;
    padding: 7px 0px 5px 0px;
    border-bottom: 1px solid #EEE;
}

ul.large-menu {
    padding: 0;
    margin: 0;
    list-style: none;
}

ul.large-menu li a {
    padding: 5px 2px 5px 8px;
    display: block;
    border-bottom: 1px solid #DDD;
    font-size: 16px;
    color: #383838;
}

ul.large-menu li a:hover {
    text-decoration: none;
    background: #E2EDFF;
}

ul.list {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

ul.list li {
    padding: 5px;
    border-bottom: 1px solid #E9E9E9;
    background: #FFF;
}

ul.hover li:hover {
    background: #EDEFF4;
}

ul.hover a:hover {
    text-decoration: none;
}

li.unread {
    background: #E2EDFF !important;
}

.row-new {
    margin: 10px 0 0 0;
    background: #383838;
    padding: 3px 0px 3px 10px;
    border-bottom: 1px solid #669FE6;
    padding-left: 10px;
    margin-bottom: 0;
    color: #fff;

}

.homepagesectionheader {
    padding: 3px 0px 3px 10px;
    background-color: #383838;
    color: #FFF;
    border-bottom: 0.124em solid #0063DC;
    margin: 0;
}

h2.graybg {
    background: #CCC;
}

.watermark {
    color: #999;
}

.graytext {
    color: Gray;
}

#content {
    padding-left: 10px;
    padding-top: 0px;
    background-color: #FFFFFF;
    border: 0px none;
    height: 100%;
    margin: 0px;
    overflow: auto;
    position: relative;
    z-index: 10;
}

#topic-content, #topic-content td, #topic-content th {
    font-size: 16px;
    color: #000;
}

#topic-content a {
    font-size: 16px;
}

.comment-list {
    padding: 5px 0px 5px 0px;
}

.comment {
    padding: 5px 9px 5px 10px;
}

.comment-picture img {
    border: 1px solid #999;
}

.comment-textbox {
    width: 608px;
    padding: 3px 0px 3px 10px;
}

.comment-textbox textarea {
    width: 608px;
}

.comment-textbox-home {
    width: 550px;
    padding: 3px 0px 3px 10px;
}

.comment-textbox-home textarea {
    width: 540px;
}

.comment-add {
    background: #E2EDFF;
    padding: 7px 10px 5px 10px;
}

.comment-content {
    width: 604px;
    padding: 5px;
    margin-left: 10px;
    background: #FFF;
    border: 1px solid #CCC;
    border-bottom-color: #999;
}

.comment-filter {
    display: inline-block;
}
.comment-label {
    display: block;
}
.comment-text {
    padding-top: 10px;
    word-wrap: break-word;
    font-size: 14px;
    line-height: 17px;
}

.comment_text {
    padding: 5px;
    margin-left: 60px;
    box-sizing: border-box;
}

.comment-picture {
    width: 50px;
}

.pubmedlink {
    display: block;
    font-size: 12px;
    line-height: 17px;
}

#footer {
    text-align: center;
    padding: 5px 0 5px 0;
    color: #888888;
}

#footer a {
    color: #888888;
}

.updateProfile td {
    line-height: 10px;
}

.rounded {
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

.roundedtop {
    -moz-border-radius-topleft: 10px;
    -moz-border-radius-topright: 10px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

#slideshow {
    z-index: 9;
    background: #000;
}

.slideshowMenu {
    /* background-image: url("/images/pixel.png"); */
    margin-top: -285px;
    margin-left: 855px;
    z-index: 12;
    position: absolute;
    width: 105px;
    padding: 3px 0px 3px 0px;
}

.slideshowMenu a {
    padding: 2px 5px 2px 5px;
    margin: 0px 3px 0px 3px;
    font-size: 16px;
    color: #AEC2E5;
    display: block;
    float: left;
}

.slideshowMenu a:hover {
    text-decoration: none;
    color: #FFFFFF;
}

.mainSearchResults {
    background: white;
    position: absolute;
    display: none;
    z-index: 99;
    border: 1px solid black;
    text-align: left;
}

.mainSearchResults ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.mainSearchResults a {
    font-weight: normal;
    font-size: 12px;
    display: block;
    padding: 4px 5px 4px 5px;
}

.tabbox {
    border: 1px solid #888;
    padding: 20px;
    background: #FFF;
    margin: 0px 0px 20px 0px;
    overflow-x: auto;
}

.tabbox--member-comments {
    border: none;
}

.video-tabbox {
    border: none !important;
    margin: 0 !important;
}

.tabs-video, .tabs-peak a {
    background: white !important;
}

.largeNumber {
    font-size: 48px;
    font-weight: bold;
    background: #EEE;
    text-align: center;
}

.smallNumber {
    font-size: 13px;
    font-weight: bold;
    text-align: center;
    background: #D2EFD2;
    padding: 4px;
}

#confirm-container {
    padding: 12px 8px 12px 8px;
}

#confirm-container .confirmtitle {
    text-align: center;
    font-weight: bold;
    font-size: 14px;
    padding: 0px 0px 20px 0px;
}

#confirm-container .confirmmessage {
    text-align: left;
    color: #333;
    font-size: 14px;
    margin: 0;
}

#confirm-container .confirmbuttons {
    text-align: center;
    padding: 30px 0 20px 0;
}

#confirm-container .confirmbutton {
    margin-left: 60px;
}

.poll {
    width: 244px;
    margin-left: 20px;
    margin-bottom: 10px;
    border: 1px solid #C9D1DE;
    padding: 10px;
}

.poll p {
    margin: 10px 0;
}

.poll table {
    margin: 5px 0;
}

/*#endregion*/

/*#region Lightbox PLUGIN */

#jquery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 90;
    width: 100%;
    height: 500px;
}

#jquery-lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    text-align: center;
    line-height: 0;
}

#jquery-lightbox a img {
    border: none;
}

#lightbox-container-image-box {
    position: relative;
    background-color: #fff;
    width: 250px;
    height: 250px;
    margin: 0 auto;
}

#lightbox-container-image {
    padding: 10px;
}

#lightbox-loading {
    position: absolute;
    top: 40%;
    left: 0%;
    height: 25%;
    width: 100%;
    text-align: center;
    line-height: 0;
}

#lightbox-nav {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 10;
}

#lightbox-container-image-box &gt; #lightbox-nav {
    left: 0;
}

#lightbox-nav a {
    outline: none;
}

#lightbox-nav-btnPrev, #lightbox-nav-btnNext {
    width: 49%;
    height: 100%;
    zoom: 1;
    display: block;
}

#lightbox-nav-btnPrev {
    left: 0;
    float: left;
}

#lightbox-nav-btnNext {
    right: 0;
    float: right;
}

#lightbox-container-image-data-box {
    font: 10px Verdana, Helvetica, sans-serif;
    background-color: #fff;
    margin: 0 auto;
    line-height: 1.4em;
    overflow: auto;
    width: 100%;
    padding: 0 10px 0;
}

#lightbox-container-image-data {
    padding: 0px;
    color: #000000;
}

#lightbox-container-image-data #lightbox-image-details {
    width: 100%; /* float: left; */
    text-align: left;
}

#lightbox-image-details-caption {
    font-weight: bold;
}

#lightbox-image-details-currentNumber {
    display: block;
    clear: left;
    padding-bottom: 1.0em;
}

#lightbox-secNav-btnClose {
    width: 60px;
    float: right;
    padding-bottom: 0.7em;
}

/*#endregion*/

div.rating-cancel, div.rating-cancel a {
    display: none;
}

div.rating-text {
    font-size: 14px;
    font-weight: bold;
    color: #01137F;
}

/*#endregion*/

/*#region Qtip PLUGIN */

/*
* qTip - The jQuery tooltip plugin
* http://craigsworks.com/projects/qtip/
*
* Version: 2.0.0pre
* Copyright 2009 Craig Michael Thompson - http://craigsworks.com
*
* Dual licensed under MIT or GPL Version 2 licenses
*   http://en.wikipedia.org/wiki/MIT_License
*   http://en.wikipedia.org/wiki/GNU_General_Public_License
*
* Date: Mon Sep 6 15:10:26 2010 +0100
*/

.ui-tooltip-accessible {
    left: -10000em !important;
    top: -10000em !important;
    display: block !important;
    visibility: hidden !important;
}

/* IE6 ONLY - Width detection fix */
* html .ui-tooltip-accessible {
    position: static !important;
    float: left !important;
}

.ui-tooltip, .qtip {
    position: absolute;
    display: none;
    max-width: 400px;
    min-width: 50px;
}

.ui-tooltip .ui-tooltip-wrapper {
    position: relative;
    overflow: hidden;
    border-width: 3px;
    border-style: solid;
}

.ui-tooltip .ui-tooltip-content {
    position: relative;
    padding: 5px 9px;
    text-align: left;
    word-wrap: break-word;
    overflow: hidden;
}

.ui-tooltip .ui-tooltip-titlebar {
    position: relative;
    padding: 6px 35px 6px 10px;
    font-weight: bold;
}

/*! Default close button class */
.ui-tooltip .ui-tooltip-close {
    position: absolute;
    height: 16px;
    width: 16px;
    padding: 1px;
    right: 5px;
    top: 5px;
    cursor: pointer;
    line-height: 0px;
    font-size: 0px;
}

.ui-tooltip .ui-tooltip-close .ui-icon {
    height: 16px;
    width: 16px;
    display: block;
    opacity: 0.8;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)";
    filter: alpha(opacity=80);
}

.ui-tooltip .ui-tooltip-close:hover .ui-icon {
    opacity: 1;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    filter: alpha(opacity=100);
}

/*! Custom button class */
.ui-tooltip .ui-tooltip-button {
    float: right;
}

/* Applied to 'focused' tooltips e.g. most recently displayed/interacted with */
.ui-tooltip-focus {
}

/*! Default tooltip style */
.ui-tooltip-wrapper {
    border: 1px solid #CAED9E;
    padding: 5px;
    color: #3F6219;
}

.ui-tooltip .ui-tooltip-titlebar {
    background-color: #F0DE7D;
}

.ui-tooltip .ui-tooltip-close .ui-icon {
    background: #A27D35;
}

/*! Plain tooltip style */
.ui-tooltip-plain, .ui-tooltip-plain .ui-tooltip-wrapper {
    border: 1px solid black;
    padding: 5px;
    background-color: white;
    color: black;
}

.ui-tooltip-plain .ui-tooltip-titlebar {
    background-color: white;
}

.ui-tooltip-plain .ui-tooltip-close .ui-icon {
    background: black;
}

/*! Blue tooltip style */
.ui-tooltip-blue, .ui-tooltip-blue .ui-tooltip-wrapper {
    border: 1px solid black;
    padding: 5px;
    background-color: #E2EDFF;
    color: black;
}

.ui-tooltip-blue .ui-tooltip-titlebar {
    background-color: #E2EDFF;
}

.ui-tooltip-blue .ui-tooltip-close .ui-icon {
    background: #E2EDFF;
}

/*#region SimpleModal Plugin */

#simplemodal-overlay {
    background-color: #000;
}

#simplemodal-container {
    border-radius: 1px;
    box-shadow: 0px 0px 0px 1.5px #98B1DA;
    background-color: #FFF;
    border-radius: 1px;
    -moz-border-radius: 1px;
    -webkit-border-radius: 1px;
    behavior: url(/css/PIE.htc) \9;
}

#simplemodal-flat-container {
    background-color: #FFF;
    behavior: url(/css/PIE.htc) \9;
}

.delete {
    background: url(/images/x-light.png) no-repeat;
    width: 13px;
    height: 13px;
}

.delete:hover {
    background: url(/images/x-light-hover.png) no-repeat;
}

/*#endregion*/

/*#region DataTables Plugin */

#sortTable_filter {
    margin-bottom: 10px;
    display: none;
}

.sorting_asc {
    cursor: pointer;
    background: url('../images/sort_asc.png') no-repeat center right;
}

.sorting_desc {
    cursor: pointer;
    background: url('../images/sort_desc.png') no-repeat center right;
}

.sorting {
    cursor: pointer;
}

.sorting_asc_disabled {
    cursor: pointer;
}

.sorting_desc_disabled {
    cursor: pointer;
}

tr.odd {
    background-color: white;
}

tr.even {
    background-color: white;
}

#sortTable {
    border-top: 1px solid #E5E2E2;
    border-left: 1px solid #E5E2E2;
    border-right: 1px solid #E5E2E2;
}

#sortTable td {
    border-bottom: 1px solid #E5E2E2;
}

/*#endregion*/

/*#region ContextMenu Plugin Custom Styles (MIGHT BE NOT?) */

.connected {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.connected li {
    border: 1px solid #003;
    background-color: #003;
    color: #CCC;
    outline: none;
    padding: 3px 5px 3px 5px;
    margin-bottom: 2px;
}

li.ui-state-highlight {
    background: #F6F698;
    height: 1.5em;
    line-height: 1.2em;
}

/*#endregion*/

/*#region Chosen Plugin */

/* @group Base */
.chzn-container {
    font-size: 13px;
    position: relative;
    display: inline-block;
    zoom: 1;
    *display: inline;
}

.chzn-container .chzn-drop {
    background: #fff;
    border: 1px solid #aaa;
    border-top: 0;
    position: absolute;
    top: 29px;
    left: 0;
    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -moz-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    -o-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
    z-index: 999;
}

/* @end */

/* @group Single Chosen */
.chzn-container-single .chzn-single {
    background-color: #ffffff;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #aaaaaa;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    height: 23px;
    line-height: 24px;
    padding: 0 0 0 8px;
    color: #222;
    text-decoration: none;
}

.chzn-container-single .chzn-single span {
    margin-right: 26px;
    display: block;
    overflow: hidden;
    white-space: nowrap;
    -o-text-overflow: ellipsis;
    -ms-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.chzn-container-single .chzn-single abbr {
    display: block;
    position: absolute;
    right: 26px;
    top: 6px;
    width: 12px;
    height: 13px;
    font-size: 1px;
    background: url("/images/chosen-sprite.png") right top no-repeat;
}

.chzn-container-single .chzn-single abbr:hover {
    background-position: right -11px;
}

.chzn-container-single .chzn-single div {
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    height: 100%;
    width: 18px;
}

.chzn-container-single .chzn-single div b {
    background: url("/images/chosen-sprite.png") no-repeat 0 0;
    display: block;
    width: 100%;
    height: 100%;
}

.chzn-container-single .chzn-search {
    padding: 3px 4px;
    position: relative;
    margin: 0;
    white-space: nowrap;
    z-index: 1010;
}

.chzn-container-single .chzn-search input {
    background: #fff url("/images/chosen-sprite.png") no-repeat 100% -22px;
    background: url("/images/chosen-sprite.png") no-repeat 100% -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
    background: url("/images/chosen-sprite.png") no-repeat 100% -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat 100% -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat 100% -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat 100% -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat 100% -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    margin: 1px 0;
    padding: 4px 20px 4px 5px;
    outline: 0;
    border: 1px solid #aaa;
    font-family: sans-serif;
    font-size: 1em;
}

.chzn-container-single .chzn-drop {
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
}

/* @end */

.chzn-container-single-nosearch .chzn-search input {
    position: absolute;
    left: -9000px;
}

/* @group Multi Chosen */
.chzn-container-multi .chzn-choices {
    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
    background-image: -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background-image: linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    border: 1px solid #aaa;
    margin: 0;
    padding: 0;
    cursor: text;
    overflow: hidden;
    height: auto !important;
    height: 1%;
    position: relative;
}

.chzn-container-multi .chzn-choices li {
    float: left;
    list-style: none;
}

.chzn-container-multi .chzn-choices .search-field {
    white-space: nowrap;
    margin: 0;
    padding: 0;
}

.chzn-container-multi .chzn-choices .search-field input {
    color: #666;
    background: transparent !important;
    border: 0 !important;
    font-family: sans-serif;
    font-size: 100%;
    height: 15px;
    padding: 5px;
    margin: 1px 0;
    outline: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -o-box-shadow: none;
    box-shadow: none;
}

.chzn-container-multi .chzn-choices .search-field .default {
    color: #999;
}

.chzn-container-multi .chzn-choices .search-choice {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4f4f4', endColorstr='#eeeeee', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eeeeee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -o-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: -ms-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    background-image: linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eeeeee 100%);
    -webkit-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    -moz-box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    box-shadow: 0 0 2px #ffffff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
    color: #333;
    border: 1px solid #aaaaaa;
    line-height: 13px;
    padding: 3px 20px 3px 5px;
    margin: 3px 0 3px 5px;
    position: relative;
    cursor: default;
}

.chzn-container-multi .chzn-choices .search-choice-focus {
    background: #d4d4d4;
}

.chzn-container-multi .chzn-choices .search-choice .search-choice-close {
    display: block;
    position: absolute;
    right: 3px;
    top: 4px;
    width: 12px;
    height: 13px;
    font-size: 1px;
    background: url("/images/chosen-sprite.png") right top no-repeat;
}

.chzn-container-multi .chzn-choices .search-choice .search-choice-close:hover {
    background-position: right -11px;
}

.chzn-container-multi .chzn-choices .search-choice-focus .search-choice-close {
    background-position: right -11px;
}

/* @end */

/* @group Results */
.chzn-container .chzn-results {
    margin: 0 4px 4px 0;
    max-height: 240px;
    padding: 0 0 0 4px;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
}

.chzn-container-multi .chzn-results {
    margin: -1px 0 0;
    padding: 0;
}

.chzn-container .chzn-results li {
    display: none;
    line-height: 15px;
    padding: 5px 6px;
    margin: 0;
    list-style: none;
}

.chzn-container .chzn-results .active-result {
    cursor: pointer;
    display: list-item;
}

.chzn-container .chzn-results .highlighted {
    background-color: #3875d7;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#3875d7', endColorstr='#2a62bc', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #3875d7), color-stop(90%, #2a62bc));
    background-image: -webkit-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
    background-image: -moz-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
    background-image: -o-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
    background-image: -ms-linear-gradient(top, #3875d7 20%, #2a62bc 90%);
    background-image: linear-gradient(top, #3875d7 20%, #2a62bc 90%);
    color: #fff;
}

.chzn-container .chzn-results li em {
    background: #feffde;
    font-style: normal;
}

.chzn-container .chzn-results .highlighted em {
    background: transparent;
}

.chzn-container .chzn-results .no-results {
    background: #f4f4f4;
    display: list-item;
}

.chzn-container .chzn-results .group-result {
    cursor: default;
    color: #999;
    font-weight: bold;
}

.chzn-container .chzn-results .group-option {
    padding-left: 15px;
}

.chzn-container-multi .chzn-drop .result-selected {
    display: none;
}

.chzn-container .chzn-results-scroll {
    background: white;
    margin: 0 4px;
    position: absolute;
    text-align: center;
    width: 321px; /* This should by dynamic with js */
    z-index: 1;
}

.chzn-container .chzn-results-scroll span {
    display: inline-block;
    height: 17px;
    text-indent: -5000px;
    width: 9px;
}

.chzn-container .chzn-results-scroll-down {
    bottom: 0;
}

.chzn-container .chzn-results-scroll-down span {
    background: url("/images/chosen-sprite.png") no-repeat -4px -3px;
}

.chzn-container .chzn-results-scroll-up span {
    background: url("/images/chosen-sprite.png") no-repeat -22px -3px;
}

/* @end */

/* @group Active  */
.chzn-container-active .chzn-single {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    border: 1px solid #5897fb;
}

.chzn-container-active .chzn-single-with-drop {
    border: 1px solid #aaa;
    -webkit-box-shadow: 0 1px 0 #fff inset;
    -moz-box-shadow: 0 1px 0 #fff inset;
    -o-box-shadow: 0 1px 0 #fff inset;
    box-shadow: 0 1px 0 #fff inset;
    background-color: #eee;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #eeeeee), color-stop(80%, #ffffff));
    background-image: -webkit-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
    background-image: -moz-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
    background-image: -o-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
    background-image: -ms-linear-gradient(top, #eeeeee 20%, #ffffff 80%);
    background-image: linear-gradient(top, #eeeeee 20%, #ffffff 80%);
    -webkit-border-bottom-left-radius: 0;
    -webkit-border-bottom-right-radius: 0;
    -moz-border-radius-bottomleft: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.chzn-container-active .chzn-single-with-drop div {
    background: transparent;
    border-left: none;
}

.chzn-container-active .chzn-single-with-drop div b {
    background-position: -18px 1px;
}

.chzn-container-active .chzn-choices {
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    -o-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    box-shadow: 0 0 5px rgba(0, 0, 0, .3);
    border: 1px solid #5897fb;
}

.chzn-container-active .chzn-choices .search-field input {
    color: #111 !important;
}

/* @end */

/* @group Disabled Support */
.chzn-disabled {
    cursor: default;
    opacity: 0.5 !important;
}

.chzn-disabled .chzn-single {
    cursor: default;
}

.chzn-disabled .chzn-choices .search-choice .search-choice-close {
    cursor: default;
}

/* @group Right to Left */
.chzn-rtl {
    text-align: right;
}

.chzn-rtl .chzn-single {
    padding: 0 8px 0 0;
    overflow: visible;
}

.chzn-rtl .chzn-single span {
    margin-left: 26px;
    margin-right: 0;
    direction: rtl;
}

.chzn-rtl .chzn-single div {
    left: 3px;
    right: auto;
}

.chzn-rtl .chzn-single abbr {
    left: 26px;
    right: auto;
}

.chzn-rtl .chzn-choices .search-field input {
    direction: rtl;
}

.chzn-rtl .chzn-choices li {
    float: right;
}

.chzn-rtl .chzn-choices .search-choice {
    padding: 3px 5px 3px 19px;
    margin: 3px 5px 3px 0;
}

.chzn-rtl .chzn-choices .search-choice .search-choice-close {
    left: 4px;
    right: auto;
    background-position: right top;
}

.chzn-rtl.chzn-container-single .chzn-results {
    margin: 0 0 4px 4px;
    padding: 0 4px 0 0;
}

.chzn-rtl .chzn-results .group-option {
    padding-left: 0;
    padding-right: 15px;
}

.chzn-rtl.chzn-container-active .chzn-single-with-drop div {
    border-right: none;
}

.chzn-rtl .chzn-search input {
    background: #fff url("/images/chosen-sprite.png") no-repeat -38px -22px;
    background: url("/images/chosen-sprite.png") no-repeat -38px -22px, -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eeeeee), color-stop(15%, #ffffff));
    background: url("/images/chosen-sprite.png") no-repeat -38px -22px, -webkit-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat -38px -22px, -moz-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat -38px -22px, -o-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat -38px -22px, -ms-linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    background: url("/images/chosen-sprite.png") no-repeat -38px -22px, linear-gradient(top, #eeeeee 1%, #ffffff 15%);
    padding: 4px 5px 4px 20px;
    direction: rtl;
}

/*#endregion*/

/* No wrap table cell */
td.nowrap {
    white-space: nowrap;
}

a.reset {
    color: green;
}

.new-button {
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    padding-top: 7px;
    padding-bottom: 7px;
    min-width: 100px;
    color: white;
    text-decoration: none;
    margin-left: 5px;
    margin-right: 5px;
    font-weight: lighter;
    display: block;
    text-align: center;
}

.new-button div {
    float: left;
    margin-left: 10px;
}

.new-button:hover div {
    text-decoration: underline;
}

.new-button img {
    float: left;
    margin-left: 5px;
    margin-right: 10px;
}

#insert-pubmed {
    padding: 10px;
    margin: 0px auto;
    text-align: center;
}

#insert-pubmed table {
    padding: 20px;
    margin: 20px;
}

.insert-pubmed-table {
    width: 100%;
    padding-top: 10px;
    padding-bottom: 5px
}

#insert-pubmed tr {
    text-align: left;
}

.insert-pubmed-help-video-link {
    margin-top: 9px;
    display: block;
    float: left;
}

#PMIDLevel_chzn, #PMIDNumber {
    width: 100% !important;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.big-link {
    font-size: 14px;
}

.post-to-question-control-table {
    margin-top: 10px;
}

/* ^  Post Item To Question  ^ */

.incorrect_answer {
    color: #fd9aa1
}

.correct_answer {
    color: #186200
}

.comments-direction-selected {
    text-decoration: underline;
}

/* region facebox-old*/

#facebox_old .content {
    max-width: 900px;
}

#facebox_old .faceboxwidth {
    width: 800px;
}

#facebox_old .faceboxHide {
    display: none;
}

#facebox_old .b {
    background: url(/images/facebox_old/b.png);
}

#facebox_old .tl {
    background: url(/images/facebox_old/tl.png);
}

#facebox_old .tr {
    background: url(/images/facebox_old/tr.png);
}

#facebox_old .bl {
    background: url(/images/facebox_old/bl.png);
}

#facebox_old .br {
    background: url(/images/facebox_old/br.png);
}

#facebox_old {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    text-align: left;
}

#facebox_old .popup {
    position: relative;
}

#facebox_old table {
    border-collapse: collapse;
}

/*#facebox_old .close_image-efootprint {
    background-image: url("/images/efootprintclose.png")
}*/

#facebox_old td {
    border-bottom: 0;
    padding: 0;
}

#facebox_old .body {
    padding: 10px;
    background: #fff;
    font-size: small;
}

#facebox_old.efootprintPopup {
    box-sizing: border-box;
    border-width: 0;
}

#facebox_old .body-efootprint {
    padding-top: 0px;
    padding-left: 0px;
    padding-bottom: 0px;
    padding-right: 0px;
    font-size: small;
}

#facebox_old .content {
    background-color: white;
}

#facebox_old .loading {
    text-align: center;
}

#facebox_old .image {
    text-align: center;
}

#facebox_old img {
    border: 0;
    margin: 0;
}

#facebox_old .footer {
    border-top: 1px solid #DDDDDD;
    padding-top: 5px;
    margin-top: 10px;
    text-align: right;
}

#facebox_old .footer-efootprint {
    text-align: left;
    color: black;
    background-color: #F3F3F3;
    height: 55px;
    /*opacity: 0.8;*/
}

#facebox_old .efootprint-title {
    font-size: 18px;
    color: white;
    display: inline-block;
    margin-top: 18px;
    margin-left: 18px;
    color: black;
}

#facebox_old .efootprint-logo img {
    margin-top: 3px !important;
    margin-left: 5px !important;
}

#facebox_old .footer-efootprint .close {
    float: right;
    margin-top: 8px !important;
    /*margin-right: 3px!important;*/
}

#facebox_old .footer-efootprint .close div {
    background: url(/Content/images/modal/cancel_button_icon.png) no-repeat;
    background-position: 10px 10px;
    position: absolute;
    cursor: pointer;
    width: 54px;
    height: 55px;
    top: 0;
    right: 0;
    background-color: #eaeaea;
    z-index: 100;
}

#facebox_old .tl, #facebox_old .tr, #facebox_old .bl, #facebox_old .br {
    height: 10px;
    width: 10px;
    overflow: hidden;
    padding: 0;
}

#facebox_old_overlay {
    position: fixed;
    top: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
}

.facebox_old_hide {
    z-index: -100;
}

.facebox_old_overlayBG {
    background-color: #000;
    z-index: 9998;
}

* html #facebox_old_overlay { /* ie6 hack */
    position: absolute;
    height: expression(document.body.scrollHeight &gt; document.body.offsetHeight ? document.body.scrollHeight : document.body.offsetHeight + 'px');
}

.i_inline {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

/* endregion */
.case_field_title {
    color: #A6A6A6;
    font-size: 11px;
}

.div_case_field {
    margin-top: 3px;
    font-size: 14px;
}

.div_case_field td {
    vertical-align: top;
}

/* region: admin-management-dashboard */

#admin-management-dashboard {
    padding-top: 20px;
}

#admin-management-dashboard table {
    padding-bottom: 20px;
    width: 450px;
}

#admin-management-dashboard table * {
    margin: 0px;
    padding: 0px;
}

#admin-management-dashboard table tr td {
    margin: 0px;
}

#admin-management-dashboard table tr .textBoxColumn {
    width: 50px;
}

#admin-management-dashboard table tr td input[type="text"] {
    margin: 2px;
    width: 40px;
}

#admin-management-dashboard table tr .tab {
    padding-left: 35px;
}

#admin-management-dashboard table .center-align {
    text-align: center;
}

/* endregion */

.loading-indicator {
    height: 80px;
    width: 80px;
    background: url('/ux-svg/ortho-loading.svg');
    background-repeat: no-repeat;
    background-position: center center;
}

.loading-indicator-overlay {
    background-color: #FFFFFF;
    opacity: 0.6;
    filter: alpha(opacity=60);
}

.loading-process-video-text {
    display: inline-block;
    margin-top: 40px;
    margin-right: 30px;
}

.loading-indicator-video {
    background: url(/images/ajaxloader48.gif);
    width: 48px;
    height: 48px;
    display: inline-block;
    position: absolute;
}

.loading-indicator-big-video {
    background: url(/images/ajaxloader90.gif);
    background-repeat: no-repeat;
    background-position: center;
    width: 90px;
    height: 90px;
    display: block;
    /* margin-top: 30px; */
    margin-bottom: 40px;
}

.loading-container-video {
    height: 300px;
    margin-top: 100px;
}

.loading-record-video {
    color: #A6A6A6;
    padding-top: 15px;
    width: 100%;
    height: auto;
    font: 16px Arial, Helvetica, sans-serif;
    text-align: center;
    display: block;
}

.modallink1000 {
    padding-left: 10px;
}

.txt_disabled {
    background-color: rgb(235, 235, 228);
    color: rgb(84, 84, 84);
}

.eFootprint {
    margin-right: 10px;
}

.eFootprintList {
    width: 100%;
    /*height: 150px;*/
    border: solid;
    border-color: black;
    border-width: 1px;
    margin-top: 10px;
}

.eFootprintList tr th {
    background-color: lightgrey;
}

.eFootprintList tr td {
    padding-left: 5px;
}

.addEfootPrint {
    float: right;
    margin-bottom: 10px;
}

.eFootprintList tr td .editLink {
    margin-left: 20px;
}

.member .pgy_level {
    margin-top: 11px;
    /*overflow: hidden;*/
    /*white-space: nowrap;*/
    font-size: 12px;
    color: #898989;
}

.t_inline {
    display: inline-block;
    *display: inline;
    zoom: 1;
}

#newQuestionDisplay {
    font-size: 14px;
    line-height: 18px;
    font-weight: normal;
}

#newQuestionDisplay a {
    font-size: 14px;
}

.selected_menu_link {
    background: #E2EDFF;
}

.page-pass-header {
    color: rgb(51, 51, 51) !important;
    font-size: 25px !important;
    font-weight: normal !important;

    margin-top: 0px !important;
    margin-bottom: 10px !important;
    padding-top: 10px;
}

/* Make element a flat button. Background and hover colors should be set separately. Initially used in CME */
.buttonLinkWrapper {
    display: table;
    line-height: normal;
    width: 100%;
    height: 48px;
    text-align: center;
}

a.buttonLink {
    display: table-cell;
    vertical-align: middle;
    font-weight: normal;
}

a.buttonLink:hover {
    text-decoration: none;
}

.dw-button__efootprint-logo {
    display: inline-block;
    zoom: 1;
    background-image: url(/Content/images/icons/icons_sprite.png);
    width: 17px;
    height: 17px;
    background-position: -483px -117px;
    vertical-align: middle;
    margin-top: -4px;
    margin-right: 3px;
}

.evidence-list-detailed-table td {
    padding-bottom: 4px !important;
}

#nbsQid {
    color: #888888;
}
</pre></body></html>