@charset "UTF-8";

/** GENERAL STYLES **/
*,
*:before,
*:after {
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    height: 100%;
}
body {
    font-family: Arial, "sans-serif";
    font-size: 16px;
    line-height: 1.4285;
    height: 100%;
}
a,
a:hover,
a:focus {
    text-decoration: none;
}
ul,
ol {
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.highlight-organism {
	font-style:italic;
}
.general-float-right {
    float: right;
}
.general-float-right:last-child {
    clear: both;
}

/** Fix the footer **/
.fix-footer-body {
    display: table;
    height: 100%;
    min-height: 100%;
    width: 100%;
}
.fix-footer {
    display: table-row;
    height: 1px;
}

/** ALERT **/
.alert-box-big, 
.alert-box-small {
	margin: 10px;
    border-radius: 3px;
    font-family: Arial, "sans-serif";
    font-size: 14px;
    color: #FFF;
}
.alert-box-big {
    padding: 30px;
    border: 2px solid #000;
}
.alert-box-small {
    padding: 10px;
    border: 1px solid #000;
}
.alert-box-big::first-line {
    font-family: Arial, Arial, "sans-serif";
    font-size: 22px;
	font-weight: bolder;
}
.alert-box-big .icon {
    float: left;
    margin: 0px 15px 0px 0px;
}
.alert-box-small .icon {
    float: left;
    margin: 0px 10px 0px 0px;
}
.alert-warning {
    border-color: #E38C13;
    background: #F0AB4A;
}
.alert-error {
    border-color: #b92c28;
    background: #d64f4b;
}
.alert-success {
    border-color: #3e8f3e;
    background: #50a950;
}
.alert-noresult {
    color: #000;
    border-color: #ccc;
    background: #eee;
}
.alert-announcement {
    border-color: #245580;
    background: #3178B3;
}

/** BUTTON **/
.button-big, 
.button-medium,  
.button-small {
    border-radius: 3px;
    font-family: Arial, "sans-serif";
    font-size: 12px;
    font-weight: 700;
    border: 1px solid #000;
    text-shadow: 1px 1px #000;
    color: #fff;
}
.button-big:hover, 
.button-medium:hover,  
.button-small:hover {
  cursor: pointer; 
}
.button-big {
    padding: 10px 30px;
    font-size: 16px;
    border: 2px solid #000;
    text-shadow: 2px 2px #000;
}
.button-medium {
    padding: 6px 20px;
}
.button-small {
    padding: 3px 10px;
    font-weight: 100;
}
.button-group {
    margin: 5px 5px 10px 5px;    
}
.button-group .button-big,
.button-group .button-medium,
.button-group .button-small {
    margin-right: -7px;
    border-radius: 0px;
}
.button-group .button-big:first-child,
.button-group .button-medium:first-child,
.button-group .button-small:first-child {
    border-radius: 3px 0px 0px 3px;
}
.button-group .button-big:last-child,
.button-group .button-medium:last-child,
.button-group .button-small:last-child {
    border-radius: 0px 3px 3px 0px;
}
.button-blue,
.button-blue-active {
    border-color: #245580;
    background: #3178b3;
}
.button-white,
.button-white-active {
    color: #333;
    border-color: #ccc;
    background: #eee;
	text-shadow: none;
}
.button-orange,
.button-orange-active {
    border-color: #e38d13;
    background: #f0ab4a;
}
.button-red,
.button-red-active {
    border-color: #b92c28;
    background: #d64f4b;
}
.button-green,
.button-green-active {
    border-color: #3e8f3e;
    background: #50a950;
}
.button-blue:hover {
    background: #245580;
}
.button-white:hover {
    background: #ccc;
}
.button-orange:hover {
    background: #e38d13;
}
.button-red:hover {
    background: #b92c28;
}
.button-green:hover {
    background: #3e8f3e;
}
.status-box {
    width: auto;
    display: inline-block;
    margin-bottom: 10px;
}
.status-box .icon{
    position: relative;
    top: 2px; 
}
.attached-button-box {
    width: auto;
    margin: 0px 5%;
    height: 24px;
    background: #f9f9f9;
    border: 2px solid #e6e6e6;
    padding-top: 3px;
    border-top: 0px;
    border-radius: 0px 0px 5px 5px;
    font-family: Arial, "sans-serif";
    font-size: 12px;
    color: #8a8a8a;
    text-align: center;
}

/** TABS **/
.tabs {
    padding: 0px;
    margin: 0px 0px 0px 7px;
    display: table;
}
.tabs-vertical{
    margin: 10px 0px 10px 0px;
    width: 100%;
}
.tabs li,
.tabs-vertical li {
    background: #f9f9f9;
    border: 2px solid #e6e6e6;
    font-family: Tahoma, Geneva, "sans-serif";
    font-size: 12px;
    color: #666;
}
.tabs li {
    display: inline-block;
    padding: 6px 20px;
    height: 33px;
    float: left;
    margin-right: -2px;
    border-radius: 5px 5px 0px 0px;
}
.tabs-vertical li{
    width: 100%;
    display: block;
    padding: 9px 20px;
    height: 38px;
    border-radius: 5px 0px 0px 5px;
    margin-bottom: -2px;
}
.tabs li.active, 
.tabs-vertical li.active {
    color: #f97b17;
    background: #fff;
    font-weight: 700;
}
.tabs li.active {
    border-bottom: 0px;
    border-radius: 5px 5px 0px 0px;
} 
.tabs-vertical li.active{
    border-right: 2px solid #fff;
    border-radius: 5px 0px 0px 5px;
}
.tabs-vertical li:last-child.active {
    border-bottom: 2px solid #e6e6e6;
}
.tabs li:hover,
.tabs-vertical li:hover {
    cursor: pointer;
    color: #f97b17;
}
.tab-content {
    display: none;
    margin: -2px 0px 10px 0px;
    border: 2px solid #e6e6e6;
    padding: 10px;
}
.tab-content-vertical .tab-content{
    margin: 0px 10px 10px -12px;
    padding: 10px 10px 0px 10px;
}
.tab-content-active {
    display: block;  
}
.tab-content p{
    font-family: Arial, "sans-serif";
    font-size: 12px;
    color: #666; 
    margin: 0 0 0 0;
}

/** FORM **/
fieldset {
    padding-top: 15px;
    border: 0px;
}
legend {
    display: none;
}
.content-subdivision {
    border-bottom: 1px solid #dedede;
    text-align: center;
    display: block;
    margin: -15px 20px 0px 20px;
}
.content-subdivision span {
    background: #fff;
    padding: 0 15px;
    text-transform: capitalize;
    font-size: 14px;
    color: #686868;
    font-weight: 700;
    position: relative;
    top: 10px;
}
.form-group:before,
.form-horizontal .form-group:after {
    display: table;
    content: ' ';
    clear: both;
}
.form-group {
    margin-bottom: 3px;
}
label {
    margin-top: 4px;
    font-size: 12px;
    font-family: Arial, "sans-serif";
    color: #444;
    text-align: right;
}
.form-input {
    width: 90%;
    min-height: 25px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 3px;     
    padding: 0px 6px;
    font-size: 12px;
}
.input-required {
    position: absolute;
}
.input-required:before {
    position: absolute;
    content: '';
    top: -0px;
    left: -21px;
    border-bottom: 21px solid transparent;
    border-right: 21px solid #a5a5a5;
}
.input-required a {
    position: absolute;
    top: -3px;
    left: -11px;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 18px;
    color: #fff;
	font-weight: bolder;
}
.input-required span {
    position: absolute;
    top: -1px;
    left: -11px;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 18px;
    color: #fff;
	font-weight: bolder;
}
.form-error {
    border-color: #8c0000;
    border-left: 5px solid #8c0000;
}
.form-error + .input-required:before {
    border-right: 21px solid #8c0000;
}
.form-search-index{
    background: #f7f7f7;
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 5px;
    border: 1px solid #e6e6e6;
    border-radius: 3px;
}
.form-search-index label {
    text-align: left;
    font-size: 16px;
    font-weight: 700;
}
.form-search-index label b {
    color: #f87a17;
}
.form-search-index input,
.form-search-index select {
    width: 100%;
    height: 30px;
}
.form-search-index li{
    font-size: 12px;
    color: #666;
    display: inline;
    margin-left: 5px;
    cursor: pointer;
}
.form-search-index li:hover{
    text-decoration: underline;
    color: #f87a17;
}
.form-search-index li:first-child{
    font-weight: 700;
    margin-left: 0px;
    cursor: default;
}
.form-search-index li:first-child:hover{
    text-decoration: none;
}

/** LOADER **/
.loader-circular{
    width: 50px;
    height: 50px;
    margin: 0 auto;  
}
.loader-blue {
    background: url(../images/loader-blue.svg) no-repeat;
}

/** PAGINATION **/
.pagination-free-navigation,
.pagination {
    color: #686868;
    font-family: Tahoma, Geneva, "sans-serif";
    font-size: 12px;
}
.pagination-free-navigation li b{
    color: #f87917;
}
.pagination-free-navigation input[type='number'] {
    width: 50px;
    height: 22px;
    border: 1px solid #ddd;
    border-radius: 3px;
    margin-left: 3px;
}
.pagination{
    margin: 13px 0px;
    text-align: right;
}
.pagination li{
    display: inline-block;
}
.pagination li:hover{
    background: #e6e6e6;
}
.pagination li a{
	display: block;
	padding: 5px 10px;
    color: #696969;
	border-radius: 3px;
}
.pagination li a:hover{
    color: #262626;
}

.pagination .active{
    background: #454545;
    border: 1px solid #262626;
    font-weight: 700;
}
.pagination .active:hover {
    background: #454545;
    color: #FFF;
}
.pagination .active a:hover, 
.pagination .active a{
    color: #FFF;
}

/** TABLE **/
.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 10px;
    font-family: Arial, Helvetica, "sans-serif";
}
.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}
.table > thead > tr > th {
    padding: 15px 8px 8px 8px;
    border-top: 3px solid #e6e6e6;
    border-bottom: 2px solid #e6e6e6;
    font-size: 14px;
    color: #666;
    text-align: left;
}
.table > tbody > tr > td{
    border-top: 1px solid #e6e6e6;
    font-size: 12px;
    color: #686868;
	padding: 0px 8px;
}
.table > tbody > tr:last-child {
    border-bottom: 1px solid #e6e6e6;    
}
table > tbody > tr > td > a{
	display: block;
    color: #f97b17; 
	padding: 8px 0px;
}
@media (max-width: 1199px) {
    table > tbody > tr > td > a{
		padding: 16px 0px;
	}
}
tr > .display-inline > a {
	display: inline-block;
}
table td[class*='sir-col-'],
table th[class*='sir-col-'] {
    position: static;
    display: table-cell;
    float: none;
} 
.table > tbody > tr:hover > td {
    background-color: #f5f5f5;
}
.table-button {
    padding: 0px 3px;
    background: inherit;
    border: 2px solid #DDDDDD;
    border-radius: 5px;
    margin-left: 5px;
    font-family: Arial, "sans-serif";
    font-size: 11px;
    color: #666; 
}
.table-button-green {
    border:2px solid #3E8F3E;
}
.table-button-red {
    border:2px solid #B92C28;
}

/** BREAD-CUMBS **/
.bread-crumbs {
    display: block;
    padding: 10px 5px;
    overflow: hidden;
    list-style: none;
    border-bottom: 1px solid #E6E6E6;
    margin: 0px 0px 10px 0px;
}
.bread-crumbs > * {
    font-family: Tahoma, Geneva, "sans-serif";
    margin: 0;
    float: left;
    font-size: 11px;
    line-height: 11px;
    text-transform: uppercase;
    color: #F87A17;
}
.bread-crumbs li a:hover {
    text-decoration: underline;
}
.bread-crumbs li a {
    color: #F87A17;
}
.bread-crumbs li:last-child a{
    cursor: default;
    color: #464637;
    font-weight: 700;
}
.bread-crumbs li:last-child a:hover{
    text-decoration: none;
}
.bread-crumbs > li:before {
    font-size: 16px;
    color: #464637;
    margin: 0 10px;
    position: relative;
    top: 0px;
}
.raquo-separator > li:before {
    content: '\00BB';
}
.bread-crumbs > *:first-child:before {
    content: ' ';
    margin: 0;
}

/** LIST **/
ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    font-family: Arial, "sans-serif";
    font-size: 12px;
    color: #676767;
    counter-reset: item;
}
li{
    margin-left:0px;
    display: block;
}
.list-ellipsis{
    overflow: hidden; 
    text-overflow: ellipsis;
}
.list-arrow li:before{
    font-size: 14px;
    content: '\00BB\ ';
    color: #F77817;
}
.list-inline li{
    display: inline-block;
    margin-right: 20px;
}
.list-number ol{
    list-style: decimal;
}
.list-number li:before { 
    content: counters(item, '.') '. '; 
    counter-increment: item;
}
li a{
    color: #F87917;
}
ul li a:hover,
ol li a:hover{
    color: #F87917; 
}
.list-separator li{
    border-bottom: 1px solid #D1D1C5;
    margin: 3px 0px;
}
.list-separator ol li{
    border: 0px;
}
.list-info{
    margin-bottom: 10px;
    margin-top: 10px;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 12px;
    color: #686868;
}
.list-info li{
    line-height: 1.42857143;
    display: inline-block;
}
.list-info li:nth-child(odd){
    font-weight: 700;
    text-align: right;
    width: 30%;
}
.list-info li:nth-child(even){
    color: #8A8A8A;
    width: 60%;
}
@media (max-width: 749px) {
    .list-info li:nth-child(even){
		width: 55%;
	}
}
.list-info li a{
    color: #F87A17;
}
.reference li:nth-child(odd) {
    width: 20%;
}
.reference li:nth-child(even) {
    width: 79%;
}
.info-description > li:nth-child(odd) {
    width: 40%;
}
.info-description > li:nth-child(even) {
    width: 55%;
}
.list-example li {
	margin: 0px 0px 0px 5px;
	color: #F87A17;
}
.list-example li:first-child {
	font-weight: 700;
	color: #333;
}
@media (max-width: 450px) {
    .list-example li {
		margin: 0px 5px 0px 15px;
		display:block;
	}
	.list-example li:first-child {
		margin: 0px 5px 0px 5px;
	}
	
}

/** HEADER **/
header h2,
header h3 {
    font-family: "Arial Narrow", Arial, Helvetica, "sans-serif";
    font-size: 13px;
    color: #A5A5A5;
    padding: 11px;
    display: inline-block;
    margin: 0px;
    font-weight: 100;
}
header h3{
    float: right;
    border-left: 1px solid #E6E6E6;
    padding: 11px 11px 11px 20px;
}
header h3 a {
    color: #F87A17;
    font-weight: 700;
}
header .header-background{
    width: 100%;
    height: auto;
    background: #FBFBFB;
    border-top: 1px solid #E6E6E6;
}
header figure {
    margin: 0px 0px; 
}
header img{
    margin: 32px 40px;   
}
@media (max-width: 497px) {
    header img{
        width: 90%;
        height: 90%;
        margin: 5%;    
    }
}

nav {
    width: 100%;
    height: 100%;
    background: #FFF;
    border-top: 1px solid #E6E6E6;
    border-bottom: 1px solid #E6E6E6;
    font-family: Arial, Helvetica, "sans-serif";
    text-transform: uppercase;
    color: #A8A8A8;
    font-weight: 700;
}
nav li{
    display: block;
    text-align: center;
    border-bottom: 1px solid #E6E6E6; 
}
nav li a{
    display: block;
    padding: 15px 0;
    color: #676767;
    font-size: 12px;
}
nav li:last-child{
    border-bottom: 0px;  
}
nav ul {
    font-size: 0; 
}

@media (min-width: 750px) {
    nav li{
        width: 14.17%;
        display: inline-block;
        text-align: center;
        border-left: 1px solid #E6E6E6; 
        border-bottom: 0px; 
    }
    nav li:last-child{
        border-right: 1px solid #E6E6E6;
    }
    nav li a{
        display: block;
        padding: 16px 0;
        font-size: 12px;
    }
    nav{
        box-shadow: 0px 2px 4px #A5A5A5; 
    }
}

nav li:hover{
    background: #F7F7F7; 
    background: -webkit-linear-gradient(#FFF, #F7F7F7);
    background: -o-linear-gradient(#FFF, #F7F7F7);
    background: -moz-linear-gradient(#FFF, #F7F7F7);
    background: linear-gradient(#FFF, #F7F7F7);
}
.admin-side-bar nav li{
    width: 100%;
    display: inline-block;
    border-left: 1px solid #E6E6E6;
    border-bottom: 0px;  
}

header nav .only-visible-xs {
	display:none;
}
@media (max-width: 749px) {
	header nav .only-visible-xs {
		background:#FFF;
		display:block;
		color: #f87a17;
		font-weight: 700;
		font-size:14px;
		text-transform: uppercase;
		padding: 20px 15px 15px 15px;
		border-left: 10px solid #E6E6E6;
		border-right: 10px solid #E6E6E6;
		text-align: center;
	}
	header nav .only-visible-xs:hover {
		color: #f87a17;
		border-left: 10px solid #CCC; 
		border-right: 10px solid #CCC; 
		-webkit-animation-name: header-menu-border-xs; /* Safari 4.0 - 8.0 */
		-webkit-animation-duration: 0.7s; /* Safari 4.0 - 8.0 */
		animation-name: header-menu-border-xs;
		animation-duration: 0.7s;
		cursor: pointer;
	}
	/* Safari 4.0 - 8.0 */
	@-webkit-keyframes header-menu-border-xs {
		0%   {border-left: 10px solid #E6E6E6;}
		100% {border-left: 10px solid #CCC;}
		0%   {border-right: 10px solid #E6E6E6;}
		100% {border-right: 10px solid #CCC;}
	}
	/* Standard syntax */
	@keyframes header-menu-border-xs {
		0%   {border-left: 10px solid #E6E6E6;}
		100% {border-left: 10px solid #CCC;}
		0%   {border-right: 10px solid #E6E6E6;}
		100% {border-right: 10px solid #CCC;}
	}
	header nav li {
		display: block;
		text-align: center;
	}
	header nav ul {
		margin-left: 0px;
		
	}
	header nav .hiddenMenu {
		display: none;
	}
	header nav .activeMenu {
		display: block;
	}
}


/* FOOTER */
footer {
	margin-top:10px;
	border-top: 1px solid #E6E6E6;
}
footer h2,
footer h3 {
    font-family: "Arial Narrow", Arial, Helvetica, "sans-serif";
    font-size: 13px;
    color: #A5A5A5;
    padding: 11px;
    display: inline-block;
    margin: 0px;
    font-weight: 100;
}
footer h3{
    float: right;
    border-left: 1px solid #E6E6E6;
    padding: 11px 11px 11px 20px;
}
footer h3 a {
    color: #F87A17;
    font-weight: 700;
}
footer .cookie-policy .alert-box-small {
	margin:0px;
	opacity: 0.65;
}
footer .cookie-policy .alert-box-small:hover {
	opacity: 1;
}
footer .cookie-policy .alert-box-small a:link {
	color: #FFF;
	font-weight: 700;
}


/* CONTENT */
.background-image-circle{
    width: 135px;
    height: 135px;
    border-radius: 100%;
    border: 1px solid #A5A5A5;
    background: #E6E6E6; 
    box-shadow: 1px 1px 4px #A8A8A8;
    margin: 40px auto;
}
.background-image-circle img{
    width: 114px;
    height: 114px;
    border-radius: 100%;
    margin: 10px;
}
.background-image-circle-big{
    width: 195px;
    height: 195px;
    border-radius: 100%;
    border: 1px solid #A5A5A5;
    background: #E6E6E6; 
    box-shadow: 1px 1px 4px #A8A8A8;
    margin: 10px auto;
}
.background-image-circle-big img{
    width: 174px;
    height: 174px;
    border-radius: 100%;
    margin: 10px;
} 
.home-content a,
.home-content p,
.home-content {
    color: #444;
    text-align: center;
}
.home-content a{
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 24px;
	font-weight: bolder;
}
.home-content a:hover{
    color: #F97B17;
}
.vertical-separator{
    border-bottom: 1px solid #E6E6E6;
}
section h1, 
section h2{
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 1.25em;
    color: #444;
    font-weight: 700;
    margin: 0px 10px 10px 10px;
	white-space: nowrap;
}
@media (max-width: 949px) {
	section h2{
		white-space: normal;
	}
}
section h1 .icon, 
section h2 .icon {
    margin: -2px 10px -10px 0px;
    float: left;
}
section h2 small {
    font-size: 12px;
    color: #BDBDBD; 
    font-weight: 100;
    position: relative;
    left: 10px;
    float: left;
}
section p{
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 12px;
    color: #666;
    margin: 10px 10px 10px 10px;
    text-align: justify; 
}
section p a{
    color: #F87A17; 
}
section .index-list{
    margin: 0px 15px 
}
section .index-list a{
    color: #F87A17; 
}

section .text-no-display {
	display: none;
}

section p #displayButton {
	cursor: pointer;
}

aside{
    width: 95%;
    background: #FFF;
    border: 5px solid #E6E6E6;
    margin: 5px 5px 15px 5px;
    border-radius: 5px;
    box-shadow: 2px 2px 2px #BEBEBE;
}
aside h2{
    font-family: Arial, Gadget, "sans-serif";
    font-size: 16px;
    color: #444;
    margin: 15px 0px 0px 0px;
    padding: 0px 10px 10px 10px;
    border-bottom: 1px solid #E6E6E6;
	font-weight: bolder;
}
aside ul{
    margin-bottom: 5px;  
}
.information-links ul {
    padding: 10px 10px 10px 15px;
    border-bottom: 1px solid #E6E6E6;
}
aside ul li{
    display: block;
    border-bottom: 1px solid #E6E6E6;
}
.information-links li {
    border-bottom: 0px; 
    padding: 0px;
    height: auto;
}
aside ul li:hover{
    background: #FBFBFB;
}
aside ul li a{
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 12px;
    color: #676767;  
	display: block;
    padding: 14px 10px 10px 20px;
}
aside ul li a:hover{
    color: #00A5E6;  
}
@media (min-width: 750px) {
    aside .active:before{
        position: relative;
        top: 20px;
        left: 0px;
        float: right;
        content: '';
        border-bottom: 8px solid #E6E6E6;
        border-left: 8px solid transparent;
        border-right: 8px solid #E6E6E6;
        border-top: 8px solid transparent;
        box-shadow: 2px 2px 2px #BEBEBE;
        -webkit-transform: translateY(-50%) translateX(50%) rotate(-45deg);
        -ms-transform: translateY(-50%) translateX(50%) rotate(-45deg);
        transform: translateY(-50%) translateX(50%) rotate(-45deg);
    }
    aside .active:after{
        position: relative;
        top: -28px;
        left: 7px;
        float: right;
        content: '';
        border-bottom: 7px solid transparent;
        border-left: 7px solid #0082DA;
        border-top: 7px solid transparent;   
    }
}
aside .active:hover, 
aside .active{
    background: #0082DA;
}
aside .active a:hover, 
aside .active a{
    color: #FFF;
}
aside input{
    margin: 0px 5px 5px 5px;
}
.results-filter li{
    display: block;
    padding: 12px 10px 8px 10px;
    height: auto;
    border-bottom: 1px solid #E6E6E6;
}
.results-filter li select{
    display: block;
    margin: 5px 10px 5px 0px;
    width: 100%;
}
article ul{
    margin: 0px 20px;        
}
article figure{
    padding: 0px;
    margin: 0px;
    width: 100%;
    display: block;
    text-align: center;
}
article img{
    padding: 5px;
    max-width:100%;
    background: #F9F9F9;
    border: 4px solid #E6E6E6;   
}
article figcaption{
    display: block;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 11px;
    color: #444;     
}
article .small-header{
    font-size:12px;
    font-weight: 100;   
}
.title-info-right{
    float: right;
    margin: -30px 10px 10px 0;
    font-family: "Arial Narrow", Arial, Helvetica, "sans-serif";
    font-size: 13px;
    color: #A5A5A5;
}
.title-info-right b{
    color: #F87917;  
}
section .required-info-explain{
    display: block;
    margin: -5px 0 -5px 10px;
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 12px;
    color: #A5A5A5;
}
section .required-info-explain b{
    font-size: 16px;
    color: #FF0000;
}
section .list-faq{
    margin-left: 20px;   
}
.sequenceBox{
    margin: 15px 20px;
    padding: 15px 20px;
    background: #FFF;
    border: 3px solid #E6E6E6; 
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 0.8em;
    color: #8A8A8A;
}
@media (min-width: 750px) {
	.sequenceBox{
		font-size: 1em;
	}
}
.sequenceBox span{
    font-size: 20px;
    color: #F97B17;
    margin: 0 10px 0 0
}
.sequenceBox span:last-child{
    margin:  0 0 0 10px;
}
.sequenceBox a{
    font-size: 20px;
    color: #F97B17;
    margin: 0 10px 0 10px;
}
@media (max-width: 450px) {
	.sequenceBox a{
		font-size: 1.25em;
	}
}
.information-separator {
    height: 1px;
    background: #E6E6E6; 
    margin: 0 10px 10px 10px;
    clear: both;
}
.citation-information {
    font-family: Arial, Helvetica, "sans-serif";
    font-size: 11px;
    color: #8A8A8A;
    margin: 10px 0 0 0;
    display: block;
    text-align: right; 
}
.button-medium + .information-separator{
    margin: 10px; 
}
#error {
    margin-top: 10px; 
}
#error h1{
    font-size: 36px;
    color: #B92C28;
    font-family: Arial, Helvetica, "sans-serif";
	font-weight: bolder;
}
#error h2{
    font-size: 16px;
    color: #666;
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: 100;
}
#error h2 span{
    color: #B92C28;
    font-weight: 700;
}

section h3 {
	font-size: 16px;
    color: #8A8A8A;
    font-family: Arial, Helvetica, "sans-serif";
    font-weight: 700;
    margin: 10px 16px 10px 16px;
}
section .list-arrow {
    margin: 0px 15px 0px 25px;  
}
section .list-arrow li a{
    font-size: 12px;
    color: #A5A5A5;
}
section .list-item-right{
    text-align: right;
}
section .list-item-right a{
    color: #F77817;
    font-weight: 700;        
}


/* TAG CLOUD */
.tag-cloud {
    width: 100%;
    text-align:center;
    max-height: 300px;
    overflow-y: scroll;
}
@media (min-width: 950px) {
    .tag-cloud {
        padding: 0 15%;
    }
}
.tag-cloud li {
    display: inline-block;
    padding:0px 2px;
}
.tag-cloud li a{
    font-family: Arial;
    color:inherit;
}
.tag-cloud li a:hover{
    text-decoration: underline;
}
.tag-cloud li a:link, .tag-cloud li a:visited{
    color:inherit;
}
.tag-cloud-label {
    text-align:center;
    
}
.tag-cloud-label li {
    display: inline-block;
    width:30px;
    height: 30px;
    border:2px solid #E6E6E6;
    border-right:0px;
    padding:5px 0px;
    margin-right:-3px;
}
.tag-cloud-label li span {
    color:#FFF;
    width:100%;
    float:left;
}
.tag-cloud-label li:last-child{
    border:2px solid #E6E6E6;
}


/* NEW TAB SYSTEM */
#new-tab-system ul {
    position: relative;
    z-index: 9999;
}
#new-tab-system .tab-item li {
    background: #F9F9F9;
    display: inline-block;
    padding: 10px 50px;
    border:2px solid #E6E6E6;
    font-family: Arial;
    font-size: 14px;
    font-weight: 700;
    margin: 2px 0px 0px -5px;
    border-radius: 5px 5px 0px 0px;
    z-index: 999;
}
#new-tab-system .tab-item .active-tab {
    background: #FDFDFD;
    border-bottom: 2px solid #FDFDFD;
    color: #F87917;
}
#new-tab-system .tab-item li:hover {
    cursor: pointer;
}
#new-tab-system .new-tab-background {
    background: #FDFDFD;
    border: 2px solid #E6E6E6;
    margin: -12px 0px 0px 0px;
    border-radius: 0px 5px 5px 5px;
    display: none;
}
#new-tab-system .search-bar {
    padding:5px 0px 2px 0px;
}
#new-tab-system .table-active {
    color: #F87917;
    font-weight: 700;
}
#new-tab-system .new-tab-content-active {
    display: block;
}


#new-tab-system-two ul {
    position: relative;
    z-index: 9999;
}
#new-tab-system-two .tab-item li {
    background: #F9F9F9;
    display: inline-block;
    padding: 10px 50px;
    border:2px solid #E6E6E6;
    font-family: Arial;
    font-size: 14px;
    font-weight: 700;
    margin: 2px 0px 0px -5px;
    border-radius: 5px 5px 0px 0px;
    z-index: 999;
}
#new-tab-system-two .tab-item li:hover {
    cursor: pointer;
}
#new-tab-system-two .tab-item .active-tab {
    background: #FDFDFD;
    border-bottom: 2px solid #FDFDFD;
    color: #F87917;
}
#new-tab-system-two .new-tab-background {
    background: #FDFDFD;
    border: 2px solid #E6E6E6;
    margin: -12px 0px 10px 0px;
    border-radius: 0px 5px 5px 5px;
    display: none;
}
#new-tab-system-two .search-bar {
    padding:5px 0px 2px 0px;
}
#new-tab-system-two .new-tab-content-active {
    display: table-row-group;
}
#new-tab-system-two tr:hover td{
    color: #F8862E;
}
#new-tab-system-two table td:nth-child(2),
#new-tab-system-two table th:nth-child(2) {
    text-align: right;
}
#new-tab-system-two table td:hover,
#new-tab-system-two table th:hover {
    cursor: pointer;
}
#new-tab-system-two .table-active {
    color: #F87917;
    font-weight: 700;
}
#new-tab-system-two .pagination li:hover {
    cursor:pointer;
}
#new-tab-system-two .pagination .active {
    color:#FFF;
}


.svgGeneOntologyChart text {
	fill: white;
  	font: 10px sans-serif;
  	text-anchor: end;
}

g.tick text,
g.tick > text {
    fill:#000;
    text-anchor: middle;
}
				
#graphsGeneOntology {
    max-height: 200px;
    overflow-y: scroll;
	overflow-x: hidden;
	margin-bottom: 5px;
}
				
.tooltip {
	font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
	position: absolute;
	width: auto;
	height: auto;
	background: none repeat scroll 0 0 white;
	border: 0 none;
	box-shadow: -3px 3px 15px #888888;
	color: black;
	font: 12px sans-serif;
	padding: 5px;
}
.tooltipExpression {
	font-weight: 700;
	color: #666;
}
.tooltipExpression:first-line {
	font-size:14px;
	font-weight: 700;
	color: #000;
}
.tooltipExpression span {
	float: right;
	padding: 0px 0px 0px 10px;
	font-weight: 100;
}

#geneOntologyData {
	display:none;
}
				
.geneOntologyLegend {
	font-size: 10px;
}
@media (min-width: 751px) {
	.geneOntologyLegend {
		font-size: 14px;
	}
}

#expressionBox {
	padding:10px;
}

#expressionBox .horizontalAxis {
	font-size: 14px;
	font-weight: 700;
}

#expressionBox .NotFound {
	border:10px solid #000;
}

.expressionBoxLegend {
	font-size: 10px;
}
@media (min-width: 751px) {
	.expressionBoxLegend {
		font-size: 14px;
	}
}




