/**
 * Copyright (c) 2014-2015 OpenJournalSystems.com
 * The unauthorized reproduction and distribution of this copyrighted document is illegal and punishable under US federal laws.
 */

/********************************************** Common HTML Elements ***********************************************/

html {
	background-color: rgba(38, 95, 133, 0.17); /* Цвет фона веб-страницы */
}

body {
	font-family: Arial, sans-serif;
	margin-left: auto;
	margin-right: auto;
	width: 1200px;
}

a:link, a:visited {
	color: #08376e;
	text-decoration: none;
}

a:hover {
	color: #ab290f;
	background: transparent;
	text-decoration: none;
}

/********************************************** Main Layout Elements **********************************************/

#header {
	background-color: #ffffff;
	margin-top: -28px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px; 
	border-radius: 5px;
}

#header h1 {
	font-family: Arial, sans-serif;
	font-weight: normal;
	margin: 29px auto 19px auto;
	padding: 0 0 19px 0;
	width: auto;
}

#body {
	position:relative;
}

#main {
	font-size: 18px;
	margin: 0 auto;
	background: #ffffff;
	width: 78%;
	min-height: 850px;
	float:left;
	display:block;
	overflow:inherit !important;
	position:inherit !important;
}

#main h2 {
	color: #ab290f;
	font-size: 26px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	padding-left: 20px;
}

#content {
	border-top: 1px solid #ab290f;
	padding:20px;
}

#content h3 {
	font-size: 22px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	color: #08376e;
}

#content h4 {
	font-size: 18px;
	font-family: Arial, sans-serif;
	color: #08376e;
	font-weight: normal;
	text-decoration: none;
}

form {
	padding-left: 20px;
}

#container {
	background: #ffffff;
	text-align: left;
	border:solid #ffffff 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	margin-bottom: 30px;
	margin-top: 10px;
	float:left;
	box-shadow: 4px 4px 3px #000000;
	-moz-box-shadow: 4px 4px 3px #000000;
	-webkit-box-shadow: 4px 4px 3px #000000;
}

div.separator {
	border-bottom: 2px solid #08376e;
}

/****************************************** Main Layout Elements: Footer ******************************************/

#pageFooter {
	width: 1158px;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000000), to(#9b9b9b)); /* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(bottom, #000000, #9b9b9b); /* Firefox 3.6+ */
	background: -moz-linear-gradient(bottom, #000000, #9b9b9b); /* IE 10 */
	background: -ms-linear-gradient(bottom, #000000, #9b9b9b); /* Opera 11.10+ */
	background: -o-linear-gradient(bottom, #000000, #9b9b9b);
	color: #f0c237;
	display: block;
	position: absolute;
	margin: 0 0 -5px -25px;
	padding: 15px 25px 15px 25px;
	bottom: 0;
	border: 1px solid #000000;
	z-index:99999;
}

#pageFooter a:link, #pageFooter a:visited {
	color: #ffffff;
	text-decoration: none;
}

#pageFooter a:hover {
	color: #b1b1b1;
	background: transparent;
	text-decoration: none;
}

/******************************************* Main Layout Elements: Input *******************************************/

input {
	border: 1px solid #000000;
}

input.textField, select.selectMenu, textarea.textArea, input.uploadField {
	background-color: #ffffff;
	color: #000000;
	border: 1px solid #000000;
	padding-left: 2px;
}

input.button {
	background-color: #08376e;
	color: #ffffff;
	border: 1px solid #000000;
}

input.defaultButton {
	background-color: #000000;
	color: #ffffff;
	border: 1px solid #000000;
	font-weight: normal;
}

/************************************************* Navigation Bar *************************************************/
 
#navbar {
	position:absolute;
	top:-37px;
	width:1200px;
	border-top: 2px solid rgba(5, 50, 100, 0.95);
	border-bottom: 3px solid #053264;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#053264), to(#053264)); /* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #053264, #053264); /* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #053264, #053264); /* IE 10 */
	background: -ms-linear-gradient(top, #053264, #053264); /* Opera 11.10+ */
	background: -o-linear-gradient(top, #053264, #053264);
	height: 32px;
	margin-right: 0;
	padding-bottom: 0;
	z-index:99999;
}

#navbar a {
	letter-spacing: 0;
	border-right: 1px solid #c4cbc4;
	float: left;
	margin: 0;
	color: #ffffff;
	display: block;
	font-family: Arial, sans-serif;
	font-weight: bold;
	height: 32px;
	line-height: 32px;
	padding: 0 18px;
	text-decoration: none;
	text-transform: uppercase;
	font-size: 12px;
}

#navbar li:last-child a {
	border: none; /* Последний элемент главного меню (навигационной панели) без границы */
}

#navbar a:hover {
	color: #f0c237;
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#08376e), to(#204f6e)); /* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(top, #08376e, #204f6e); /* Firefox 3.6+ */
	background: -moz-linear-gradient(top, #08376e, #204f6e); /* IE 10 */
	background: -ms-linear-gradient(top, #08376e, #204f6e); /* Opera 11.10+ */
	background: -o-linear-gradient(top, #08376e, #204f6e);
}

ul.menu li {
	display: inline;
	margin: 0;
	padding: 0;
}

/**************************************************** BreadCrumb ****************************************************/

#breadcrumb  {
	font-size: 12px;
	color: #000000;
	margin-top: -7px;
	padding:4px 0 4px 20px;
	background-color: rgba(38, 95, 133, 0.16);
	border: 1px solid #000000;
}

/***************************************************** Sidebar *****************************************************/

#leftSidebar {
	background-color: #ffffff;
	float: left;
	width: 20%;
	min-height: 800px;
	font-size: 0.65em;
	margin-left: 0;
	display: inline;
	overflow: hidden;
	margin-right: 5px;
	padding-top: 0;
}

#rightSidebar {
	background-color: #ffffff;
	float: right;
	width: 20%;
	min-height: 800px;
	font-size: 0.65em;
	margin-right: 0;
	margin-left: 0;
	padding-top: 0;
	position:absolute;
	height:auto;
	right:0;
	top: 2px;
	z-index:888;
}

#sidebar div.block {
	background: #ffffff;
    border-top: 1px solid #000000;
	border-bottom: 2px solid #000000;
	border-left: 1px solid #b1b1b1;
	border-right: 1px solid #b1b1b1;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
    font-size: 12px;
	color: #000000;
    padding: 1px;
	margin-bottom: 10px;
}

#sidebar div.block span.blockTitle {
	background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#000000), to(#9b9b9b)); /* Safari 5.1, Chrome 10+ */
	background: -webkit-linear-gradient(bottom, #000000, #9b9b9b); /* Firefox 3.6+ */
	background: -moz-linear-gradient(bottom, #000000, #9b9b9b); /* IE 10 */
	background: -ms-linear-gradient(bottom, #000000, #9b9b9b); /* Opera 11.10+ */
	background: -o-linear-gradient(bottom, #000000, #9b9b9b);
	display: block;
	font-size: 12px;
	font-family: Arial, sans-serif;
	font-weight: bold;
	text-transform: uppercase;
	letter-spacing: 0;
	color: #ffffff;
	border-radius: 0;
	-moz-border-radius: 0;
	-webkit-border-radius: 0;
	height: 25px;
	line-height: 25px;
	text-indent: 12px;
}

#sidebar div.block span.blockSubtitle {
	display: block;
	padding: 0;
}

#sidebar input.textField, #sidebar select.selectMenu {
	font-size: 12px;
}

#sidebar input.button {
	font-size: 12px;
	background: #000000;
	color: #ffffff;
	border-radius: 0;
}

/************************************************ Table of Contents *************************************************/

table.tocArticle {
	width: 100%;
	padding: 7px 0;
	border-bottom: 1px dotted #000000;
}

table.tocArticle td.tocTitle {
	width: 85%;
	font-weight: normal;
}

table.tocArticle td.tocGalleys {
	width: 15%;
	text-align: right;
	font-size: 14px;
}

table.tocArticle td.tocAuthors {
	padding-left: 30px;
	font-style: italic;
}

table.tocArticle td.tocPages {
	text-align: right;
	font-size: 14px;
}

/********************************************************************************************************************/

.issueCoverImage img {
	border: 1px solid #b1b1b1;
	float: left;
	width: 100px;
	margin: 0 20px 15px 0;
}

ol.editorialTeam li {
	list-style: none;
	padding-bottom: 4px;
}