/* Color Palette
----------------------------------------------------------------------------------------------------------------------
Greys (lighter to darker)
    #eee    : Unselected tabs
    #d5d5d5 : Background
    #555    : h3
    #222    : Body Text

Reds
    #F7CBCA    : Light Red (Message bar errors)
    #900    : Bright Red (h1, a)
    #700    : Darker Red (a:visited)
*/
@media screen {
    
body {
    background-color: #e6e6e6;
    color: #444;
    font:87.5%/1.42857143em "Lucida Grande", Verdana, sans-serif; 
    margin:0;
    padding: 0 0 40px;
    background-image: -webkit-gradient(
        linear, 
        0% 0%, 
        0% 100%, 
        color-stop(0, rgba(0, 0, 0, .1)), 
        color-stop(0.15, rgba(0, 0, 0, .1)), 
        color-stop(0.1501, rgba(0, 0, 0, 0)), 
        color-stop(1, rgba(0, 0, 0, 0))
    );
    
    background-image: -webkit-linear-gradient(
        top, 
        rgba(0, 0, 0, .1),
        rgba(0, 0, 0, .1) 200px,
        rgba(0, 0, 0, 0) 201px,
        rgba(0, 0, 0, 0)
    );
    
    background-image: -moz-linear-gradient(
        top, 
        rgba(0, 0, 0, .1),
        rgba(0, 0, 0, .1) 200px,
        rgba(0, 0, 0, 0) 201px,
        rgba(0, 0, 0, 0)
    );
    background-image: -o-linear-gradient(
        top, 
        rgba(0, 0, 0, .1),
        rgba(0, 0, 0, .1) 200px,
        rgba(0, 0, 0, 0) 201px,
        rgba(0, 0, 0, 0)
    );
    
    background-image: -ms-linear-gradient(
        top, 
        rgba(0, 0, 0, .1),
        rgba(0, 0, 0, .1) 200px,
        rgba(0, 0, 0, 0) 201px,
        rgba(0, 0, 0, 0)
    );
    
    background-image: linear-gradient(
        top, 
        rgba(0, 0, 0, .1),
        rgba(0, 0, 0, .1) 200px,
        rgba(0, 0, 0, 0) 201px,
        rgba(0, 0, 0, 0)
    );
}

body {
    max-width:1060px;
    margin:auto;
}

body.library {
    max-width:1920px;
    margin:0;
}

h1 {
    line-height: 1.5em;
}

h2 {
    color: #666;
}

a:link {color: #38c;}
a:visited {color: #38c;}
a:hover {color: #369;}
a:active {color: #333;}

a img {border:none;}

ul.plain-list {list-style:none;}

/* Navigation defaults */
nav ul {
    list-style:none;
    padding:0;
    margin:0;
}
nav li {
    display:inline-block;
}

nav a {
    text-decoration:none;
}

/* Table defaults */
table {
    border-collapse: collapse;
    border-spacing: 0;
    width:100%;
}
th,
td {
    vertical-align:top;
    text-align:left;
    padding: 4px;
}

th {
    text-transform: capitalize;
    border-bottom: 1px dotted #ccc;
    
}

thead th {
    border-bottom: 2px solid #ccc;
}

td {
    border-bottom: 1px dotted #ccc;
}

td * {
    margin:0 0 1em;
}
tr:nth-child(2n) {
    background-color: rgba(0,0,0,0.05);
}

/* Definition list defaults */
dt {
    font-weight:bold;
}

dd {
    margin-bottom:1em;
    margin-left:0;
}

/* -- Forms -- */
form {
    margin-bottom: 1.6em;
}

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

legend {
    margin:0;
    padding:0 0 1em;
    text-indent:0;
    font-weight:bold;
}

form ol,
form ul {
    list-style:none;
    margin-left:0;
    padding-left:0;
}

form li {
    margin-bottom:1em;
}

label,
input,
select {
    display:block;
}
input[type=text],
input[type=password] {
    display:block;
    padding: 4px;
    border-radius: 4px;
    border:1px solid rgba(0,0,0,0.2);
}

label input[type=checkbox],
label input[type=radio] {
    float:left;
    margin-left:0;
}

form .hint,
#slugpreview,
p.hint {
    font-size: 0.785714286em;
    color: rgba(0,0,0,0.6);
    margin:0;
    display:inline;
}

.zform ul.errors {
    color: rgb(255,0,0);
}

form textarea {
    display:block;
}

form fieldset#fieldset-grouptype {
    border-bottom: 2px solid rgba(0,0,0,0.2);
}

/**
 * Added because of iframe showing up on registration form, supposedly
 * because of the ReCaptcha field.
 */
iframe[src="about:blank"]{
    display:none;
}

meter {
    width:100%;
}

/* -- Notifications -- */
.messages { 
    font-weight:bold; padding:18px 18px 3px 18px; text-align:center; margin:9px 0px;
}

.messages ul{
    list-style:none;
}

#confirm {background:#CBF7CA;}
#notice {background:#F7F7CA;}/*old yellow*/
#notice {background:#F0F079;}
#error {background:#F7CBCA;}

.confirm {background:#CBF7CA;}
.notice {background:#F0F079;}
.error {background:#F7CBCA;}

ul#js-message-list {
    list-style:none;
}

li.jsNotificationMessage-confirm {
    background-color:#CBF7CA;
}
li.jsNotificationMessage-notice {
    background-color:#F7F7CA;
}
li.jsNotificationMessage-error {
    background-color:#F7CBCA;
}

/* -- Miscellaneous Classes -- */
.container:after,
form:after,
.action-links:after,
.nugget-user:after,
.plugin_translation:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}

.center {
    width: 85%;
    margin-left:auto;
    margin-right:auto;
    max-width: 1200px;
}

.library .center {
    max-width: none !important;
}

.clickable {
    cursor:pointer;
}

.deck {
    font-style:normal;
    font-weight:bold;
    font-size: 0.857142857em;
    color: #999;
}

.paginationControl {
    font-size: 0.857142857em;
}

.sticky-note ul {
    list-style:none;
    margin-left:0;
    padding-left:0;
}

.sticky-note li {
    margin-bottom:1em;
}

a#screencast-link {
    display:block;
}
#screencast-link img {
    max-width:100%;
}

input[type=submit],
input[type=button],
button,
a.button,
input.button {
    border-width: 1px;
    border-style:solid;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-image: -webkit-gradient(
        linear, 
        0% 0%, 
        0% 100%, 
        color-stop(0, rgba(255, 255, 255, .05)), 
        color-stop(0.5, rgba(255, 255, 255, .25)), 
        color-stop(0.5001, rgba(255, 255, 255, 0)), 
        color-stop(1, rgba(255, 255, 255, 0))
    );
    
    background-image: -webkit-linear-gradient(
        top, 
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 50.01%,
        rgba(255,255,255,0)
    );
    
    background-image: -moz-linear-gradient(
        top,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 50.01%,
        rgba(255,255,255,0)
    );
    background-image: -o-linear-gradient(
        top,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 50.01%,
        rgba(255,255,255,0)
    );
    
    background-image: -ms-linear-gradient(
        top,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 50.01%,
        rgba(255,255,255,0)
    );
    
    background-image: linear-gradient(
        top,
        rgba(255,255,255,0.05),
        rgba(255,255,255,0.25) 50%,
        rgba(255,255,255,0) 50.01%,
        rgba(255,255,255,0)
    );
    
    text-shadow:-1px -1px 1px rgba(0,0,0,0.2);
    text-align:center;
    color: #fff;
    font-weight:bold;
    background-color: #800;
    border-color: #800;
    border-radius: 4px;
    padding:4px 8px;
    text-decoration:none;
    white-space: nowrap;
}

a.button:link,
a.button:visited {
    color:#fff;
}

input[type=submit]:hover,
button:hover,
a.button:hover,
input.button:hover {
    background-color: #900;
    border-color: #900;
    color: #fff;
    cursor:pointer;
}

input[type=submit]:active,
button:active,
a.button:active,
input.button:active {
    background-color: #a00;
    border-color: #a00;
    color: #fff;
}

.button img {
    vertical-align:middle;
}

.action-links {
    margin-bottom:1.42857143em;
}
.action-links a {
    text-decoration:none;
    border-bottom: 1px dotted #aaa;
    padding-bottom: 3px;
}
.action-links li:not(:last-child):after {
    content: " · ";
    color: rgba(0,0,0,0.5);
    padding: 0 0.2em;
}

.action-links li.selected a {
    border-bottom: 2px solid #555;
    color: #555;
}

.feedlink {
    display:block;
    border:1px dotted #ccc;
    padding: 4px 0;
}

/* Nuggets!!!!!! */

.nugget-full {
    margin-bottom: 1.42857143em;
}

.nugget-full img {
    float:left;
}
.nugget-full .nugget-name {
    font-size:1.42857143em;
    font-weight:bold;
    margin-bottom:0.5em;
}

.nugget-full .nugget-name a {
    text-decoration:none;
}

.nugget-full .nugget-name,
.nugget-full .nugget-affiliation,
.nugget-full .action-links,
.nugget-full dl {
}

.nugget-small img {
    float:left;
}

.nugget-small .nugget-affiliation,
.nugget-small .nugget-name {
    margin-left: 60px;
}

.nugget-small .nugget-affiliation {
    font-size: 0.785714286em;
    color: #999;
}

#group-library-link-nav a {
    font-weight:bold;
}

/* == Header == */
header .center {
    padding-top: 20px;
    position:relative;
}

#logohead {
    float:left;
    clear:left;
    margin:0 0 0.3em;
}

#logohead {
}

#logohead img {
    max-width: 100%;
    width:193px;
    height:67px;
}

#purchase-storage-link,
#login-links {
    float:right;
    text-align:right;
    clear:right;
}

#purchase-storage-link {
    background-color: #38c;
    border-color: #38c;
    color: #fff;
    text-decoration:none;
    border-radius: 6px;
    display:block;
    line-height: 2;
    font-size:0.857142857em;
}

#purchase-storage-link img {
    vertical-align:middle;
    width: 24px;
    padding-right: 6px;
}

#login-links {
    font-size:0.857142857em;
    margin-bottom:10px;
}

#login-links a {
    text-decoration:none;
    font-weight:bold;
}

#login-links a:not(:last-child):after {
    content: " · ";
    color: #999;
    text-decoration:none;
    padding: 0 2px;
}

#navbar {
    list-style:none;
    background: #333;
    padding:0 10px;
    font-size:0.857142857em;
    font-weight:bold;
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
    clear:both;
}

#sitenav {
    float:left;
}

#sitenav ul {
    margin:0;
    padding:0;
    word-spacing:0;
    line-height:3;
}
#sitenav li {
    display:inline-block;
    margin:0;        
}

*:first-child+html #sitenav li {
    display:inline;
}

#sitenav a {
    -moz-border-radius: 8px 8px 0 0;
    border-radius: 8px 8px 0 0;
    padding: 15px 10px 12px;
}

#sitenav a:link,
#sitenav a:visited {
    color: #eee;
}
#sitenav a:hover,
#sitenav a:active {
    color: #fff;
}

#sitenav .selected a {
    background: #fff;
    color: #333;
    box-shadow:0 -1px 1px rgba(0,0,0,0.1);
}

#simple-search {
    float:right;
    text-align:right;
    clear:right;
    line-height: 3;
    margin:0;
}

#simple-search input {
    display:inline;
    margin:0;
    vertical-align:middle;
}

#simple-search .button {
    background-color: #aaa !important;
    border-color: #aaa !important;
    vertical-align:middle;
}

#simple-search input {
    font-size:0.95em;
    font: -webkit-small-control
    
}

#simple-search .clear-field-button {
    border: none;
    background: none !important;
    margin-left:-35px;
    position:relative;
    opacity:0.3;
}

#simple-search .clear-field-button:hover {
    border-color: #aaa !important;
    opacity:0.8;
}

/* == Content == */
#content .center {
    background: #fff;
    padding: 16px 40px 0;
    -webkit-box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    -moz-box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    border-radius: 10px 10px 0 0;
}

.major-col {
    float:left;
    width: 66%;
}

.minor-col {
    float:right;
    width: 31%;
}

.single-col {
    float:left;
}

#breadcrumbs,
.action-links {
    font-size:0.857142857em;
}

/* == Homepage, not logged in == */
#zotero-banner {
    font-size:115%;
    float:left;
    width: 65%;
    line-height: 150%;
}

#download-container {
	margin-top: -10px;
	width: 31%;
    float:right;
}

#download {
    display:block;
    text-decoration:none;
    padding: 20px 0;
    font-size: 1.8em;
    font-weight:bold;
    color: #fff;
    border-radius: 10px;
}

#download:link,
#download:visited {
    border-color: #a00;
    background-color: #a00;
}

#download:hover,
#download:active {
    border-color: #c00;
    background-color: #c00;
}

#download-container p {
	margin: 2px 0 12px;
	padding: 0;
	text-align: center;
	font-size: .85em;
}

#features {
    clear:both;        
    padding: 40px;
    margin: 0 -40px;
    border: 5px solid rgba(255,255,255, 0.5);
    background:rgba(51,136,204,0.2);
    border-width: 5px 0 0;
}

#features h3 {
    font-size:1.5em;
    text-align:center;
}

#features-tabs {
    list-style:none;
    text-align:center;
    margin: 0 0 1em;
    padding:0;
    font-size:1.14285714em;
    font-weight:bold;
}

#features-tabs li {
    display:inline-block;
    margin:0;
}

#features-tabs a {
    text-decoration:none;
    padding: 14px;
    line-height: 40px;
    position:relative;
    vertical-align:middle;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
}

*:first-child+html #features-tabs li {
    display:inline;
}

#features-tabs a:link,
#features-tabs a:visited {
    color:rgba(51,136,204,0.8);
    background-color: transparent;
}

#features-tabs a:hover,
#features-tabs a:active {
    background:rgba(51,136,204,0.1);
}

#features-tabs a.selected {
    background:rgba(51,136,204,0.2);
}

#features-tabs a img {
    vertical-align:middle;
}

#features-lists {
    max-width: 960px;
    margin-left:auto;
    margin-right:auto;
}

.feature h3 {
    font-weight:bold;
    margin-bottom:1em;
}

.feature img {
    background-color:rgba(0,0,0,0.1);
    padding: 5px;
    margin-bottom: 10px;
    float:left;
    margin-right: 10px;
}

#features-lists .feature:nth-child(2n) img {
    float:right;
    margin-left: 10px;
    margin-right:0;
}

#media {
    padding: 40px 0;
}

#media h2 {
    margin-top:0;
}

#media > div {
    float:left;
    width: 31%;
    margin-right: 3%;
    padding-bottom: 1em;
}

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

.news-list li {
    margin-bottom: .4em;
}

#connect ul {
    list-style:none;
    line-height: 2;
    margin:0;
    padding:0;
}

#connect li {
    margin-bottom:1em;
}
#connect a {
    text-decoration:none;
    font-weight:bold;
}

#connect a img {
    vertical-align:middle;
    margin-right: 8px;
    opacity: 0.75;
    width: 40px;
    height: 40px;
}

#connect a:hover img,
#connect a:active img {
    opacity:1;
}

#get-involved {
    margin-right: 0 !important;
}

/* == Homepage, logged in == */
#download-logged-in {
    float:right;
    display:block;
    margin-left: 5%;
}

#profile-widget .nugget-user {
    float:left;
    margin-right: 10px;
}

#profile-widget h1 {
    margin-bottom:0.25em;
}

.home-widget {
    background: rgba(0,0,0,0.035);
    -moz-border-radius: 10px;
    -webkit-border-radius:10px;
    border-radius: 10px;
    padding: 10px;
    margin-bottom: 2em;
    word-wrap: break-word;
}

#widgets-form,
#news-feed-form {
    float:left;
    width: 48%;
}

#news-feed-form {
    float:right;
}
.home-widget form li {
    list-style:none;
    padding-left:0;
}

.home-widget table,
.home-widget p,
.home-widget ul,
.home-widget ol,
.home-widget meter {
    font-size: 0.857142857em;
    margin: 1.66666667em 0;
}

.home-widget table {
    margin: 1em 0;
}

.home-widget h2 {
    margin:-10px -10px 0;
    padding: 10px;
    background: rgba(0,0,0,0.05);
    -moz-border-radius: 10px 10px 0 0;
    -webkit-border-radius:10px 10px 0 0;
    border-radius: 10px 10px 0 0;
    font-size:1em;
    line-height:1em;
}

.home-widget-title .widget-title-text {
    vertical-align:middle;
}

h2 .ui-button {
    height: 1.4em !important;
    width: 1.4em !important;
    float:right;
}

.home-widget-edit {
    margin: 0 -10px !important;
    padding: 10px 10px 0;
    background: rgba(0,0,0,0.05);
}

.home-widget-edit .widget-actions {
    padding-bottom:1em;
}
.home-widget ul {
    list-style:none;
    padding-left:0;
}

.home-widget li {
    padding: 8px 0;
    border-bottom: 1px dotted rgba(0,0,0,0.1);
}

.home-widget li:last-child {
    border:none;
}

.home-widget li img {
    vertical-align:middle;
    margin-right: 4px;
}

/* == Standalone Start Page == */
.download-section {
    /*background: rgba(51, 136, 204, 0.2);*/
    background-color: #e6e6e6;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    padding:5px;
    margin-bottom:10px;
}

.download-section ul {
    list-style:none;
}

.download-section li {
    margin-bottom: 12px;
}

#recommended-client-download a.download-link,
#firefox-section a.download-link {
    display:block;
    padding: 0;
    height: 45px;
    width: 236px;
    line-height: 45px;
    position: relative;
    padding-left:64px;
    margin-left:40px;
}

#recommended-connector-download a.download-link {
    font-size: 13px;
    margin-right: 10px;
    opacity:0.5;
    padding-top:0px;
    padding-bottom:2px;
    padding-left:5px;
    padding-right:5px;
}

#recommended-connector-download a.recommended-download {
    opacity:1.0;
}

#recommended-connector-download a.download-link:hover {
    opacity:1.0;
}


/* == Download Page == */
#recommended-client-download ul {
    list-style:none;
    
}
#recommended-connector-download ul {
    list-style:none;
    
}

#download-options ul {
    list-style:none;
}

/* == Jobs Page == */
#jobs {
	margin-bottom: 30px;
}

@media only screen and (min-device-width: 768px) {
	#jobs {
		padding: 0 100px;
	}
}

#jobs-eeo {
    margin-bottom: 2em;
}

#jobs-list ul {
    padding-left: 0;
}

#jobs-list li {
    list-style: none;
}

#jobs-list li {
    font-size: 18px;
}

#jobs .location {
    margin-top: -13px;
    color: #7b7b7b;
}
    
#jobs article {
    margin-top: 2em;
    margin-bottom: 3em;
}

#jobs h2 .anchor-link {
    text-decoration: none;
}

#jobs h2:not(:hover) .anchor-link {
    display: none;
}

#jobs .qualifications {
    margin-top: 1.5em;
}

#jobs p, #jobs li {
	line-height: 1.7em;
}

#jobs li {
	padding-bottom: .7em;
}

/* == Bookmarklet Page == */
ul#bookmarklet-tabs li {
/*    line-height:16px;*/
    border-right: 1px solid #bbb;
    padding-top: 8px;
    padding-bottom: 10px;
    cursor:pointer;
    list-style-position:inside;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border-top: 1px solid rgba(255,255,255,0);
    border-bottom: 1px solid rgba(255,255,255,0);
    margin-top: -1px;
}

ul#bookmarklet-tabs li.selected {
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
    border-right: 0px;
}

#bookmarklet-div {
    padding-left:10px;
}

/* == Zotero Plugins Page == */
.plugin-section {
    /*width:100%;*/
    padding: 20px 5%;
    margin-bottom:1em;
    border-radius: 8px 8px 8px 8px;
    border: 1px solid #A8B8D1;
    box-shadow: 0 1px 3px rgba(58, 78, 103, 0.15) inset, 0 1px 0 rgba(255, 255, 255, 0.5);
    -moz-box-shadow: 0 1px 3px rgba(58, 78, 103, 0.15) inset, 0 1px 0 rgba(255, 255, 255, 0.5);
    -webkit-box-shadow: 0 1px 3px rgba(58, 78, 103, 0.15) inset, 0 1px 0 rgba(255, 255, 255, 0.5);
    
}

div.plugin-nugget {
    border-radius:10px;
    border:1px solid black;
    width:28%;
    padding:5px;
    margin:12px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
    float:left;
    background-image:-moz-linear-gradient(#FFFFFF, #ECF1F7);
    background-image:-webkit-linear-gradient(#FFFFFF, #ECF1F7);
}

.plugin-author {
    
}

.plugin-description {
    
}

/* == User Pages == */
#profile-picture {
    float:left;
    width: 50px;
    margin-right: 8px;
}

#profile-picture img {
    max-width: 100%;
}

#profile_metaFields {
    overflow:hidden;
}

/* == User CV == */
div.csl-entry {
    margin-bottom:1em;
}

/* == User Library == */
#library .minor-col{
    float:left;
}

#library .major-col{
    float:right;
}

#collection-list-div ul {
    list-style:none;
    margin:0;
    padding:0;
}

#collection-list-div ul ul {
    margin-left: 1em;
}

#library-items-div th {
    border-bottom: 2px solid rgba(0,0,0,0.2);
    text-align: center;
}

#library-items-div th:not(:last-child) {
    border-right:1px dotted rgba(0,0,0,0.2);
}

#library-items-div td * {
    margin-bottom: 0;
}

.sprite-icon {
    float: left;
    margin-right: 5px;
}

.item-select-link {
    position: relative;
}
.item-select-link span.sprite-icon {
    /*position: absolute;*/
    top: 0;
    left: 0;
    margin-right:8px;
}

span.localized-date-span {
    white-space: nowrap;
    display: inline-block;
}

#items-pane td[data-itemkey]:not(.edit-checkbox-td) {
    cursor: pointer;
    max-width: 50%;
    word-wrap:break-word;
}

#control-panel-container {
    padding-bottom:1em;
/*    clear:both;*/
}

#control-panel form{
    margin-bottom:0;
}

#cite-link {
    margin-left: 18px;
    margin-right: 18px;
}

#move-item-links-buttonset {
    margin-left:1em;
    margin-right:3em;
}

.ui-selectmenu-status {
    font-size:0.9em;
}

/*.remove-from-collection-link .ui-button-text {
    font-size:0.9em;
    padding-top:0.1em !important;
    padding-bottom:0.1em !important;
}*/


.creator-input-div {
    margin:0;
    line-height:1.4em;
}

.creator-input-div input {
    float:left;
}
.creator-input-div span.creator-separator {
    float:left;
    margin-top:.42857143em;
    margin-right: 4px;
}

.itemDetailForm input {
    margin-right:2px;
}

td.creator * {
    margin:0 2px .25em;
}

.edit-tag-div {
    margin:0;
    line-height:1.4em;
}

.edit-tag-div input {
    float:left;
}
.edit-tag-div span {
    float:left;
}
.taginput{
    clear:left;
}

td.tags * {
    margin:0 2px .25em;
}

#library-settings-div {
}

#item-pagination-div li{
    display:inline-block;
}
#item-pagination-div {
    text-align:center;
}

#item-pagination-div .back-item-pagination {
    float:left;
    padding-left:0px;
    margin-top:0px;
}

#item-pagination-div .forward-item-pagination {
    float:right;
    margin-top:0px;
}


#item-pagintation-div a.paginator{
    display:inline-block;
}
/*
#item-pagination-div li:not(:last-child):after{
    content: " · ";
}
*/

/* library settings dialog */
#library-settings-form label {
    margin-bottom:0.3em;
}

/* == Item Details == */
ul#notes-and-attachments {
    list-style:none;
}

ul#notes-and-attachments li {
    margin-top: 5px;
}

#upload-attachment-link {
    margin-bottom:3px;
}

#cite-item-link {
    margin-bottom:3px;
}

.ui-button-text {
    text-shadow:none;
}

#cite-box-div {
    border:1px solid #d5d5d5;
    margin:5px;
    padding:3px;
    height:300px;
    overflow: auto;
}

/* == Login page == */
#login fieldset {
    display:block;
    float: left;
    width: 48%;
}

#login fieldset:not(:last-child) {
    margin-right: 4%;
}

/* == Global search page == */
#supportrefinementdiv label{
    clear:both;
}

#support-submit, #people-submit, #group-submit {
    margin-top:5px;
}

/* == Registration page == */
#register #form-description {
    float:right;
    width: 48%;
}

#register form {
    margin-right: 52%;
}

#register input[type=text] {
    width: 50%;
    min-width: 200px;
}

/* == Library styles == */

ul.item-pagination {
    padding-left:0;
    margin-left:0;
}

#notes-and-attachments .item-select-link {
    padding:0;
    display:inline;
    position:inherit;
}

#tag-filter-input,
#show-all-tags-label {
    margin-bottom:1em;
    display:block;
}

#show-all-tags-label input[type="checkbox"] {
    float:none !important;
    display:inline !important;
}

#tags-list,
#selected-tags-list {
    list-style:none;
    margin:1em 0;
    padding-left:0;
    font-weight:normal;
    /*font-size: 0.857142857em;*/
    font-size: 0.8em;
}

#tags-list a,
#selected-tags-list a {
    /*display:block;*/
    text-decoration:none;
    /*border-bottom: 1px dotted #ccc;*/
    padding: 5px;
    color: #16B;
    
    border:1px solid #ccc;
    border-radius:10px;
    margin:5px 0px 5px 2px;
}

#tags-list li,
#selected-tags-list li {
    display:list-item;
    float:left;
    margin-bottom:8px;
}
/*
#tags-list a span,
#selected-tags-list a span {
    float:right;
    text-align:right;
}
*/
#tags-list a:hover,
#tags-list a:active {
    background-color: rgba(51,136,204,0.2);
}

#selected-tags-list a:link,
#selected-tags-list a:visited {
    background-color: #fff09e;
    color: #444;
}

#selected-tags-list a:hover,
#selected-tags-list a:active {
    background-color: #fff09e;
    color: #900;
}

label[for='show-all-tags']{
    font-size: 0.8em;
}

#tag-filter-input {
    margin-bottom:25px;
}

#more-tags-links {
    clear: both;
}

#tag-lists-container {
/*    overflow:scroll;
    max-height:300px;
    */
}

td.tags ul {
    list-style:none;
    padding:0;
    margin:0;
}
td.tags li {
    display:inline-block;
}
td.tags a {
    text-decoration:none;
    border-bottom: 1px dotted #aaa;
}

td.tags li:not(:last-child):after {
    content: " · ";
    color: rgba(0,0,0,0.5);
}

#collection-list-container {
    clear: both;
}

#collection-edit-div {
    padding-bottom:1em;
/*    clear:both;*/
}

#collection-list {
    list-style:none;
    margin-left:0;
    padding-left:0;
    font-weight:normal;
    font-size: 0.857142857em;
}

#collection-list a {
    display:block;
    text-decoration:none;
    border-bottom: 1px dotted #ccc;
    padding: 5px;
    color: #16B;
}

#collection-list a:hover,
#collection-list a:active {
    background-color: rgba(51,136,204,0.2);
}


#collection-list a.current-collection {
    /*text-decoration: underline;*/
    font-weight: bold;
    background-color: rgba(51,136,204,0.2);
}

#collection-list span{
    margin-top:6px;
}

#library-items-div table {
    margin-left:0;
    padding-left:0;
    font-size: 0.857142857em;
}

#library-items-div a {
    /*display:block;*/
    text-decoration:none;
}
/*
#library-items-div a:hover,
#library-items-div a:active {
    background-color: rgba(51,136,204,0.2);
}
*/
#library-items-div tbody tr:hover {
    background-color: rgba(51,136,204,0.2);
}

#library-items-div th.clickable:hover {
    background-color: rgba(51,136,204,0.2);
}

#library-items-div div.no-results-message {
    text-align:center;
    margin-top:1em;
}

/*export section*/
#export-formats-div {
/*    border:1px solid rgba(0,0,0,0.3);
    border-radius:5px;*/
    padding-top:2px;
    margin-top:5px;
    margin-bottom:5px;
    max-width:200px;
}

#export-section-title {
    margin-top:2px;
    margin-bottom:4px;
    text-decoration:none;
}
#export-section-title a{
    text-decoration:none;
}

#export-formats-heading {
    
}

#export-list {
}

/*item details*/
.itemDetailForm td > input[type=text] {
    width:80%;
}

#feed-link-div.ajaxload {
    margin-top:5px;
}

#export-formats-div {
    /*
    border:1px solid rgb(204, 204, 204);
    border-radius:10px 10px 10px 10px;
    */
}

#export-formats-div ul {
    list-style:none;
    padding:0;
}

/* Attachment Upload */
#fileuploaddroptarget {
    padding-top:50px;
    border: 1px solid black;
    height:200px;
    text-align:center;
}

#fileuploaddroptarget h3 {
}

/* == Settings styles == */

/* == People page == */

#user-follow-list {
    list-style:none;
    padding-left:0;
}

.people-tiny-nuggets .nugget-user {
    float:left;
    margin-right: 5px;
}

.people-tiny-nuggets {
    clear:both;
}

.minor-col h2 {
    clear:both;
}

#people-discipline ul {
    list-style:none;
    margin-left:0;
    padding-left:0;
    font-weight:bold;
    font-size: 0.857142857em;
    float:left;
    width: 48%;
}

#people-discipline ul.last {
    float:right;
}
#people-discipline a {
    display:block;
    text-decoration:none;
    border-bottom: 1px dotted #ccc;
    padding: 5px;
}

#people-discipline a:hover,
#people-discipline a:active {
    background-color: rgba(51,136,204,0.2);
}

.people-in-disciplines {
    list-style:none;
    margin-left:0;
    padding-left:0;
}

.people-in-disciplines li {
    padding: 0 0 9px;
    border-bottom: 1px dotted #ccc;
    margin-bottom:10px;
}

.people-in-disciplines li:last-child {
    border:none;
    margin-bottom:0;
}

/* == Groups pages == */

ul#groups {
    list-style:none;
    margin-left:0;
    padding-left:0;
}

ul#groups > li {
    margin-bottom: 1.42857143em;
}

ul#groups th {
    width: 25%;
}

ul#group-invitations {
    list-style:none;
}

a.group-image img {
    padding:2px 4px;
}

div.nugget-group {
    border-top:2px solid rgba(0,0,0,0.3);
    padding-top: 8px;
    padding-left: 4px;
}

/* New Group Form */
.group-select {
    border-radius: 10px;
    width:27%;
    float:left;
    margin-right: 3%;
    padding: 2%;
    background-color: rgba(0,0,0,0.05);
}

.group-select:last-child {
    margin-right:0;
}

.group-select h2 {
    font-size:1em;
    color: #333;
    margin: 0 0 1em;
}

.group-select p,
.group-select label {
    font-size: 0.857142857em;
}

.group-select input,
.group-select label {
    display:inline;
    font-weight:bold;
}

#new-group-items td {
    max-width: 300px;
    text-overflow:ellipsis;
    overflow:hidden;
}

/* Messages Page */
#contact-section { padding-top:100px}
#contact-list { width:150px }
#inbox-spinner {display:none}

.message-row  {font-weight:bold;}
.message-body { background-color:#FFF; padding:10px; display:none;}
.read-message { background-color:#EAEAEA; font-weight:normal}

.group-message-body {margin-left:5px; margin-top:10px; margin-bottom:10px; border-top:1px solid #ccc; border-bottom:1px solid #ccc; overflow:auto}
.author-link {margin-right:30px; font-weight:bold}

/* Admin Dashboard */
.admin-message-type-emerg  {background-color:#3000ff;}
.admin-message-type-alert  {background-color:#9300ae;}
.admin-message-type-crit   {background-color:#d90042;}
.admin-message-type-err    {background-color:#ff1009;}
.admin-message-type-warn   {background-color:#fbd438;}
.admin-message-type-notice {background-color:#84de40;}
.admin-message-type-info   {background-color:#79d6aa;}
.admin-message-type-debug  {background-color:#c0ecd8;}
.admin-quicklink {width:100%; padding:5px; display:block; color:#FFF !important; text-align:center; font-size:14px; font-weight:bold;}
.admin-message { padding:5px; position:relative; min-height:7px; margin-bottom:3px; }
.admin-message-date { position:absolute; top:6px; right:15px; overflow:none; width:125px; text-align:right;}
.admin-message-title { overflow:hidden; white-space:nowrap; width:435px; font-weight:bold; margin-bottom:2px; cursor: pointer;}
.admin-message-body { background-color:#FFF; padding:10px; display:none;}
.admin-trace {overflow: auto; white-space:nowrap; }
.admin-value { font-family: monospace;}
.admin-message-body tr {border-bottom:1px solid #eee;}
.admin-message-body th { width:175px; }
.admin-message-body th, .admin-message-body td { border:0px; padding:0px;}
.admin-noresults {text-align:center; padding:100px;}
.admin-search-form {margin:18px 0px;}
.admin-pagination { text-align:center; position:relative; width:100%; margin:9px 0px;}
.admin-pagination-next {position:absolute; right:0px; bottom:0px;}
.admin-pagination-prev {position:absolute; left:0px; bottom:0px;}

/* Admin User Storage */
.checkout-notification {border:1px solid #ccc; margin-top:7px; background-color:#ddd}

.Role_2 {background-color:#fcc}






/* == Support styles == */
#support .major-col {
    float:right;
}
#support .minor-col {
    float:left;
}

.dokuwiki .major-col {
    width: 70%;
}

body.dokuwiki {
    max-width:1920px;
}

body div.dokuwiki div.major-col {
    font-size:0.9em;
}

.dokuwiki .minor-col {
    width: 25%;
}
.bchead {display:none;}

.dokuwiki div.plugin_translation {
    float:none !important;
    padding:0 !important;
    margin-bottom:1em;
}

.plugin_translation span {
    font-weight:bold;
}

.dokuwiki .bar .no {
    border-bottom: 1px dotted #ccc;
    padding: 10px 0;
    display:block;
}

.dokuwiki .bar button {
    background-image: none;
    background-color: transparent;
    border: none;
    text-shadow: none;
    color: #900;
    padding: 0;
    margin: 0;
    font-size: 1em;
    border-radius: 0;
    float:none;
}

.support-menu-section {
    background-color: #eee;
    border: 1px solid rgba(0,0,0,0.1);
    border-width: 0 1px 1px;
    padding: 10px;
}

#support-menu h2 {
    font-size:0.857142857em;
    margin:0;
    border-bottom:none;
}

#support-menu ul {
    font-size:0.857142857em;
    padding-left:1.25em;
}

#support-menu h2:hover {
    color: #38c;
    cursor:pointer;
}
.support-menu-section:first-child {
    border-radius: 10px 10px 0 0;
    border-width: 1px;
}

.support-menu-section:last-child {
    border-radius: 0 0 10px 10px;
}

.dokuwiki div.toc {
    float:right;
    border:1px solid #ccc;
    padding: 10px;
    margin-left: 10px;
    margin-bottom:10px;
    font-size:0.857142857em;
    width: 20%;
    border-radius:10px;
    -moz-border-radius:10px;
    -webkit-border-radius:10px;
    background: #fff;
}

.dokuwiki div.toc ul {
    padding-left:0.5em;
}

.dokuwiki .page-info,
.dokuwiki .user-info {
    font-size:0.857142857em;
    color: #999;
    margin: 1em 0;
}

.dokuwiki div.plugin_translation {
    margin-top:1em;
    border: 1px dotted #ccc;
    border-width: 1px 0;
    padding: 1em 0 !important;
}

.dokuwiki .page h1 {
    border-bottom: 1px dotted #ccc;
    padding-bottom: 0.5em;
}
.dokuwiki div.plugin_translation span,
.dokuwiki div.plugin_translation ul {
    display:block;
    margin:0;
    padding:0;
    float:left;
}

.dokuwiki div.plugin_translation li {
    float:none;
    display:inline;
}
.dokuwiki div.plugin_translation ul li a.wikilink2:link, 
.dokuwiki div.plugin_translation ul li a.wikilink2:hover, 
.dokuwiki div.plugin_translation ul li a.wikilink2:active, 
.dokuwiki div.plugin_translation ul li a.wikilink2:visited {
    background: #fff;
    color:#999 !important;
    border-bottom: 1px dotted #ccc;
    display: none;
}

.dokuwiki div.plugin_translation ul li a.wikilink1:link, 
.dokuwiki div.plugin_translation ul li a.wikilink1:hover, 
.dokuwiki div.plugin_translation ul li a.wikilink1:active,
.dokuwiki div.plugin_translation ul li a.wikilink1:visited {
    background-color: #ddd;
    color: #333 !important;
    border-bottom:none;
    
}

div.dokuwiki .media img.medialeft {
    border:1px dotted #ccc;
    padding: 4px;
}

div.dokuwiki div.secedit {
    margin-bottom: 1em;
}

div.dokuwiki div.secedit input.button {
    padding: 4px 8px;
}

.dokuwiki .centeralign {
    text-align:left;
}
.dokuwiki div.li input {float:left !important; display:inline !important}
/* indent different sections */
div.dokuwiki div.level1 {margin-left: 3px;}
div.dokuwiki div.level2 {margin-left: 13px;}

/* margin-left modified by Dan S. */
div.dokuwiki div.level3 {margin-left: 13px;}
div.dokuwiki div.level4 {margin-left: 13px;}
div.dokuwiki div.level5 {margin-left: 13px;}

div.dokuwiki ul ul {
    padding-left:20px;
}

div.dokuwiki form.btn_source div.no input[value="Show pagesource"]{
    display:none;
}

div.dokuwiki #wiki__text.edit {
    min-height: 300px;
}

/*
.dokuwiki .page h2,
.dokuwiki .page .level2 {
    margin-left: 0em;
}

.dokuwiki .page h3,
.dokuwiki .page .level3 {
    margin-left: 1em;
}
*/
/* == Forums styles == */
#SearchPage input, #PostPage input, #CommentsPage input {
    display:inline-block;
}
/*
#SearchPage input[type=button],
#SearchPage input[type=submit],
#PostPage input[type=button],
#PostPage input[type=submit],
#CommentsPage input[type=button],
#CommentsPage input[type=submit] {    border-color:#555;
    border-color:#555;
    background-color: #DDD;
}*/
#Panel {
    margin-right:25px;
}
/*
#Session {
    margin-bottom:1em;
}

#Categories,
#Categories ul,
#Comments,
#Discussions,
#Discussions ul {
    list-style:none;
    padding-left:0;
    margin-left:0;
}

.Category,
.Comment,
.Discussion {
    padding:1em;
}

.Category:not(:last-child),
.Comment:not(:last-child),
.Discussion:not(:last-child) {
    border-bottom:1px solid #ccc;
}

.CategoryOptions,
.CategoryName span,
.CategoryDescription span,
.CommentHeader span,
.DiscussionTopic span,
.DiscussionType {display:none;}

.CategoryDescription,
.DiscussionDescription,
.DiscussionComments {
    font-size:0.857142857em;
    color: #777;
}

.CategoryName,
.DiscussionTopic {
    font-size:1.14285714em;
    font-weight:bold;
}

.Discussion .DiscussionCategory {
    display:none;
}

.DiscussionComments {
    margin-bottom:1em;
}

.UnRead,
.NewComments {
    background-color: rgba(51,136,204,0.1);
}

.DiscussionStarted,
.DiscussionLastComment,
.DiscussionActive {
    display:inline;
    font-size: 0.857142857em;
}
.DiscussionStarted:after,
.DiscussionLastComment:after {
    content: " · ";
    padding: 0 4px;
    color: #999;
}

.PageInfo {
    border: 2px solid #ddd;
    border-width: 2px 0 1px;
    line-height:2;
    vertical-align:middle;
}
.PageInfo p {
    float:right;
    width: 25%;
    text-align:right;
    font-size: 0.857142857em;
    color: #999;
    font-weight:bold;
    margin:0;
    line-height:2;
}

.PageListEmpty {
    display:none;
}

.PageList {
    font-size: 0.857142857em;
    list-style:none;
    margin:0;
    padding:0;
    float:left;
    width: 70%;
    color: #999;
    font-weight:bold;
    line-height:2;
}

.PageList li {
    display:inline;
    margin: 0 4px;
}

.PageList a {
}

#Comments {
    border-top: 1px solid #ddd;
    margin-top:0;
}
.CommentHeader ul {
    list-style:none;
    padding-left:0;
    margin-left:0;
    padding-bottom:1em;
}

.CommentHeader li {
    display:inline;
    font-size: 1em;
    font-weight:bold;
    vertical-align:middle;
}

.CommentHeader a {
    text-decoration:none;
}
.CommentHeader li.comment-time {
    color: #999;
    font-weight:normal;
}

.CommentHeader li.comment-time:before {
    content: " · ";
    color: #ccc;
}
.Comment blockquote {
    color: #999;
    font-style:italic;
}
*/
/* == Footer == */
footer .center {
    background: #555;
    padding: 40px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.5);
    color: #fff;
    border-top: 5px solid #777;
}

footer p,
footer ul {
    color: #ccc;
    color: rgba(255,255,255,0.5);
    font-size:0.857142857em;
}

footer a:link,
footer a:visited {
    color: #ccc;
    color: rgba(255,255,255, 0.5);
}

footer a:hover,
footer a:active {
    color: #ddd;
    color: rgba(255,255,255, 0.75);
}

#chnm-logo {
    float:right;
}

footer nav,
footer p {
    float:left;
    clear:left;
    width: 60%;
}

footer nav a {
    font-weight:bold;
}
/*
footer nav li {
    padding: 0 0.2em;
}*/
footer nav li:not(:last-child):after {
    content: " · ";
    color: rgba(255,255,255,0.25);
}

.left {
    float:left;
}

.right {
    float:right;
}

.spinner {
    display:block;
    clear:both;
    margin-left:auto;
    margin-right:auto;
    margin-top:3em;
    margin-bottom:2em;
}

/* == IE7 Hacks == */
*:first-child+html .container,
*:first-child+html form,
*:first-child+html .action-links {
    min-height:1px;
}

*:first-child+html nav a {
    display:inline;
}

}

@media screen and (max-width: 920px) {
    body {
        background-image:none;
    }
    
    #sitenav ul {
    }
    
    #sitenav a {
        padding: 15px 10px;
    }
}

@media screen and (max-width: 1040px) {
    body {
        background-image:none;
        min-width: 840px;
    }
    
    header {
        margin-left:10px;
        margin-right: 10px;
    }
    .center {
        width: auto !important;
        margin-left:0;
        margin-right:0;
        -moz-border-radius: 0 !important;
        -webkit-border-radius: 0 !important;
        border-radius:0 !important;
        min-width:0 !important;
    }
}



@media screen and (max-width: 480px) {
  #minor-panel {
    display:none;
  }
  
  #major-panel {
    width:100%;
    height:100%;
    position:absolute;
    right:0;
    top:0;
    bottom:0;
  }
  
  body {
    min-width:300px;
  }
}

@media screen and (min-width: 481px) {
  #minor-panel {
    width: 33%;
    height:100%;
    position:absolute;
    left:0;
    top:0;
    bottom:0;
  }

  #major-panel {
    width:67%;
    height:100%;
    position:absolute;
    right:0;
    top:0;
    bottom:0;
  }
  
  body {
    min-width:300px;
  }
}

div#dialogPanel {
  display:none;
  width:100%;
  height:100%;
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  z-index:1000;
  background-color: #e6e6e6;
  
}

div.minorPanelActive{
  display:block !important;
}

div.majorPanelActive{
  display:block !important;
}

/*!
 * Bootstrap v3.0.0
 *
 * Copyright 2013 Twitter, Inc
 * Licensed under the Apache License v2.0
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Designed and built with all the love in the world @twitter by @mdo and @fat.
 */

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
.form-control {
  display: block;
  width: 100%;
  height: 28px;
  padding: 3px 6px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555555;
  vertical-align: middle;
  background-color: #ffffff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-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-color ease-in-out .15s, box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control[disabled],
.form-control[readonly],
.btn {
  display: inline-block;
  margin-bottom: 0;
  font-weight: normal;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  background-image: none;
  border: 1px solid transparent;
  white-space: nowrap;
  padding: 3px 6px;
  font-size: 14px;
  line-height: 1.428571429;
  border-radius: 4px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  -o-user-select: none;
  user-select: none;
}
.btn:focus {
  outline: thin dotted #333;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
.btn:hover,
.btn:focus {
  color: #333333;
  text-decoration: none;
}
.btn:active,
.btn.active {
  outline: 0;
  background-image: none;
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn.disabled,
.btn[disabled],
.btn-default {
  color: #333333;
  background-color: #ffffff;
  border-color: #cccccc;
}
.btn-default:hover,
.btn-default:focus,
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  color: #333333;
  background-color: #ebebeb;
  border-color: #adadad;
}
.btn-default:active,
.btn-default.active,
.open .dropdown-toggle.btn-default {
  background-image: none;
}
.caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid #000000;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
  border-bottom: 0 dotted;
}
.dropdown {
  position: relative;
}
.dropdown-toggle:focus {
  outline: 0;
}
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 160px;
  padding: 5px 0;
  margin: 2px 0 0;
  list-style: none;
  font-size: 14px;
  background-color: #ffffff;
  border: 1px solid #cccccc;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  background-clip: padding-box;
}
.dropdown-menu.pull-right {
  right: 0;
  left: auto;
}
.dropdown-menu .divider {
  height: 1px;
  margin: 9px 0;
  overflow: hidden;
  background-color: #e5e5e5;
}
.dropdown-menu > li {
    margin:0;
}
.dropdown-menu > li > a {
  display: block;
  padding: 3px 10px;
  clear: both;
  font-weight: normal;
  line-height: 1.428571429;
  color: #333333;
  white-space: nowrap;
  text-decoration:none;
}
.dropdown-menu > li > a.selected {
  background-color: rgba(51,136,204,0.2);
}

.dropdown-menu > li > a:hover,
.dropdown-menu > li > a:focus {
  text-decoration: none;
  color: #262626;
  background-color: rgba(51,136,204,0.4);
}

.dropdown-menu > .active > a,
.dropdown-menu > .active > a:hover,
.dropdown-menu > .active > a:focus {
  color: #ffffff;
  text-decoration: none;
  outline: 0;
  background-color: #428bca;
}
.dropdown-menu > .disabled > a,
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  color: #999999;
}
.dropdown-menu > .disabled > a:hover,
.dropdown-menu > .disabled > a:focus {
  text-decoration: none;
  background-color: transparent;
  background-image: none;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled = false);
  cursor: not-allowed;
}
.open > .dropdown-menu {
  display: block;
}
.open > a {
  outline: 0;
}
.dropdown-header {
  display: block;
  padding: 3px 20px;
  font-size: 12px;
  line-height: 1.428571429;
  color: #999999;
}
.dropdown-backdrop {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 990;
}
.pull-right > .dropdown-menu {
  right: 0;
  left: auto;
}
.dropup .caret,
.navbar-fixed-bottom .dropdown .caret {
  border-top: 0 dotted;
  border-bottom: 4px solid #000000;
  content: "";
}
.dropup .dropdown-menu,
.navbar-fixed-bottom .dropdown .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-bottom: 1px;
}
@media (min-width: 768px) {
  .navbar-right .dropdown-menu {
    right: 0;
    left: auto;
  }
}
.btn-default .caret {
  border-top-color: #333333;
}
.btn-primary .caret,
.btn-success .caret,
.btn-warning .caret,
.btn-danger .caret,
.btn-info .caret {
  border-top-color: #fff;
}
.dropup .btn-default .caret {
  border-bottom-color: #333333;
}
.dropup .btn-primary .caret,
.dropup .btn-success .caret,
.dropup .btn-warning .caret,
.dropup .btn-danger .caret,
.dropup .btn-info .caret {
  border-bottom-color: #fff;
}
.btn-group,
.btn-group-vertical {
  position: relative;
  display: inline-block;
  vertical-align: middle;
}
.btn-group > .btn,
.btn-group-vertical > .btn {
  position: relative;
  float: left;
}
.btn-group > .btn:hover,
.btn-group-vertical > .btn:hover,
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus,
.btn-group > .btn:active,
.btn-group-vertical > .btn:active,
.btn-group > .btn.active,
.btn-group-vertical > .btn.active {
  z-index: 2;
}
.btn-group > .btn:focus,
.btn-group-vertical > .btn:focus {
  outline: none;
}
.btn-group .btn + .btn,
.btn-group .btn + .btn-group,
.btn-group .btn-group + .btn,
.btn-group .btn-group + .btn-group {
  margin-left: -1px;
}
.btn-toolbar:before,
.btn-toolbar:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.btn-toolbar:after {
  clear: both;
}
.btn-toolbar .btn-group {
  float: left;
}
.btn-toolbar > .btn + .btn,
.btn-toolbar > .btn-group + .btn,
.btn-toolbar > .btn + .btn-group,
.btn-toolbar > .btn-group + .btn-group {
  margin-left: 5px;
}
.btn-group > .btn:not(:first-child):not(:last-child):not(.dropdown-toggle) {
  border-radius: 0;
}
.btn-group > .btn:first-child {
  margin-left: 0;
}
.btn-group > .btn:first-child:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn:last-child:not(:first-child),
.btn-group > .dropdown-toggle:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group > .btn-group {
  float: left;
}
.btn-group > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group > .btn-group:first-child > .btn:last-child,
.btn-group > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.btn-group > .btn-group:last-child > .btn:first-child {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.btn-group .dropdown-toggle:active,
.btn-group.open .dropdown-toggle {
  outline: 0;
}
.btn-group-xs > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
  padding: 1px 5px;
}
.btn-group-sm > .btn {
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
.btn-group-lg > .btn {
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
.btn-group > .btn + .dropdown-toggle {
  padding-left: 8px;
  padding-right: 8px;
}
.btn-group > .btn-lg + .dropdown-toggle {
  padding-left: 12px;
  padding-right: 12px;
}
.btn-group.open .dropdown-toggle {
  -webkit-box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}
.btn-group.open .dropdown-toggle.btn-link {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.btn .caret {
  margin-left: 0;
}
.btn-lg .caret {
  border-width: 5px 5px 0;
  border-bottom-width: 0;
}
.dropup .btn-lg .caret {
  border-width: 0 5px 5px;
}
.btn-group-vertical > .btn,
.btn-group-vertical > .btn-group {
  display: block;
  float: none;
  width: 100%;
  max-width: 100%;
}
.btn-group-vertical > .btn-group:before,
.btn-group-vertical > .btn-group:after {
  content: " ";
  /* 1 */

  display: table;
  /* 2 */

}
.btn-group-vertical > .btn-group:after {
  clear: both;
}
.btn-group-vertical > .btn-group > .btn {
  float: none;
}
.btn-group-vertical > .btn + .btn,
.btn-group-vertical > .btn + .btn-group,
.btn-group-vertical > .btn-group + .btn,
.btn-group-vertical > .btn-group + .btn-group {
  margin-top: -1px;
  margin-left: 0;
}
.btn-group-vertical > .btn:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.btn-group-vertical > .btn:first-child:not(:last-child) {
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn:last-child:not(:first-child) {
  border-bottom-left-radius: 4px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-vertical > .btn-group:not(:first-child):not(:last-child) > .btn {
  border-radius: 0;
}
.btn-group-vertical > .btn-group:first-child > .btn:last-child,
.btn-group-vertical > .btn-group:first-child > .dropdown-toggle {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group-vertical > .btn-group:last-child > .btn:first-child {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
}
.btn-group-justified {
  display: table;
  width: 100%;
  table-layout: fixed;
  border-collapse: separate;
}
.btn-group-justified .btn {
  float: none;
  display: table-cell;
  width: 1%;
}
[data-toggle="buttons"] > .btn > input[type="radio"],
[data-toggle="buttons"] > .btn > input[type="checkbox"] {
  display: none;
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group.col {
  float: none;
  padding-left: 0;
  padding-right: 0;
}
.input-group .form-control {
  width: 100%;
  margin-bottom: 0;
}
.input-group-lg > .form-control,
.input-group-lg > .input-group-addon,
.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  padding: 10px 16px;
  font-size: 18px;
  line-height: 1.33;
  border-radius: 6px;
}
select.input-group-lg > .form-control,
select.input-group-lg > .input-group-addon,
select.input-group-lg > .input-group-btn > .btn {
  height: 45px;
  line-height: 45px;
}
textarea.input-group-lg > .form-control,
textarea.input-group-lg > .input-group-addon,
textarea.input-group-lg > .input-group-btn > .btn {
  height: auto;
}
.input-group-sm > .form-control,
.input-group-sm > .input-group-addon,
.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  padding: 5px 10px;
  font-size: 12px;
  line-height: 1.5;
  border-radius: 3px;
}
select.input-group-sm > .form-control,
select.input-group-sm > .input-group-addon,
select.input-group-sm > .input-group-btn > .btn {
  height: 30px;
  line-height: 30px;
}
textarea.input-group-sm > .form-control,
textarea.input-group-sm > .input-group-addon,
textarea.input-group-sm > .input-group-btn > .btn {
  height: auto;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 14px;
  font-weight: normal;
  line-height: 1;
  color: #555555;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  border-radius: 4px;
}
.input-group-addon.input-sm {
  padding: 5px 10px;
  font-size: 12px;
  border-radius: 3px;
}
.input-group-addon.input-lg {
  padding: 10px 16px;
  font-size: 18px;
  border-radius: 6px;
}
.input-group-addon input[type="radio"],
.input-group-addon input[type="checkbox"] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .dropdown-toggle,
.input-group-btn:last-child > .btn:not(:last-child):not(.dropdown-toggle) {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .dropdown-toggle,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  white-space: nowrap;
}
.input-group-btn:first-child > .btn {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn {
  margin-left: -1px;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -4px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:active {
  z-index: 2;
}

#library-search .form-control {
  height: 24px;
  padding: 0px 0px;
  font-size: 11px;
  line-height: 1.428571429;    
}

#library-search .btn {
  padding: 0px 0px;
  height:26px;
  width:26px;
  text-align:left;
  /*padding-left:2px;*/
}

#library-search .ui-icon {
  /*position:relative;
  left:1px;*/
  margin-left:auto;
  margin-right:auto;
}

#library-search .ui-icon-circle-close {
    opacity: 0.3;
}

#library-search .btn:hover .ui-icon-circle-close {
    opacity: 1;
}

/* Zotero Publications */

/* Fix Zotero.org background gradient */
body {
  background-size: 100% 201px;
  background-repeat: no-repeat; }

/* Publications layout */
.clearfix:before, .clearfix:after {
  content: " ";
  display: table; }
.clearfix:after {
  clear: both; }

.minor-col.first-col {
  float: left;
  margin-right: 3%; }

/* Icons */
.icon {
  width: 14px;
  height: 14px;
  display: inline-block;
  vertical-align: -1px;
  background-position: 0 0;
  background-repeat: no-repeat; }

.icon-map-marker {
  background-image: url("../images/publications/icons/icon-map-marker.svg"); }

.icon-education {
  background-image: url("../images/publications/icons/icon-education.svg"); }

.icon-home {
  background-image: url("../images/publications/icons/icon-home.svg"); }

/* User profile */
#user-profile {
  margin-bottom: 5.35em; }
  .first-col #user-profile {
    width: 80%;
    margin-top: 0.36em; }
  #user-profile .profile-image {
    display: block;
    max-width: 100%;
    height: auto; }
  #user-profile h4 {
    font-size: 1.3em;
    margin: 1.85em 0 0.66667em; }
  #user-profile .user-details {
    list-style-type: none;
    padding: 0; }
    #user-profile .user-details li {
      margin-bottom: 5px;
      padding-left: 19px;
      text-indent: -19px; }
    #user-profile .user-details .icon {
      margin-right: 4px; }

/* Publications */
#publications {
  margin-bottom: 5.35em; }
  #publications .zotero-group-title {
    font-size: 1.5em; }
  #publications .zotero-group:first-child .zotero-group-title {
    margin-top: 0; }
  #publications .zotero-details h4 {
    font-size: 1.3em; }
  #publications .zotero-branding {
    display: none; }
  #publications.zotero-loading:after {
    margin-top: 17%; }

/* noscript */
.noscript-warning {
    padding:1rem;
    border:2px solid #700;
    background-color:#F7CBCA;
    margin:1rem;
}

/* moved inline element styles */
#outdated-version-notification {
    background-color:#FFFECC;
    text-align:left;
    border:1px solid #FAEBB1;
    padding:5px 20px;
    margin-bottom:20px;
}
#outdated-version-notification p {
    margin: 0;
    text-align: center;
}

div.library-page.btn-toolbar.pull-right {
    max-width:300px;
    float:right;
    position:relative;
    top:5px;
    margin-bottom:-13px;
}
div.library-page.btn-toolbar.pull-right input#header-search-query {
    padding:0px 3px;
}

#export-formats-div {
    display:none;
}
#library-settings-div {
    float:right;
}

.mlayout-body {
    overflow-x:hidden;
}

.purge-storage-section {
    border-top:2px solid #CCCCCC;
    padding-top:10px;
    margin-top:20px;
}

h1.mobile-page-title {
    margin:0;
}

.covid19 {
    background-color:salmon;
    padding: .5rem 3rem;
}