/*
Theme Name: IJURR
Theme URI: http://publicagency.co.uk
Author: Public
Author URI: http://publicagency.co.uk
Description: Theme for IJURR Website.
Version: 1.0
License: Private
Text Domain: twentytwelve

*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */

* {
	-moz-hyphens:none;
	-ms-hyphens:none;
	-webkit-hyphens: none;
	hyphens:none;
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	vertical-align: baseline;
}
body {
	line-height: 1;
}
ol,
ul {
	list-style: none;
}
blockquote,
q {
	quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
caption,
th,
td {
	font-weight: normal;
	text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}
html {
	overflow-y: scroll;
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
}
a:focus {
	outline: none;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
nav,
section {
	display: block;
}
audio,
canvas,
video {
	display: inline-block;
}
audio:not([controls]) {
	display: none;
}
del {
	color: #333;
}
ins {
	background: #fff9c0;
	text-decoration: none;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin: 24px;
	margin-bottom: 1.714285714rem;
}
sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}
sup {
	top: -0.5em;
}
sub {
	bottom: -0.25em;
}
small {
	font-size: smaller;
}
img {
	border: 0;
	-ms-interpolation-mode: bicubic;
}

/* Clearing floats */
.clear:after,
.wrapper:after,
.format-status .entry-header:after {
	clear: both;
}
.clear:before,
.clear:after,
.wrapper:before,
.wrapper:after,
.format-status .entry-header:before,
.format-status .entry-header:after {
	display: table;
	content: "";
}


/* =Repeatable patterns
-------------------------------------------------------------- */

/* Small headers */
.archive-title,
.page-title,
.widget-title,
.entry-content th,
.comment-content th {
	font-size: 18px;
	line-height: normal;
	font-weight: bold;
	text-transform: none;
	color: #ff3333;
	
}

/* Shared Post Format styling */
article.format-quote footer.entry-meta,
article.format-link footer.entry-meta,
article.format-status footer.entry-meta {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}

/* Form fields, general styles first */
button,
input,
select,
textarea {
	border: 1px solid #ccc;
	border-radius: 3px;
	font-family: inherit;
	padding: 6px;
	padding: 0.428571429rem;
}
button,
input {
	line-height: normal;
}
textarea {
	font-size: 100%;
	overflow: auto;
	vertical-align: top;
}

/* Reset non-text input types */
input[type="checkbox"],
input[type="radio"],
input[type="file"],
input[type="hidden"],
input[type="image"],
input[type="color"] {
	border: 0;
	border-radius: 0;
	padding: 0;
}

/* Buttons */
.menu-toggle,
input[type="submit"],
input[type="button"],
input[type="reset"],
article.post-password-required input[type=submit],
.bypostauthor cite span {
	padding: 6px 10px;
	padding: 0.428571429rem 0.714285714rem;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 1.428571429;
	font-weight: normal;
	color: #7c7c7c;
	background-color: #e6e6e6;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -ms-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -webkit-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: -o-linear-gradient(top, #f4f4f4, #e6e6e6);
	background-image: linear-gradient(top, #f4f4f4, #e6e6e6);
	border: 1px solid #d2d2d2;
	border-radius: 3px;
	box-shadow: 0 1px 2px rgba(64, 64, 64, 0.1);
}
.menu-toggle,
button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
	cursor: pointer;
}
button[disabled],
input[disabled] {
	cursor: default;
}
.menu-toggle:hover,
.menu-toggle:focus,
button:hover,
input[type="submit"]:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
article.post-password-required input[type=submit]:hover {
	color: #5e5e5e;
	background-color: #ebebeb;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -ms-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -webkit-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: -o-linear-gradient(top, #f9f9f9, #ebebeb);
	background-image: linear-gradient(top, #f9f9f9, #ebebeb);
}
.menu-toggle:active,
.menu-toggle.toggled-on,
button:active,
input[type="submit"]:active,
input[type="button"]:active,
input[type="reset"]:active {
	color: #757575;
	background-color: #e1e1e1;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -ms-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -webkit-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: -o-linear-gradient(top, #ebebeb, #e1e1e1);
	background-image: linear-gradient(top, #ebebeb, #e1e1e1);
	box-shadow: inset 0 0 8px 2px #c6c6c6, 0 1px 0 0 #f4f4f4;
	border-color: transparent;
}
.bypostauthor cite span {
	color: #fff;
	background-color: #21759b;
	background-image: none;
	border: 1px solid #1f6f93;
	border-radius: 2px;
	box-shadow: none;
	padding: 0;
}

/* Responsive images */
.entry-content img,
.comment-content img,
.widget img {
	max-width: 100%; /* Fluid images for posts, comments, and widgets */
}
img[class*="align"],
img[class*="wp-image-"],
img[class*="attachment-"] {
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}
img.size-full,
img.size-large,
img.header-image,
img.wp-post-image {
	max-width: 100%;
	height: auto; /* Make sure images with WordPress-added height and width attributes are scaled correctly */
}

/* Make sure videos and embeds fit their containers */
embed,
iframe,
object,
video {
	max-width: 100%;
}
.entry-content .twitter-tweet-rendered {
	max-width: 100% !important; /* Override the Twitter embed fixed width */
}

/* Images */
.alignleft {
	float: left;
}
.alignright {
	float: right;
}
.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}
.entry-content img,
.comment-content img,
.widget img,
img.header-image,
.author-avatar img,
img.wp-post-image {
	/* Add fancy borders to all WordPress-added images but not things like badges and icons and the like 
	border-radius: 3px;
	box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);*/
}
.wp-caption {
	max-width: 100%; /* Keep wide captions from overflowing their container. */
	padding: 4px;
}
.wp-caption .wp-caption-text,
.gallery-caption,
.entry-caption {
	font-style: italic;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #757575;
}
img.wp-smiley,
.rsswidget img {
	border: 0;
	border-radius: 0;
	box-shadow: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}
.entry-content dl.gallery-item {
	margin: 0;
}
.gallery-item a,
.gallery-caption {
	width: 90%;
}
.gallery-item a {
	display: block;
}
.gallery-caption a {
	display: inline;
}
.gallery-columns-1 .gallery-item a {
	max-width: 100%;
	width: auto;
}
.gallery .gallery-icon img {
	height: auto;
	max-width: 90%;
	padding: 5%;
}
.gallery-columns-1 .gallery-icon img {
	padding: 3%;
}

/* Navigation */
.site-content nav {
	clear: both;
	line-height: 2;
	overflow: hidden;
}
#nav-above {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
#nav-above {
	display: none;
}
.paged #nav-above {
	display: block;
}
.nav-previous,
.previous-image {
	float: left;
	width: 50%;
}
.nav-next,
.next-image {
	float: right;
	text-align: right;
	width: 50%;
}
.nav-single + .comments-area,
#comment-nav-above {
	margin: 48px 0;
	margin: 3.428571429rem 0;
}

/* Author profiles */
.author .archive-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.author-info {
	border-top: 1px solid #ededed;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	overflow: hidden;
}
.author-description p {
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.author.archive .author-info {
	border-top: 0;
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
}
.author.archive .author-avatar {
	margin-top: 0;
}


/* =Basic structure
-------------------------------------------------------------- */

/* Body, links, basics */
html {
	font-size: 87.5%;
}
body {
	font-size: 14px;
	font-size: 1rem;
	font-family: Helvetica, Arial, sans-serif;
	text-rendering: optimizeLegibility;
	color: #000;
}
body.custom-font-enabled {
	/*font-family: "Open Sans", Helvetica, Arial, sans-serif;*/
	font-family: Montserrat, Helvetica, Arial, sans-serif;
}
a {
	outline: none;
	text-decoration: none;
	color: #ff3333;
	transition: color 0.3s;
}
a:hover {
	text-decoration: underline;
}

/* Assistive text */
.assistive-text,
.site .screen-reader-text {
	position: absolute !important;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation .assistive-text:focus {
	background: #fff;
	border: 2px solid #333;
	border-radius: 3px;
	clip: auto !important;
	color: #000;
	display: block;
	font-size: 12px;
	padding: 12px;
	position: absolute;
	top: 5px;
	left: 5px;
	z-index: 100000; /* Above WP toolbar */
}

/* Page structure */
.site {
	padding: 0 24px;
	padding: 0 1.714285714rem;
	background-color: #fff;
}
.site-content {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}
.widget-area {
	margin: 24px 0 0;
	margin: 1.714285714rem 0 0;
}

/* Header */
.site-header {
	padding: 24px 0;
	padding: 1.714285714rem 0;
}
.site-header h1,
.site-header h2 {
	text-align: center;
}
.site-header h1 a,
.site-header h2 a {
	color: #515151;
	display: inline-block;
	text-decoration: none;
}
.site-header h1 a:hover,
.site-header h2 a:hover {
	color: #21759b;
}

.site-header h1 {
	font-size: 26px;
	font-size: 1.857142857rem;
	line-height: 1.846153846;
	margin-bottom: 0;
	padding: 30px 16px 0 0;
	width: 71%;
	box-sizing: border-box;
}


.site-header h2 {
	font-weight: normal;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.header-image {
	margin-top: 24px;
	margin-top: 1.714285714rem;
}

/* Navigation Menu */
.main-navigation {
	margin-top: 0;
	text-align: center;
	float: left;
}
.main-navigation li {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.42857143;
}
.main-navigation a {
	color: #5e5e5e;
}
.main-navigation a:hover,
.main-navigation a:focus {
	color: #21759b;
}
.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: none;
}
.main-navigation ul.nav-menu.toggled-on,
.menu-toggle {
	display: inline-block;
}

.mini-search{
	display: inline-block;
	position: relative;
}

.mini-search input[type="text"]{
	border: 1px solid #bebebe;
	border-radius: 0;
	font-family: Arial;
	padding: 1px 2px;
	font-size: 10px;
	outline: none;
	margin: 8px 0 0 4px;
	width: 118px;
}

.mini-search input[type="image"]{
	margin-top: 9px;
	display: inline-block;
	vertical-align: top;	
	outline:none;
	
}


/* Banner */
section[role="banner"] {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
}

/* Sidebar */
.widget-area .widget {
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	word-wrap: break-word;
}
.widget-area .widget h3 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .widget p,
.widget-area .widget li,
.widget-area .widget .textwidget {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget-area .widget p {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.widget-area .textwidget ul {
	list-style: disc outside;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.widget-area .textwidget li {
	margin-left: 36px;
	margin-left: 2.571428571rem;
}
.widget-area .widget a {
	color: #757575;
}
.widget-area .widget a:hover {
	color: #21759b;
}
.widget-area .widget a:visited {
	color: #9f9f9f;
}
.widget-area #s {
	width: 53.66666666666%; /* define a width to avoid dropping a wider submit button */
}

/* Footer */
footer[role="contentinfo"] {
	background: #000;
	clear: both;
	font-size: 12px;
	line-height: normal;
	margin-top: 24px;
	padding: 24px 0 15px 0;
}
footer[role="contentinfo"] a {
	color: #999;
}
footer[role="contentinfo"] a:hover {
	color: #ff3333;
}


/* =Main content and comment content
-------------------------------------------------------------- */

.entry-meta {
	clear: both;
}
.entry-header {
	/*margin-bottom: 24px;
	margin-bottom: 1.714285714rem;*/
}
.entry-header img.wp-post-image {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-header .entry-title {
	font-size: 20px;
	line-height: normal;
	font-weight: bold;
}
.entry-header .entry-title a {
	/*text-decoration: none;*/
}
.entry-header .entry-format {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-weight: normal;
}
.entry-header .comments-link {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.comments-link a,
.entry-meta a {
	color: #757575;
}
.comments-link a:hover,
.entry-meta a:hover {
	color: #21759b;
}
article.sticky .featured-post {
	border-top: 4px double #ededed;
	border-bottom: 4px double #ededed;
	color: #757575;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 3.692307692;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	text-align: center;
}
.entry-content,
.entry-summary,
.mu_register {
	line-height: 1.714285714;
	clear: both;
}
.entry-content h1,
.comment-content h1,
.entry-content h2,
.comment-content h2,
.entry-content h3,
.comment-content h3,
.entry-content h4,
.comment-content h4,
.entry-content h5,
.comment-content h5,
.entry-content h6,
.comment-content h6 {
	margin: 24px 0;
	margin: 1.714285714rem 0;
	line-height: 1.714285714;
}
.entry-content h1,
.comment-content h1 {
	font-size: 21px;
	font-size: 1.5rem;
	line-height: 1.5;
}
.entry-content h2,
.comment-content h2,
.mu_register h2 {
	font-size: 18px;
	font-size: 1.285714286rem;
	line-height: 1.6;
}

.articles h2,
.entry-content h3,
.comment-content h3 {
	font-size: 18px;
	line-height: normal;
	margin: 0 0 7px 0;
}
.entry-content h4,
.comment-content h4 {
	font-size: 14px;
	font-size: 1rem;
	line-height: 1.846153846;
}
.entry-content h5,
.comment-content h5 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.entry-content h6,
.comment-content h6 {
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.846153846;
}
.entry-content p,
.entry-summary p,
.comment-content p,
.mu_register p {
	margin: 0 0 18px;
	line-height: normal;
	font-size: 12px;
}
.entry-content a:visited,
.comment-content a:visited {
	color: #ff3333;
}
.entry-content ol,
.comment-content ol,
.entry-content ul,
.comment-content ul,
.mu_register ul {
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	line-height: 1.714285714;
}
.entry-content ul ul,
.comment-content ul ul,
.entry-content ol ol,
.comment-content ol ol,
.entry-content ul ol,
.comment-content ul ol,
.entry-content ol ul,
.comment-content ol ul {
	margin-bottom: 0;
}
.entry-content ul,
.comment-content ul,
.mu_register ul {
	list-style: disc outside;
}
.entry-content ol,
.comment-content ol {
	list-style:none;
}
.entry-content li,
.comment-content li,
.mu_register li {
	margin: 0 0 0 18px;
	list-style: disc outside;
	font-size: 12px;
	line-height: normal;
}

.entry-content ol li{
	list-style: none;
	margin: 0 0 0 0px;
}



.entry-content blockquote,
.comment-content blockquote {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
	padding: 24px;
	padding: 1.714285714rem;
	font-style: italic;
}
.entry-content blockquote p:last-child,
.comment-content blockquote p:last-child {
	margin-bottom: 0;
}
.entry-content code,
.comment-content code {
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
}
.entry-content pre,
.comment-content pre {
	border: 1px solid #ededed;
	color: #666;
	font-family: Consolas, Monaco, Lucida Console, monospace;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	margin: 24px 0;
	margin: 1.714285714rem 0;
	overflow: auto;
	padding: 24px;
	padding: 1.714285714rem;
}
.entry-content pre code,
.comment-content pre code {
	display: block;
}
.entry-content abbr,
.comment-content abbr,
.entry-content dfn,
.comment-content dfn,
.entry-content acronym,
.comment-content acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}
.entry-content address,
.comment-content address {
	display: block;
	line-height: 1.714285714;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
img.alignleft,
.wp-caption.alignleft {
	margin: 12px 24px 12px 0;
	margin: 0.857142857rem 1.714285714rem 0.857142857rem 0;
}
img.alignright,
.wp-caption.alignright {
	margin: 12px 0 12px 24px;
	margin: 0.857142857rem 0 0.857142857rem 1.714285714rem;
}
img.aligncenter,
.wp-caption.aligncenter {
	clear: both;
	margin-top: 12px;
	margin-top: 0.857142857rem;
	margin-bottom: 12px;
	margin-bottom: 0.857142857rem;
}
.entry-content embed,
.entry-content iframe,
.entry-content object,
.entry-content video {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content dl,
.comment-content dl {
	margin: 0 24px;
	margin: 0 1.714285714rem;
}
.entry-content dt,
.comment-content dt {
	font-weight: bold;
	line-height: 1.714285714;
}
.entry-content dd,
.comment-content dd {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.entry-content table,
.comment-content table {
	border-bottom: 1px solid #ededed;
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
	width: 100%;
}
.entry-content table caption,
.comment-content table caption {
	font-size: 16px;
	font-size: 1.142857143rem;
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.entry-content td,
.comment-content td {
	border-top: 1px solid #ededed;
	padding: 6px 10px 6px 0;
}
.site-content article {
	/*margin-bottom: 6px;*/
	padding-bottom: 4px;
	word-wrap: break-word;
	-webkit-hyphens: auto;
	-moz-hyphens: auto;
	hyphens: auto;
	border-bottom: 1px dotted #ff3333;
}
.page-links {
	clear: both;
	line-height: 1.714285714;
}
footer.entry-meta {
	margin-top: 24px;
	margin-top: 1.714285714rem;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #757575;
}
.single-author .entry-meta .by-author {
	display: none;
}
.mu_register h2 {
	color: #757575;
	font-weight: normal;
}


/* =Archives
-------------------------------------------------------------- */

.archive-header,
.page-header {
	margin-bottom: 5px;
	padding-bottom: 12px;
	border-bottom: 1px dotted #ff3333;
}
.archive-meta {
	color: #757575;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	margin-top: 22px;
	margin-top: 1.571428571rem;
}

/* =Single audio/video attachment view
-------------------------------------------------------------- */

.attachment .entry-content .mejs-audio {
	max-width: 400px;
}

.attachment .entry-content .mejs-container {
	margin-bottom: 24px;
}


/* =Single image attachment view
-------------------------------------------------------------- */

.article.attachment {
	overflow: hidden;
}
.image-attachment div.attachment {
	text-align: center;
}
.image-attachment div.attachment p {
	text-align: center;
}
.image-attachment div.attachment img {
	display: block;
	height: auto;
	margin: 0 auto;
	max-width: 100%;
}
.image-attachment .entry-caption {
	margin-top: 8px;
	margin-top: 0.571428571rem;
}


/* =Aside post format
-------------------------------------------------------------- */

article.format-aside h1 {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
article.format-aside h1 a {
	text-decoration: none;
	color: #4d525a;
}
article.format-aside h1 a:hover {
	color: #2e3542;
}
article.format-aside .aside {
	padding: 24px 24px 0;
	padding: 1.714285714rem;
	background: #d2e0f9;
	border-left: 22px solid #a8bfe8;
}
article.format-aside p {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #4a5466;
}
article.format-aside blockquote:last-child,
article.format-aside p:last-child {
	margin-bottom: 0;
}


/* =Post formats
-------------------------------------------------------------- */

/* Image posts */
article.format-image footer h1 {
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	font-weight: normal;
}
article.format-image footer h2 {
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
}
article.format-image footer a h2 {
	font-weight: normal;
}

/* Link posts */
article.format-link header {
	padding: 0 10px;
	padding: 0 0.714285714rem;
	float: right;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	color: #848484;
	background-color: #ebebeb;
	border-radius: 3px;
}
article.format-link .entry-content {
	max-width: 80%;
	float: left;
}
article.format-link .entry-content a {
	font-size: 22px;
	font-size: 1.571428571rem;
	line-height: 1.090909091;
	text-decoration: none;
}

/* Quote posts */
article.format-quote .entry-content p {
	margin: 0;
	padding-bottom: 24px;
	padding-bottom: 1.714285714rem;
}
article.format-quote .entry-content blockquote {
	display: block;
	padding: 24px 24px 0;
	padding: 1.714285714rem 1.714285714rem 0;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.6;
	font-style: normal;
	color: #6a6a6a;
	background: #efefef;
}

/* Status posts */
.format-status .entry-header {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.format-status .entry-header header {
	display: inline-block;
}
.format-status .entry-header h1 {
	font-size: 15px;
	font-size: 1.071428571rem;
	font-weight: normal;
	line-height: 1.6;
	margin: 0;
}
.format-status .entry-header h2 {
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	line-height: 2;
	margin: 0;
}
.format-status .entry-header header a {
	color: #757575;
}
.format-status .entry-header header a:hover {
	color: #21759b;
}
.format-status .entry-header img {
	float: left;
	margin-right: 21px;
	margin-right: 1.5rem;
}


/* =Comments
-------------------------------------------------------------- */

.comments-title {
	margin-bottom: 48px;
	margin-bottom: 3.428571429rem;
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
	font-weight: normal;
}
.comments-area article {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
.comments-area article header {
	margin: 0 0 48px;
	margin: 0 0 3.428571429rem;
	overflow: hidden;
	position: relative;
}
.comments-area article header img {
	float: left;
	padding: 0;
	line-height: 0;
}
.comments-area article header cite,
.comments-area article header time {
	display: block;
	margin-left: 85px;
	margin-left: 6.071428571rem;
}
.comments-area article header cite {
	font-style: normal;
	font-size: 15px;
	font-size: 1.071428571rem;
	line-height: 1.42857143;
}
.comments-area cite b {
	font-weight: normal;
}
.comments-area article header time {
	line-height: 1.714285714;
	text-decoration: none;
	font-size: 12px;
	font-size: 0.857142857rem;
	color: #5e5e5e;
}
.comments-area article header a {
	text-decoration: none;
	color: #5e5e5e;
}
.comments-area article header a:hover {
	color: #21759b;
}
.comments-area article header cite a {
	color: #444;
}
.comments-area article header cite a:hover {
	text-decoration: underline;
}
.comments-area article header h4 {
	position: absolute;
	top: 0;
	right: 0;
	padding: 6px 12px;
	padding: 0.428571429rem 0.857142857rem;
	font-size: 12px;
	font-size: 0.857142857rem;
	font-weight: normal;
	color: #fff;
	background-color: #0088d0;
	background-repeat: repeat-x;
	background-image: -moz-linear-gradient(top, #009cee, #0088d0);
	background-image: -ms-linear-gradient(top, #009cee, #0088d0);
	background-image: -webkit-linear-gradient(top, #009cee, #0088d0);
	background-image: -o-linear-gradient(top, #009cee, #0088d0);
	background-image: linear-gradient(top, #009cee, #0088d0);
	border-radius: 3px;
	border: 1px solid #007cbd;
}
.comments-area .bypostauthor cite span {
	position: absolute;
	margin-left: 5px;
	margin-left: 0.357142857rem;
	padding: 2px 5px;
	padding: 0.142857143rem 0.357142857rem;
	font-size: 10px;
	font-size: 0.714285714rem;
}
.comments-area .bypostauthor cite b {
	font-weight: bold;
}
a.comment-reply-link,
a.comment-edit-link {
	color: #686868;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
a.comment-reply-link:hover,
a.comment-edit-link:hover {
	color: #21759b;
}
.commentlist .pingback {
	line-height: 1.714285714;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}

/* Comment form */
#respond {
	margin-top: 48px;
	margin-top: 3.428571429rem;
}
#respond h3#reply-title {
	font-size: 16px;
	font-size: 1.142857143rem;
	line-height: 1.5;
}
#respond h3#reply-title #cancel-comment-reply-link {
	margin-left: 10px;
	margin-left: 0.714285714rem;
	font-weight: normal;
	font-size: 12px;
	font-size: 0.857142857rem;
}
#respond form {
	margin: 24px 0;
	margin: 1.714285714rem 0;
}
#respond form p {
	margin: 11px 0;
	margin: 0.785714286rem 0;
}
#respond form p.logged-in-as {
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
#respond form label {
	display: block;
	line-height: 1.714285714;
}
#respond form input[type="text"],
#respond form textarea {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 1.714285714;
	padding: 10px;
	padding: 0.714285714rem;
	width: 100%;
}
#respond form p.form-allowed-tags {
	margin: 0;
	font-size: 12px;
	font-size: 0.857142857rem;
	line-height: 2;
	color: #5e5e5e;
}
.required {
	color: red;
}


/* =Front page template
-------------------------------------------------------------- */

.entry-page-image {
	margin-bottom: 14px;
	margin-bottom: 1rem;
}
.template-front-page .site-content article {
	border: 0;
	margin-bottom: 0;
}
.template-front-page .widget-area {
	clear: both;
	float: none;
	width: auto;
	padding-top: 24px;
	padding-top: 1.714285714rem;
	border-top: 1px solid #ededed;
}
.template-front-page .widget-area .widget li {
	margin: 8px 0 0;
	margin: 0.571428571rem 0 0;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.714285714;
	list-style-type: square;
	list-style-position: inside;
}
.template-front-page .widget-area .widget li a {
	color: #757575;
}
.template-front-page .widget-area .widget li a:hover {
	color: #21759b;
}
.template-front-page .widget-area .widget_text img {
	float: left;
	margin: 8px 24px 8px 0;
	margin: 0.571428571rem 1.714285714rem 0.571428571rem 0;
}


/* =Widgets
-------------------------------------------------------------- */

.widget-area .widget ul ul {
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
.widget_rss li {
	margin: 12px 0;
	margin: 0.857142857rem 0;
}
.widget_recent_entries .post-date,
.widget_rss .rss-date {
	color: #aaa;
	font-size: 11px;
	font-size: 0.785714286rem;
	margin-left: 12px;
	margin-left: 0.857142857rem;
}
#wp-calendar {
	margin: 0;
	width: 100%;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
	color: #686868;
}
#wp-calendar th,
#wp-calendar td,
#wp-calendar caption {
	text-align: left;
}
#wp-calendar #next {
	padding-right: 24px;
	padding-right: 1.714285714rem;
	text-align: right;
}
.widget_search label {
	display: block;
	font-size: 13px;
	font-size: 0.928571429rem;
	line-height: 1.846153846;
}
.widget_twitter li {
	list-style-type: none;
}
.widget_twitter .timesince {
	display: block;
	text-align: right;
}

/* =Plugins
----------------------------------------------- */

img#wpstats {
	display: block;
	margin: 0 auto 24px;
	margin: 0 auto 1.714285714rem;
}


/* =Media queries
-------------------------------------------------------------- */

/* Does the same thing as <meta name="viewport" content="width=device-width">,
 * but in the future W3C standard way. -ms- prefix is required for IE10+ to
 * render responsive styling in Windows 8 "snapped" views; IE10+ does not honor
 * the meta tag. See http://core.trac.wordpress.org/ticket/25888.
 */
@-ms-viewport {
	width: device-width;
}
@viewport {
	width: device-width;
}


.author-avatar {
	float: left;
	margin-top: 8px;
	margin-top: 0.571428571rem;
}
.author-description {
	float: right;
	width: 80%;
}
.site {
	margin: 0 auto;
	max-width: 960px;
	max-width: 68.571428571rem;
	/*overflow: hidden;*/
}
.site-content {
	width: 73%;
	float: right;
	box-sizing: border-box;	
}


.single-news .site-content{
	width: 100%;
}

body.template-front-page .site-content,
body.attachment .site-content,
body.full-width .site-content {
	width: 100%;
}
.widget-area {
	float: right;
	width: 26.041666667%;
}
.site-header h1,
.site-header h2 {
	text-align: left;
}



.main-navigation ul.nav-menu,
.main-navigation div.nav-menu > ul {
	display: inline-block !important;
	text-align: left;
	width: 100%;
}
.main-navigation ul {
	margin: 0;
	text-indent: 0;
}
.main-navigation li a,
.main-navigation li {
	display: inline-block;
	text-decoration: none;
}
.main-navigation li a {
	border-bottom: 0;
	color: #aaaaaa;
	line-height:22px;
	text-transform: uppercase;
	/*white-space: nowrap;*/
	border-top: 5px solid #fff;
}
.main-navigation li a:hover,
.main-navigation li a:focus {
	color: #ff3333;
}
.main-navigation li {
	margin: 0 8px 0 0;
	position: relative;
}

.main-navigation li:after {
	content:'|';
	color:#aaaaaa;
	margin:0 0 0 12px;
}

.main-navigation li ul {
	margin: 0;
	padding: 0;
	position: absolute;
	top: 100%;
	z-index: 1;
	height: 1px;
	width: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
}
.main-navigation li ul ul {
	top: 0;
	left: 100%;
}
.main-navigation ul li:hover > ul,
.main-navigation ul li:focus > ul,
.main-navigation .focus > ul {
	border-left: 0;
	clip: inherit;
	overflow: inherit;
	height: inherit;
	width: inherit;
}
.main-navigation li ul li a {
	background: #efefef;
	border-bottom: 1px solid #ededed;
	display: block;
	font-size: 11px;
	font-size: 0.785714286rem;
	line-height: 2.181818182;
	padding: 8px 10px;
	padding: 0.571428571rem 0.714285714rem;
	width: 180px;
	width: 12.85714286rem;
	white-space: normal;
}
.main-navigation li ul li a:hover,
.main-navigation li ul li a:focus {
	background: #e3e3e3;
	color: #444;
}
.main-navigation .current-menu-item > a,
.main-navigation .current-menu-ancestor > a,
.main-navigation .current_page_item > a,
.main-navigation .current_page_ancestor > a {
	color: #000;
	font-weight: 300;
	border-top:5px solid #000;
}
.menu-toggle {
	display: none;
}
.entry-header .entry-title {
	font-size: 18px;
}
#respond form input[type="text"] {
	width: 46.333333333%;
}
#respond form textarea.blog-textarea {
	width: 79.666666667%;
}
.template-front-page .site-content,
.template-front-page article {
	overflow: hidden;
}
.template-front-page.has-post-thumbnail article {
	float: left;
	width: 47.916666667%;
}
.entry-page-image {
	float: right;
	margin-bottom: 0;
	width: 47.916666667%;
}
.template-front-page .widget-area .widget,
.template-front-page.two-sidebars .widget-area .front-widgets {
	float: left;
	width: 51.875%;
	margin-bottom: 24px;
	margin-bottom: 1.714285714rem;
}
.template-front-page .widget-area .widget:nth-child(odd) {
	clear: right;
}
.template-front-page .widget-area .widget:nth-child(even),
.template-front-page.two-sidebars .widget-area .front-widgets + .front-widgets {
	float: right;
	width: 39.0625%;
	margin: 0 0 24px;
	margin: 0 0 1.714285714rem;
}
.template-front-page.two-sidebars .widget,
.template-front-page.two-sidebars .widget:nth-child(even) {
	float: none;
	width: auto;
}
.commentlist .children {
	margin-left: 48px;
	margin-left: 3.428571429rem;
}


/* Minimum width of 960 pixels. */
@media screen and (min-width: 960px) {
	body {
		background-color: #fff;
	}
	body .site {
		padding: 0 40px;
		margin-top: 0px;
		margin-bottom: 0px;
	}
	body.custom-background-empty {
		background-color: #fff;
	}
	body.custom-background-empty .site,
	body.custom-background-white .site {
		padding: 0;
		margin-top: 0;
		margin-bottom: 0;
		box-shadow: none;
	}
	
	.footer-bottom-inner,
	.footer-menus,
	.latest-news{
		padding: 0 40px;
	}
	
	
	
}


/* =Print
----------------------------------------------- */

@media print {
	body {
		background: none !important;
		color: #000;
		font-size: 10pt;
	}
	footer a[rel=bookmark]:link:after,
	footer a[rel=bookmark]:visited:after {
		content: " [" attr(href) "] "; /* Show URLs */
	}
	a {
		text-decoration: none;
	}
	.entry-content img,
	.comment-content img,
	.author-avatar img,
	img.wp-post-image {
		border-radius: 0;
		box-shadow: none;
	}
	.site {
		clear: both !important;
		display: block !important;
		float: none !important;
		max-width: 100%;
		position: relative !important;
	}
	.site-header {
		margin-bottom: 72px;
		margin-bottom: 5.142857143rem;
		text-align: left;
	}
	.site-header h1 {
		font-size: 21pt;
		line-height: 1;
		text-align: left;
	}
	.site-header h2 {
		color: #000;
		font-size: 10pt;
		text-align: left;
	}
	.site-header h1 a,
	.site-header h2 a {
		color: #000;
	}
	.author-avatar,
	#colophon,
	#respond,
	.commentlist .comment-edit-link,
	.commentlist .reply,
	.entry-header .comments-link,
	.entry-meta .edit-link a,
	.page-link,
	.site-content nav,
	.widget-area,
	img.header-image,
	.main-navigation {
		display: none;
	}
	.wrapper {
		border-top: none;
		box-shadow: none;
	}
	.site-content {
		margin: 0;
		width: auto;
	}

	.entry-header .entry-title,
	.entry-title {
		font-size: 21pt;
	}
	footer.entry-meta,
	footer.entry-meta a {
		color: #444;
		font-size: 10pt;
	}
	.author-description {
		float: none;
		width: auto;
	}

	/* Comments */
	.commentlist > li.comment {
		background: none;
		position: relative;
		width: auto;
	}
	.commentlist .avatar {
		height: 39px;
		left: 2.2em;
		top: 2.2em;
		width: 39px;
	}
	.comments-area article header cite,
	.comments-area article header time {
		margin-left: 50px;
		margin-left: 3.57142857rem;
	}
}

/* =Modifications
----------------------------------------------- */

/*header*/
.header-right{
	width:27%;
	float:left;
	box-sizing:border-box;
	padding-right: 35px;
}

.header-right img{
	box-shadow: 4px 4px 7px 0px rgba(50, 50, 50, 0.5);
	-webkit-box-shadow: 4px 4px 7px 0px rgba(50, 50, 50, 0.5);
	-moz-box-shadow: 4px 4px 7px 0px rgba(50, 50, 50, 0.5);
	max-width:100%;
	width: 100px;
}

.header-right.has-service-message img{
	width: 70px;
}


.header-left{
	width:73%;
	float:left;
	box-sizing:border-box;
}

.site-header h1 img{
	max-width: 100%;
}

.header-left hgroup{
	position: relative;
	clear: both;
}

.menu-furs-side-menu-container,
.menu-susc-side-menu-container,
.menu-ijurr-side-menu-container{
	position: absolute;
	top: 0;
	right: 0;
	padding: 30px 0px 0 0px;
	text-transform: uppercase;
	font-size: 12px;
	color: #000;
	width: 29%;
	box-sizing: border-box;
	background: #fff;
	z-index: 1;
}

.menu-furs-side-menu-container a,
.menu-susc-side-menu-container a,
.menu-ijurr-side-menu-container a{
	color: #000;
	padding: 7px 0;
	text-decoration: none;
	display: block;
	border-style: dotted none none none;
	border-width: 1px;
	border-color: #000;
}

.menu-furs-side-menu-container .sub-menu a,
.menu-susc-side-menu-container .sub-menu a,
.menu-ijurr-side-menu-container .sub-menu a{
	border-color: #E6E6E6;
}

.menu-furs-side-menu-container a:hover,
.menu-susc-side-menu-container a:hover,
.menu-ijurr-side-menu-container a:hover{
	color: #ff3333;
}

.menu-furs-side-menu-container .sub-menu,
.menu-susc-side-menu-container .sub-menu,
.menu-ijurr-side-menu-container .sub-menu{
	display:none;
}

.more-button{
	text-transform: lowercase;
	opacity:0.5;
	transition:opacity 0.3s;
}

.more-button:hover{
	text-transform: lowercase;
	opacity:1;
}

.more-button a{
	padding-left: 16px;
	position: relative;
}

.more-button a:before{
	content: "";
	position: absolute;
	width: 14px;
	height: 14px;
	background: url(images/drop-down.png) no-repeat;
	background-position: 0 0;
	display: block;
	top: 8px;
	left: 0;
	transform-origin: 5px 5px;
	transition:all 0.3s;
}

.more-button a:hover{
	color:#000;
}

.more-button a.expanded:before{
	-webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

.left-column-content,
.recent-issues {
	width: 27%;
	float: left;
	box-sizing: border-box;
	padding-right: 35px;
	
}

.published-in-ijurr {
	width: 73%;
	float: right;
	box-sizing: border-box;
}



.published-in-ijurr .left {
	width: 71%;
	box-sizing: border-box;
	float: left;
	padding-right: 30px;
}

.published-in-ijurr .right {
	width: 29%;
	box-sizing: border-box;
	float: right;
}

.flex-cols .left-column-content h2,
.flex-cols .right-column-content h2,
.page-template-default .left-column-content h2,
.page-template-default .right-column-content h2,
.page-template-page-templatessummer-page-php .right-column-content h2,
.page-template-page-templatessummer-page-php .left-column-content h2,
.page-template-page-templatesauthors-page-php .right-column-content h2,
.page-template-page-templatesauthors-page-php .left-column-content h2, 
.page-template-page-templatesfurs-application-php .left-column-content h2,
.page-template-page-templatesfurs-application-php .right-column-content h2,
.page-template-page-templatesfurs-home-php .right-column-content h2,
.page-template-page-templatessusc-home-php .right-column-content h2,
.page-template-page-templatessusc-home-php .left-column-content h2,
.page-template-page-templateseditorial-page-php .right-column-content h2,
.page-template-page-templateseditorial-page-php .left-column-content h2,
.tax-issue .right-column-content h2,
.tax-issue .left-column-content h2,
.single .right-column-content h2,
.single .left-column-content h2,
.recent-issues h2,
.published-in-ijurr h2{
	background: url(images/dots.png) no-repeat 0px 2px;
	font-size: 12px;
	font-weight: normal;
	padding: 0 0 15px 24px;
	text-transform: uppercase;
	line-height: 12px;
}

.home .site-content {
	margin: 36px 0 0;
}

.recent-issues-content{
	max-width: 100%;
	width: 224px;
}

.recent-issues .issue-header{
	cursor:pointer;
	outline:none;
	position: relative;
}

.recent-issues h3{
	background: #000;
	color: #fff;
	font-weight: normal;
	text-transform: uppercase;
	font-size: 11px;
	padding: 2px 3px;
	max-width: 221px;
	display: block;
	box-sizing: border-box;
}

.recent-issues img{
	max-width: 100%;
	width: 221px;
}



.recent-issues .issue-body{
	padding: 7px 0 4px 0;
	border-bottom: 1px dotted #ff3333;
	margin-bottom: 10px;
	outline:none;
	max-width: 221px;
}

.recent-issues .issue-body p{
	font-size:11px;
	padding-bottom: 10px;
}

.recent-issues .issue-body ul{
	list-style:none;
	font-size:11px;
}

.recent-issues .issue-body ul li{
	position: relative;
	padding: 0 0px 0 11px;
	font-weight: bold;
	line-height: 13px;
}

.recent-issues .issue-body ul li:before{
	content: '.';
	font-size: 30px;
	position: absolute;
	top: -2px;
	left: 0;
	line-height: 0;
}

.recent-issues .issue-body ul li span{
	font-weight: normal;
	display: block;
}

.recent-issues .issue-body .issue-link a{
	text-decoration: none;
	color: #ff3333;
	float: right;
	font-size: 11px;
	background: url(images/red_arrow2.png) no-repeat 100% center;
	padding: 0 15px 0 0;
}

.recent-issues .issue-body .issue-link a:hover{
	text-decoration:underline;
}

.featured-article{
	border-top: 1px dotted #ff3333;
	padding: 8px 0 30px 0;
	height: 130px;
}

.featured-article:last-child{
	border-bottom: 1px dotted #ff3333;
}

.featured-article h3 a{
	text-decoration: none;
	color: #000;
	font-size: 18px;
	padding: 0 0 8px 0;
	display: inline-block;
}

.featured-article h3 a:hover{
	color: #ff3333;
}

.featured-article p{
	font-size: 12px;
	line-height: normal;
}

.featured-article .author{
	display:block;
	font-size: 12px;
	line-height: normal;
	color: #ff3333;
	font-weight:bold;
}

.footer-news-article .date,
.featured-article .date,
.featured-article .issue{
	display:block;
	font-size: 12px;
	line-height: normal;
	color:#999999;
	font-weight:normal;
}

.featured-article .view-article{
	text-indent:-9999px;
	display:block;
	background:url(images/red_arrows.png) no-repeat;
	background-position:0px 0px;
	width:18px;
	height:18px;
	margin: 6px 0 0 0;
}

.featured-article .view-article:hover{
	background-position:0px -18px;	
}

footer[role="contentinfo"] a.more-news,
.more-articles{
	text-decoration: none;
	color: #ff3333;
	font-size: 11px;
	background: url(images/red_arrow2.png) no-repeat 0 center;
	padding: 0 0 0 15px;
}

.more-articles:hover{
	color: #ff3333;
	text-decoration:underline;
}

.latest-news-header{
	border-bottom: 1px dotted #fff;
	clear:both;
}

.footer-bottom-inner,
.footer-menus,
.latest-news{
	margin: 0 auto;
	max-width: 960px;
	padding: 0 24px;
}

.latest-news h2{
	background: url(images/dots-white.png) no-repeat 0px 4px;
	font-size: 12px;
	font-weight: normal;
	padding: 0 0 6px 24px;
	text-transform: uppercase;
	color: #fff;
	line-height: normal;
	float: left;
}

.latest-news .more-news,
.latest-news .rss-news{
	float:right;	
}

footer[role="contentinfo"] a.more-news:hover{
	text-decoration:underline;
}

.latest-news .rss-news{
	text-indent: -9999px;
	display: block;
	background: url(images/rss.png) no-repeat;
	background-position: 0px 0px;
	width: 14px;
	height: 14px;
	margin: 0px 0 0 12px;
}

.footer-news-articles{
	padding: 15px 0 0 0;
}

.footer-news-article{
	float:left;
	width:25%;
	box-sizing:border-box;
	padding-right: 40px;
}

.footer-news-article:nth-child(1){
	padding: 0px 30px 0px 0px;
}

.footer-news-article:nth-child(2){
	padding: 0px 20px 0px 10px;
}

.footer-news-article:nth-child(3){
	padding: 0px 10px 0px 20px;
}

.footer-news-article:nth-child(4){
	padding: 0px 0px 0px 30px;
}

footer[role="contentinfo"] .footer-news-article a{
	color:#fff;
	text-decoration:none;
}

footer[role="contentinfo"] .footer-news-article a:hover{
	color:#ff3333;
}

.footer-news-article img{
	float:left;
	margin: 0 8px 0 0;
}

.footer-news-article h3{
	clear:none;
	font-weight:bold;
	font-size:12px;
}

.footer-menus .footer-menu{
	float: left;
	width: 25%;
	box-sizing: border-box;
}

.footer-menus .footer-menu:nth-child(1){
	padding: 0px 30px 0px 0px;
}

.footer-menus .footer-menu:nth-child(2){
	padding: 0px 20px 0px 10px;
}

.footer-menus .footer-menu:nth-child(3){
	padding: 0px 10px 0px 20px;
}

.footer-menus .footer-menu:nth-child(4){
	padding: 0px 0px 0px 30px;
}


.footer-menus .footer-menu a{
	padding: 2px 0;
	text-decoration: none;
	display: block;
	border-style: dotted none none none;
	border-width: 1px;
	border-color: #999;
	color:#999;
}

.footer-menus .footer-menu a:hover{
	color:#ff3333;
}

.footer-menus .footer-menu ul li:last-child a{
	border-style: dotted none dotted none;
}

#footer-links{
	background: #000;
	clear: both;
	font-size: 12px;
	line-height: normal;
	margin-top: 0px;
	padding: 24px 0 90px 0;
	border-top: 1px solid #999;
}

.footer-menus .footer-menu a.twitter-share{
	text-transform: uppercase;
	font-size: 10px;
	background: url(images/twitter.png) no-repeat;
	padding: 3px 0 3px 20px;
	background-position: 0px 3px;
}

.footer-menus .footer-menu a.linked-in-share{
	text-transform: uppercase;
	font-size: 10px;
	background:url(images/linkedin.png) no-repeat;
	padding: 3px 0 3px 20px;
	background-position: 0px 3px;
}

.footer-menus .footer-menu a.facebook-share{
	text-transform: uppercase;
	font-size: 10px;
	background:url(images/facebook.png) no-repeat;
	padding: 3px 0 3px 20px;
	background-position: 0px 3px;
	border-style: dotted none dotted none;
}

.footer-menus .footer-menu a.twitter-follow{
	text-transform: uppercase;
	font-size: 10px;
	background: url(images/twitter.png) no-repeat;
	padding: 3px 0 3px 20px;
	background-position: 0px 3px;
	margin-top: 23px;
	border-style: none !important;
}

#footer-bottom{
	background: #212121;
	padding: 6px 0 8px 0;
}


.footer-bottom-menu{
	float:right;
	padding-top: 5px;
}

.footer-bottom-menu li{
	display:inline-block;
}

.footer-bottom-menu li a{
	color:#999999;
	font-size:11px;
	text-decoration:none;
}

.footer-bottom-menu li a:hover{
	color:#ff3333;
}

.footer-bottom-menu li:after {
	content: '|';
	color: #999999;
	margin: 0 0 0 4px;
	font-size: 11px;
}

.footer-bottom-menu li:last-child:after {
	display:none;
}

.wiley-links{
	float:left;
}

.wiley-links li{
	display:inline-block;
	vertical-align: middle;
}

.wiley-logo-link{
	padding-right: 14px;
	display: inline-block;
	vertical-align: middle;
}

.wiley-links li{
	color: #999999;
	font-size: 11px;
	text-decoration: none;
	vertical-align: middle;
}



.wiley-links li:last-child{
	margin-top: 1px;
}

.wiley-links li.wiley-copyright:after {
	content: '|';
	color: #999999;
	margin: 0 0 0 4px;
	font-size: 11px;
}

.wiley-links li a.wiley-link{
	color: #ff3333;
	font-size: 11px;
	text-decoration: none;
	display: block;
}

.wiley-links li a.wiley-link:hover{
	text-decoration: underline;
}

.menu-furs-side-menu-container a.menu-mobile,
.menu-susc-side-menu-container a.menu-mobile,
.menu-ijurr-side-menu-container a.menu-mobile{
	display:none;
	text-align: right;
	border-style: none;
	font-size: 28px;
	line-height: 0;
	padding: 0 0 10px 0;
}

.side-menu{
	padding-left: 10px;
	margin-left: -10px;
	padding-right: 10px;
	margin-right: -10px;
	background: #fff;
}

.menu-hidden{
	display:none;
}


/*.side-menu .current-menu-ancestor > a,*/
.side-menu .current-menu-item > a{
	background:#f0f0f0;
}

.left-column-content{
	margin-top: 58px;
	line-height: 20px;
}

.left-column-content img{
	margin:0 0 24px 0;
}

.left-column-content h3{
	font-size:18px;
	font-weight:bold;
}

.left-column-content h4{
	font-weight:bold;
}

.left-column-content p{
	margin-bottom: 20px;
	font-size: 13px;
}

.back-to-top{
	background: url(images/red_arrow_up.png) no-repeat;
	float: right;
	padding-left: 11px;
	font-size: 11px;
	background-position: 0px 1px;
	clear: both;
	margin-top: 5px;
}

.right-column-content{
	width: 29%;
	box-sizing: border-box;
	float:right;
	margin-top: 33px;
}

.right-column-content h3{
	font-size: 18px;
	padding-bottom: 8px;
}

.right-column-content-inner a{
	color:#ff3333;
	font-weight:bold;
	font-size:12px;
}


.page-template-page-templatessummer-page-php #content,
.page-template-page-templatesauthors-page-php #content,
.page-template-page-templatesfurs-application-php #content,
.page-template-page-templatesfurs-home-php #content,
.page-template-page-templatessusc-home-php #content,
.page-template-page-templateseditorial-page-php #content,
.archive #content,
.single #content,
#content.has-right-content{
	float: left;
	width: 71%;
	padding-right: 30px;
	box-sizing: border-box;
}

.large-link{
	background: #ff3333;
	margin-bottom: 34px;
	border:1px solid #ff3333;
}

.large-link a{
	color: #fff;
	display: block;
	padding: 6px 10px 8px 10px;
	font-size: 16px;
	line-height: normal;
	vertical-align: top;
}


.large-link a:after{
	background: url(images/white_arrows.png) no-repeat 0px 0px;
	content: '';
	display: inline-block;
	width: 18px;
	height: 18px;
	margin: 0 0 0 0;
	margin-left: 6px;
}

.large-link:hover{
	background: #fff;
}

.large-link:hover a{
	color: #ff3333;
	text-decoration:none;
}

.large-link:hover a:after{
	background: url(images/white_arrows.png) no-repeat 0px -18px;
}

.breadcrumb-trail{
	float:right;
	font-size:11px;
	padding-bottom: 12px;
}

.breadcrumb-trail .sep{
	background:url(images/red_arrow3.png) no-repeat;
	display:inline-block;
	width:5px;
	height:9px;
	margin: 0px 1px 0 3px;
}

.breadcrumb-trail span:nth-last-of-type(2) {
	background:url(images/black_arrow.png) no-repeat;
}

.flex-cols .left-column-content.has-left-title,
.page-template-default .left-column-content.has-left-title,
.page-template-page-templatessummer-page-php .left-column-content,
.page-template-page-templatesauthors-page-php .left-column-content,
.page-template-page-templatesfurs-application-php .left-column-content,
.page-template-page-templatessusc-home-php .left-column-content, 
.single .left-column-content{
	margin-top: 24px;
}

.rss-articles{
	text-indent:-9999px;
	background:url(images/rss-large.png) no-repeat;
	display:inline-block;
	width:19px;
	height:19px;
	float: right;
	padding-bottom: 15px;
}

.flex-cols .left-column-content h2,
.flex-cols .right-column-content h2,
.page-template-default .left-column-content h2,
.page-template-default .right-column-content h2,
.page-template-page-templatessummer-page-php .right-column-content h2,
.page-template-page-templatessummer-page-php .left-column-content h2,
.page-template-page-templatesauthors-page-php .right-column-content h2,
.page-template-page-templatesauthors-page-php .left-column-content h2,
.page-template-page-templatesfurs-application-php .left-column-content h2,
.page-template-page-templatesfurs-application-php .right-column-content h2,
.page-template-page-templatesfurs-home-php .right-column-content h2,
.page-template-page-templatessusc-home-php .left-column-content h2,
.page-template-page-templateseditorial-page-php .right-column-content h2,
.tax-issue .right-column-content h2,
.single .right-column-content h2,
.single .left-column-content h2{
	clear:none;
	float: left;
	margin-top: 7px;
}

.flex-cols .right-column-content h2,
.page-template-default .right-column-content h2,
.page-template-page-templatessummer-page-php .right-column-content h2,
.page-template-page-templatesauthors-page-php .right-column-content h2,
.page-template-page-templatesfurs-application-php .right-column-content h2,
.page-template-page-templatesfurs-home-php .right-column-content h2,
.page-template-page-templateseditorial-page-php .right-column-content h2,
.tax-issue .right-column-content h2,
.single .right-column-content h2{
	margin-bottom: 5px;
	padding-bottom: 15px;
	border-bottom: 1px dotted #ff3333;
	width: 100%;
	box-sizing: border-box;
}


.flex-cols .right-column-content.has-right-title,
.page-template-default .right-column-content.has-right-title,
.page-template-page-templatessummer-page-php .right-column-content,
.page-template-page-templatesauthors-page-php .right-column-content,
.page-template-page-templatesfurs-application-php .right-column-content,
.page-template-page-templatesfurs-home-php .right-column-content,
.page-template-page-templateseditorial-page-php .right-column-content,
.tax-issue .right-column-content,
.single .right-column-content{
	margin-top: 0px;
}

.single .right-column-content p{
	font-size: 12px;
	padding-bottom: 24px;
}

.single .right-column-content h3 {
	font-size: 12px;
	padding-bottom: 4px;
}

.page-template-page-templatessusc-home-php .left-column-content h2,
.single .left-column-content h2{
	padding-bottom:3px;
}

.recent-articles{
	clear: both;
	border-top: 1px dotted #ff3333;
}

.single .left-column-content h3 {
	font-size: 12px;
	font-weight: normal;
}

.single .left-column-content .date {
	color:#666666;
	font-size: 12px;
	font-weight: normal;
	line-height: normal;
}

.recent-article{
	border-bottom: 1px dotted #ff3333;
	padding: 4px 0 9px 0;
}

.news-date{
	color:#666666;
	font-size:12px;
	line-height:normal;
	margin-top: 8px;
}

.single .site-content article {
	padding-bottom: 40px;
}

.search .entry-header .entry-title,
.archive .entry-header .entry-title {
	clear: none;
	font-size: 12px;
	margin: 0;
}

.archive .entry-header img{
	float:left;
	clear: both;
	margin-right: 13px;
}

.search .site-content article,
.archive .site-content article {
	margin-bottom: 13px;
	padding-bottom: 13px;
}

.archive .news-date {
	margin-top: 0px;
}

.search .site-content .articles,
.archive .site-content .articles{
	clear:both;
}

.search .site-content .articles article:first-child,
.archive .site-content .articles article:first-child{
	border-top: 1px dotted #ff3333;
	padding-top: 13px;
}

.search .site-content .articles article:last-child,
.archive .site-content .articles article:last-child{
	margin-bottom: 7px;
	
}

.search .breadcrumb-trail,
.page-template-page-templateslectures-page-php .breadcrumb-trail,
.page-template-page-templateseditorial-page-php .breadcrumb-trail,
.archive .breadcrumb-trail {
	padding-bottom: 6px;
}

.search h1.page-title,
.page-template-page-templatesclassic-page-php h1.page-title,
.page-template-page-templatesearly-page-php h1.page-title,
.page-template-page-templateslectures-page-php h1.page-title,
.page-template-page-templatessusc-home-php h1.page-title,
.archive-title{
	float:left;
}

.pagination{
	float: right;
}

.pagination .page-numbers{
	display: inline-block;
	width: 18px;
	height: 18px;
	background: #ff3333;
	color: #fff;
	border-radius: 100%;
	font-size: 11px;
	margin: 0;
	padding: 3px 0 0 0;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid #ff3333;
	margin: 0 4px 4px 4px;
}

.pagination .page-numbers.current{
	background: #000;
	border:1px solid #000;
}

.pagination a.page-numbers:hover{
	background: #fff;
	color: #ff3333;
	text-decoration:none;
}

.pagination .page-numbers.dots{
	background:none;
	color:#000;
	border:none;
	margin:0;
}

.pagination .page-numbers:last-child{
	margin: 0 0px 4px 4px;
}

.archive-header{
	/*padding-bottom: 8px;*/
}

.divider{
	border-bottom: 1px dotted #ff3333;
	clear: both;
}

.archive .site-content .divider{
	padding: 4px 0 0px 0;
	/*margin: 0px 0 6px 0;*/
}

.page-template-page-templatessymposia-page-php .left-column-content a.rss-news-lhs,
.page-template-page-templatesdebates-page-php .left-column-content a.rss-news-lhs,
.archive .left-column-content a.rss-news-lhs{
	display: block;
	margin: 0 0 0 0;
	font-size: 12px;
}

.page-template-page-templatessymposia-page-php .left-column-content a.rss-news-lhs:after,
.page-template-page-templatesdebates-page-php .left-column-content a.rss-news-lhs:after,
.archive .left-column-content a.rss-news-lhs:after{
	content: '';
	display: inline-block;
	background: url(images/red_arrows.png) no-repeat;
	background-position: 0px 0px;
	width: 18px;
	height: 18px;
	margin: 0px 0 0 6px;
	vertical-align: middle;
}

.archive .left-column-content {
	margin-top: 52px;
}

.archive .left-column-content img {
	margin: 0 0 0px 0;
}

.page-template-page-templatessymposia-page-php .left-column-content a.rss-news-lhs:hover:after,
.page-template-page-templatesdebates-page-php .left-column-content a.rss-news-lhs:hover:after,
.archive .left-column-content a:hover:after{
	background-position: 0px -18px;
}

.page-template-page-templatesfurs-application-php .latest-news,
.page-template-page-templatesfurs-home-php .latest-news,
.single-news .latest-news,
.post-type-archive-news .latest-news{
	display:none;
}

.page-template-page-templatesfurs-application-php footer[role="contentinfo"],
.page-template-page-templatesfurs-home-php footer[role="contentinfo"], 
.single-news footer[role="contentinfo"], 
.post-type-archive-news footer[role="contentinfo"] {
	padding: 0px 0 0px 0;
}

.article-type{
	border-top: 1px dotted #ff3333;
	padding: 8px 0 14px 0;
}

.articles h2{
	margin: 0 0 18px 0;
}

.articles h3 a{ 
	font-size: 12px;
	font-weight: bold;
	line-height: normal;
	padding-bottom: 5px;
	display: block;
}

p.article-author{
	font-weight:bold;
	font-size:12px;
	color:#000;
	padding-bottom: 5px;
}

p.article-date-doi-page{
	font-weight:normal;
	font-size:12px;
	color:#666;
	padding: 0 0 20px 0;
}

.article-type:last-child{
	border-bottom: 1px dotted #ff3333;
	margin-bottom: 4px;
}

.single-article .left-column-content img, 
.archive.tax-issue .left-column-content img {
	margin: 0 0 0px 0;
	border:1px solid #b3b3b3;
	max-width:100%;
}


.page-template-page-templateseditorial-page-php .left-column-content, 
.archive.tax-issue .left-column-content {
	margin-top: 31px;
}

.single-article .left-column-content h2, 
.tax-issue .left-column-content h2{
	padding: 0 0 15px 24px;
}

.side-news-article,
.same-volume-issue{
	border-bottom: 1px dotted #ff3333;
	padding: 10px 0 10px 0;
}

.side-news-article a,
.same-volume-issue a{
	font-size:12px;
}

.side-news-article p.issue-month,
.same-volume-issue p.issue-month{
	font-size:12px;
	color:#666;
}

.side-news-article:first-child,
.same-volume-issue:first-child{
	clear: both;
	padding: 5px 0 10px 0;
}

.archive-title{
	color:#000;
}

.archive-title .current-issue-title{
	color:#ff3333;
}

.archive-title .issue-month{
	font-weight:normal;
}

.single-article .page-title{
	color:#000;
}

.single-article .page-title .current-issue-title{
	color:#ff3333;
}

.abstract-title{
	font-size: 12px;
	padding: 26px 0 4px 0;
}


.back-issue{
	display: block;
	margin: 10px 0 0 0;
	font-size: 12px;
}

.back-issue:before{
	content: '';
	display: inline-block;
	background: url(images/red_arrows_back.png) no-repeat;
	background-position: 0px 0px;
	width: 18px;
	height: 18px;
	margin: 0px 6px 0 0;
	vertical-align: middle;
}

.back-issue:hover:before{
	background-position: 0px -18px;
}

.link_pdf{
	background: url(images/pdf.png) no-repeat;
	padding-left: 20px;
	padding-bottom: 3px;
	display: inline-block;
}

.link_html{
	background: url(images/html.png) no-repeat;
	padding-left: 20px;
	padding-bottom: 3px;
	display: inline-block;
}

.link_refs{
	background: url(images/references.png) no-repeat;
	padding-left: 20px;
	padding-bottom: 3px;
	display: inline-block;
}

.single.single-article .right-column-content p {
	line-height: normal;
}

.single-article .left-column-content img{
	display:block;
	clear: both;
}

.eb-sections{
	border-top: 1px dotted #ff3333;
	clear:both;
}

.eb-section{
	border-bottom: 1px dotted #ff3333;
	padding: 6px 0 8px 0;
}

.eb-section h3{
	padding-bottom: 14px;
	font-size: 18px;
	line-height: normal;
}

.eb-section p{
	padding-bottom:20px;
	font-size: 12px;
	line-height: normal;
}

.page-template-page-templateseditorial-page-php .right-column-content p{
	font-size: 12px;
	line-height: normal;
	padding-bottom: 20px;
}

.page-template-page-templateseditorial-page-php .right-column-content h3{
	font-size: 12px;
	line-height: normal;
	font-weight:bold;
	padding-bottom: 0px;
}

.page-template-page-templateseditorial-page-php .right-column-content .author,
.page-template-page-templateseditorial-page-php .right-column-content .chosen-by{
	display: block;
}

.page-template-page-templateseditorial-page-php .right-column-content .chosen-by{
	font-style:italic;
}

.footer-menu .current-menu-item a{
	color:#fff;
}

.editor-section{
	max-width: 100%;
	width: 221px;
}

.page-template-page-templateseditorial-page-php .left-column-content img {
	margin: 0;
	max-width: 100%;
	width: 221px;
	float: left;
}

.page-template-page-templateseditorial-page-php .left-column-content p{
	background: #000;
	color: #fff;
	text-transform: uppercase;
	font-size: 12px;
	padding: 3px 5px 2px 5px;
	line-height: normal;
	display: inline-block;
	max-width: 100%;
	width: 221px;
	box-sizing: border-box;
}

.page-template-page-templateseditorial-page-php .left-column-content p a{
	width:14px;
	height:10px;
	background:url(images/mail.png) no-repeat;
	background-position:0px 0px;
	display:inline-block;
	float:right;
	text-indent:-9999px;
	margin: 2px 0 0 5px;
	transition: background 0s;
}

.page-template-page-templateseditorial-page-php .left-column-content p a:hover{
	background-position:0px -10px;
}

a.eds-choice{
	text-decoration: none;
	color: #ff3333;
	float: right;
	font-size: 11px;
	background: url(images/red_arrow2.png) no-repeat 0 center;
	padding: 0 0 0 15px;
	margin: 5px 0 0 0;
}

a.eds-choice:hover{
	text-decoration: underline;
}

.page-template-page-templatessusc-home-php .left-column-content p{
	margin-bottom: 16px;
	font-size: 12px;
}

.page-template-page-templatessusc-home-php .left-column-content h3{
	margin-bottom: 16px;
	font-size: 18px;
}

.susc-home-content {
	clear: both;
	border-top: 1px dotted #ff3333;
	padding-top: 12px;
}

.latest-publication{
}


.latest-publication img{
	max-width:100%;
	padding-bottom: 14px;
}

.page-template-page-templatessusc-home-php .right-column-content{
	margin-top: 7px;
	border-bottom: 1px dotted #ff3333;
	padding-bottom: 6px;
}

.right-column-content .latest-publication h3 {
	font-size: 12px;
	padding-bottom: 16px;
}

.right-column-content .latest-publication p {
	font-size: 12px;
	padding-bottom: 16px;
}

.right-column-content .latest-publication p .book-type{
	font-weight:bold;
}

a.more-book-details {
	text-decoration: none;
	color: #ff3333;
	float: right;
	font-size: 11px;
	background: url(images/red_arrow2.png) no-repeat 100% center;
	padding: 0 15px 0 0;
}

a.more-book-details:hover {
	text-decoration:underline;
}

.book-item{
	clear: both;
	border-bottom: 1px dotted #ff3333;
	padding: 13px 0 4px 0;
	position:relative;
}

.book-item:first-child{
	padding: 14px 0 4px 0;
	line-height: 15px;
}

.book-item:last-child{
	margin:0 0 6px 0;
}

.book-item img{
	float:left;
	width:120px;
	margin:0 12px 0px 0;
}

.book-item h3{
	clear:none;
	font-size:12px;
	color:#ff3333;
	overflow: hidden;
}

.book-item p{
	font-size:12px;
	overflow: hidden;
	padding-bottom: 12px;
}

.book-item .book-date{
	color:#666;
}

.book-item .book-type{
	color:#666;
	font-weight:bold;
}

.book-item a.more-book-details{
	/*
	position: absolute;
	bottom: 6px;
	right: 0;
	*/
	
	position: relative;
	float:right;
	clear:both;
}

.book-item-content{
	overflow:hidden;
}

.page-template-page-templatessusc-home-php .site-content .divider {
	padding: 2px 0 0px 0;
}

.book-type-selector ul li{
	display: inline-block;
	padding: 0 18px 0 0;
	float: left;
	font-size: 12px;
	font-weight: bold;
}

.book-type-selector{
	border-bottom: 1px dotted #ff3333;
	padding:0 0 5px 0;
}

ol {
    counter-reset:li; /* Initiate a counter */
}

ol > li:before {
	content: counter(li) ".";
	counter-increment: li;
	width: 15px;
	display: inline-block;
	font-weight: bold;
}

.page-template-page-templatesfurs-home-php .left-column-content img {
	margin: 0 0 12px 0;
}

.page-template-page-templatesfurs-home-php .left-column-content p{
	font-size:12px;
	line-height:normal;
}

.wpcf7-form label{
	display: inline-block;
	width: 172px;
	padding: 4px 0 4px 0;
	vertical-align: top;
}

.wpcf7-form input[type="date"],
.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"]{
	border: 1px solid #999999;
	border-radius: 0px;
	font-family: inherit;
	padding: 3px 4px;
	font-size:12px;
	width:285px;
	max-width: 100%;
	box-sizing: border-box;
}

.wpcf7-form input[type="file"]{
	width:285px;
	max-width: 100%;
}

.entry-content .wpcf7-form p{
	margin: 0 0 14px 0;
}

div.wpcf7 {
	margin: 44px 0 62px 0;
}

div.wpcf7-validation-errors {
	border: none;
	background: #f00;
	color: #fff;
	margin: 24px 0 16px 0;
	padding: 5px 10px;
	line-height: normal;
}

div.wpcf7-mail-sent-ok {
	border: none;
	background: #398f14;
	color: #fff;
	margin: 24px 0 16px 0;
	padding: 5px 10px;
	line-height: normal;
}


/*
.wpcf7-form input[type="file"]{
	background: #999;
	color: #fff;
	border: none;
	-webkit-appearance: none;
	padding: 4px 6px;
	font-family: Montserrat, Helvetica, Arial, sans-serif;
	font-size: 12px;
}*/

.wpcf7-captchac{
	border: 1px solid #999999;
	padding: 10px;
}

.events-login input[type="submit"],
.events-login input[type="button"],
a.red-arrow,
.wpcf7-form .form-cancel,
.wpcf7-form input[type="submit"]{	
	float: right;
	background: none;
	border: none;
	box-shadow: none;
	color: #ff3333;
	padding: 0;
	margin: 0;
	outline:none;

	display: inline-block;
	background: url(images/red_arrows.png) no-repeat;
	background-position: 100% 0px;
	height: 18px;
	margin: 6px 0px 0 0;
	padding: 0 22px 0 0;

}

.events-login input[type="button"]:hover,
a.red-arrow:hover,
.wpcf7-form .form-cancel:hover,
.wpcf7-form input[type="submit"]:hover{	
	background-position: 100% -18px;
	text-decoration:none;
}

.wpcf7-form .form-cancel{	
	background-image: url(images/red_cross.png);
	float: left;
}

a.red-arrow{
	float:none;
}

.page-template-page-templatesfurs-application-php .entry-content h2{
	line-height: normal;
	margin: 0px 0 8px 0;
}

.page-template-page-templatesfurs-application-php .left-column-content-inner{
	border-top: 1px dotted #ff3333;
	clear:both;
	padding:8px 0 0 0;
}

.page-template-page-templatesfurs-application-php .left-column-content-inner h3,
.page-template-page-templatesfurs-application-php .left-column-content-inner p{
	font-size:12px;
}

.editors-comment{
	font-size:12px;
	border:1px solid #000;
	padding:10px;
	background: #f0f0f0;
}

.editors-comment h3{
	color: #ff3333;
	padding-bottom:10px;
	font-size: 14px;
}

.editors-comment p{
	padding-bottom:10px;
}

.editors-chosen{
	font-style:italic;
}

.authors-information{
	clear: both;
	border-top: 1px dotted #ff3333;
	font-size:12px;
	padding-top: 16px;
}

.authors-information p{
	font-size:12px;
	line-height: normal;
}

.authors-information h3{
	font-size:12px;
	line-height: normal;
}

.authors-information ul{
	list-style: none;
	font-size:12px;
	margin-bottom: 20px;
	line-height: normal;
}

.authors-information ul li {
	padding: 0 0px 0 11px;
	position: relative;
	line-height: normal;
}

.authors-information ul li:before {
	content: '.';
	font-size: 30px;
	position: absolute;
	top: 0px;
	left: 0;
	line-height: 0;
}

.page-template-page-templatesauthors-page-php .entry-content h2{
	line-height: normal;
	padding: 8px 0 0 0;
	margin: 0px 0 10px 0;
}



.authors-events table{
 	border-spacing: 4px;
    border-collapse: separate;
	font-size:12px;
}

.authors-events th{
	background: #ff3333;
	color: #fff;
	padding: 4px 6px;
	font-size: 14px;
}

.authors-events td{
	background: #eeeeee;
	color: #000;
	padding: 8px 6px;
}

.authors-events td:first-child{
	text-align:right;
}

.page-template-page-templatesauthors-page-php .site-content article {
	border-bottom: none;
}

.event-content{
	clear: both;
	border-bottom: 1px dotted #ff3333;
	padding-bottom: 40px;
}

.page-template-page-templatesauthors-page-php .right-column-content{
	font-size:12px;
}

.page-template-page-templatesauthors-page-php .right-column-content td{
	display:block;
	width:100%;
}

.events-login{
	padding-top: 16px;
	clear: both;
	padding-bottom: 15px;
	border-bottom: 1px dotted #ff3333;
	margin-bottom: 20px;
}

.events-login table{
	width:100%;
}

.events-login p {
	margin-bottom: 20px;
}

.events-login input[type="text"],
.events-login input[type="password"]{
	border: 1px solid #999999;
	border-radius: 0px;
	font-family: inherit;
	padding: 3px 4px;
	font-size: 12px;
	width: 100%;
	max-width: 300px;
	box-sizing: border-box;
	margin-bottom: 16px;
}

.events-login strong {
	margin-bottom: 7px;
	display: inline-block;
}

.authors-events p{
	margin: 0 0 18px;
	line-height: normal;
	font-size: 12px;
}

.page-template-page-templatessummer-page-php .left-column-content p{
	font-size:12px;
	line-height:normal;
}

.page-template-page-templatessummer-page-php .left-column-content img {
	margin: 0 0 0px 0;
}

.about-the-school-content{
	clear: both;
	border-top: 1px dotted #ff3333;
	font-size: 12px;
	padding-top: 16px;
}

.summer-event{
	margin-bottom: 20px;
	padding-bottom: 4px;
	border-bottom: 1px dotted #ff3333;
}

.summer-event h2{
	font-size: 18px;
	padding-bottom: 16px;
}

.summer-event img{
	padding-bottom: 10px;
	max-width: 100%;
}

.summer-event p{
	padding-bottom: 10px;
	font-size: 12px;
}

.summer-event:last-child {
	margin-bottom: 0px;
}

.summer-further-info-content {
	clear: both;
	font-size: 12px;
	padding-top: 16px;
}

.summer-further-info-content ul {
	list-style: none;
	font-size: 12px;
	margin-bottom: 20px;
	line-height: normal;
}

.summer-further-info-content ul li {
	padding: 0 0px 0 11px;
	position: relative;
	line-height: normal;
}

.summer-further-info-content ul li:before {
	content: '.';
	font-size: 30px;
	position: absolute;
	top: 0px;
	left: 0;
	line-height: 0;
	color: #ff3333;
}

.all-issues h3{
	font-size: 18px;
	padding-bottom: 10px;
	font-weight: bold;
	outline: none;
	cursor: pointer;
}

.all-issues ul{
	font-size: 12px;
	padding-bottom: 10px;
}

.all-issues ul li{
	font-weight:bold;
	padding: 2px 0;
}


.flex-cols .right-column-content-inner,
.page-template-default .right-column-content-inner{
	clear: both;
	padding-top: 12px;
	font-size: 12px;
	line-height:normal;
}


.flex-cols .entry-content,
.page-template-default .entry-content{
	clear: both;
}

.flex-cols .left-column-content-inner,
.page-template-default .left-column-content-inner{
	clear: both;
	font-size: 12px;
	line-height:normal;
}

.flex-cols .left-column-content.has-left-title .left-column-content-inner,
.page-template-default .left-column-content.has-left-title .left-column-content-inner{
	border-top: 1px dotted #ff3333;
	padding-top:12px;
}

.flex-cols .left-column-content-inner p,
.page-template-default .left-column-content-inner p{
	font-size: 12px;
	line-height:normal;
}

.flex-cols .right-column-content p,
.page-template-default .right-column-content p {
	margin-bottom: 20px;
}

.flex-cols .right-column-content ul,
.flex-cols .left-column-content ul,
.page-template-default .right-column-content ul,
.page-template-default .left-column-content ul {
	list-style: none;
}


.flex-cols .right-column-content ul li,
.flex-cols .left-column-content ul li,
.page-template-default .right-column-content ul li,
.page-template-default .left-column-content ul li{
	position: relative;
	padding: 0 0px 0 11px;
}

.flex-cols .right-column-content ul li:before,
.flex-cols .left-column-content ul li:before,
.page-template-default .right-column-content ul li:before,
.page-template-default .left-column-content ul li:before {
	content: '.';
	font-size: 30px;
	position: absolute;
	top: -1px;
	left: 0;
	line-height: 0;
}

.flex-cols .left-column-content-inner h1,
.flex-cols .left-column-content-inner h2,
.flex-cols .left-column-content-inner h3,
.flex-cols .right-column-content-inner h1,
.flex-cols .right-column-content-inner h2,
.flex-cols .right-column-content-inner h3,
.page-template-default .left-column-content-inner h1,
.page-template-default .left-column-content-inner h2,
.page-template-default .left-column-content-inner h3,
.page-template-default .right-column-content-inner h1,
.page-template-default .right-column-content-inner h2,
.page-template-default .right-column-content-inner h3{
	font-size:18px;
	font-weight:bold;
	float:none;
	margin-top:0;
	background: none;
	padding: 0 0 4px 0;
	line-height: normal;
	text-transform:none;
	margin-bottom:0;
	border-bottom: none;
	width: auto;
}



.flex-cols .left-column-content-inner h4,
.flex-cols .left-column-content-inner h5,
.flex-cols .left-column-content-inner h6,
.flex-cols .right-column-content-inner h4,
.flex-cols .right-column-content-inner h5,
.flex-cols .right-column-content-inner h6,
.page-template-default .left-column-content-inner h4,
.page-template-default .left-column-content-inner h5,
.page-template-default .left-column-content-inner h6,
.page-template-default .right-column-content-inner h4,
.page-template-default .right-column-content-inner h5,
.page-template-default .right-column-content-inner h6{
	font-size:12px;
	font-weight:bold;
	margin-top:0;
	padding: 0 0 4px 0;
	line-height: normal;
}


.flex-cols .site-content, 
.page-template-default .site-content {
	width: 100%;
	float: right;
	box-sizing: border-box;
}

.flex-cols .site-content.has-left-content,
.page-template-default .site-content.has-left-content{
	width: 73%;
}


.single-news .site-content .right-column-content,
.flex-cols .site-content .right-column-content,
.page-template-default .site-content .right-column-content {
	width: 21%;
}


.flex-cols .site-content.has-left-content .right-column-content,
.page-template-default .site-content.has-left-content .right-column-content {
	width: 29%;
}


.single-news #content.has-right-content,
.flex-cols #content.has-right-content,
.page-template-default #content.has-right-content {
	float: left;
	width: 79%;
	padding-right: 30px;
	box-sizing: border-box;
}


.flex-cols .has-left-content #content.has-right-content,
.page-template-default .has-left-content #content.has-right-content {
	width: 71%;
}

.choice{
	border-bottom: 1px dotted #ff3333;
	margin-bottom: 5px;
	padding-bottom: 12px;
	padding-top: 10px;
}

.choice:first-child{
	padding-top: 0px;
}

.early-view h2,
.choice h2{
	font-size:18px;
}

.choice p{
	font-size:12px;
	padding-bottom:12px;
}

.choice p.author{
	font-weight:bold;
	color:#00;
}

.page-template-page-templateslectures-page-php .lecture{
	clear:both;
	border-top: 1px dotted #ff3333;
	padding-top: 13px;
	padding-bottom: 13px;
}

.page-template-page-templateslectures-page-php .lecture h2{
	clear:none;
	font-size:12px;
	font-weight:bold;
}

.page-template-page-templateslectures-page-php .lecture img{
	float:left;
	margin:0 13px 0px 0;
}

.page-template-page-templateslectures-page-php .lecture .publish-date {
	color: #666666;
	font-size: 12px;
	line-height: normal;
}

.page-template-page-templateslectures-page-php .lecture:last-child{
	border-bottom: 1px dotted #ff3333;
}


.page-template-page-templateslectures-page-php .pagination.bottom{
	padding: 7px 0 3px 0;
}

.search .pagination.bottom{
	padding: 0px 0 3px 0;
}

.single-lecture h2.entry-title{
	padding-top: 24px;
}

.early-view{
	border-bottom: 1px dotted #ff3333;
	margin-bottom: 5px;
	padding-bottom: 12px;
	padding-top: 10px;
}

.all-symposia{
	font-size:12px;
	border-bottom: 1px dotted #ff3333;
	padding-bottom: 14px;
}

.all-symposia ul li{
	padding-bottom:10px;
}

.flex-cols .right-column-content-inner .current-debates h3{
	padding:0;
	margin:0
}

.flex-cols .right-column-content .current-debates p{
	padding:0;
	margin:0;
	color:#666;
	font-weight:normal;
}

.page-template-page-templatessymposia-page-php.flex-cols .right-column-content-inner,
.page-template-page-templatesdebates-page-php.flex-cols .right-column-content-inner{
	padding-top:0;
}

.current-debates{
	border-bottom: 1px dotted #ff3333;
	padding: 6px 0 9px 0;
	line-height:20px;
}

.right-column-content-inner .current-debates a{
	font-weight:normal;
}

.page-template-page-templatessymposia-page-php.flex-cols .right-column-content h2,
.page-template-page-templatesdebates-page-php.flex-cols .right-column-content h2{
	margin-bottom: 0px;
}

.search .entry-summary p{
	margin: 0 0 0px;
}

.error404  .site-content, 
.search .site-content {
	width: 100%;
}


.back_to_ijurr{
	position:relative;
}


.back_to_ijurr:before{
	content: '';
	display: inline-block;
	background: url(images/red_arrows_back.png) no-repeat;
	background-position: 0px 0px;
	width: 18px;
	height: 18px;
	margin: 0px 6px 0 0;
	vertical-align: middle;
	position: absolute;
	bottom: 12px;
	left: 8px;
}

.back_to_ijurr:hover:before{
	background-position: 0px -18px;
}

.up_down{
	background: url(images/white_arrows_up_down.png) no-repeat 0px -20px;
	content: '';
	display: inline-block;
	width: 22px;
	height: 20px;
	margin: 0 0 0 0;
	position: absolute;
	bottom: 10px;
	right: 10px;
}

.ui-state-active .up_down{
	background: url(images/white_arrows_up_down.png) no-repeat 0px 0px;
}

.service-message{
	padding: 5px;
	border: 1px solid #ff3333;
	margin-top: 12px;
	font-size: 10px;
}













/* =Responsive Stuff
----------------------------------------------- */
@media screen and (max-width: 1056px) {
	/*
	.book-item a.more-book-details{
		position: relative;
		float:right;
		bottom: auto;
		right: auto;
	}
	*/
	
	.featured-article{
		height: auto;
	}
}

@media screen and (max-width: 800px) {
	
	.authors-events th {
		display: none;
	}
	
	.authors-events td {
		display: block;
	}
	
	.authors-events td:first-child {
		text-align: left;
	}
}

@media screen and (max-width: 767px) {
	.header-right {
		display:none;
	}
	
	.header-left {
		width: 100%;
		width: calc(100% - 45px);
	}
	
	.mini-search{
		display:none;
	}
	
	.menu-hidden .mini-search{
		display:block;
	}
	
	.menu-furs-side-menu-container a.menu-mobile,
	.menu-susc-side-menu-container a.menu-mobile,
	.menu-ijurr-side-menu-container a.menu-mobile{
		display:block;
	}
	
	.menu-furs-side-menu-container,
	.menu-susc-side-menu-container,
	.menu-ijurr-side-menu-container {
		padding: 0px 0px 0 0px;
		top: 20px;
		right: 20px;
	}
	
	.menu-furs-side-menu-container .sub-menu,
	.menu-susc-side-menu-container .sub-menu,
	.menu-ijurr-side-menu-container .sub-menu {
		display: block;
	}
	
	.more-button{
		border-style: dotted none none none;
		border-width: 1px;
		border-color: #000;
	}
	
	.more-button a {
		display: none;
	}
	
	.side-menu{
		display:none;
	}
	
	.menu-furs-side-menu-container,
	.furs-susc-side-menu-container,
	.menu-susc-side-menu-container,
	.menu-ijurr-side-menu-container {
		width: auto;
	}
	
	.site-header h1 img {
		width: 60%;
	}
	
	.site-header h1 {
		padding: 16px 0 0 0;
		width: 100%;
	}
	
	.menu-hidden{
		display:block;
	}
	
	.menu-hidden .mini-search{
		display:block;
	}
	
	.menu-hidden .mini-search:after {
		left: 132px;
		right:auto;
	}
	
	.mini-search input[type="text"]{
		margin: 8px 4px 8px 0px;
	}
	
	.header-left hgroup {
		position: inherit;
	}
	

	
	.flex-cols .site-content.has-left-content,
	.page-template-default .site-content.has-left-content,
	.flex-cols #content,
	.page-template-page-templatessummer-page-php #content,
	.page-template-page-templatesauthors-page-php #content,
	.page-template-page-templatesfurs-application-php #content,
	.page-template-page-templatesfurs-home-php #content,
	.page-template-page-templatessusc-home-php #content,
	.page-template-page-templateseditorial-page-php #content,	
	.published-in-ijurr .left,
	.archive #content,
	.site-content,
	.published-in-ijurr {
		width: 100%;
		float: left;
		padding-right:0;
	}

	.left-column-content,
	.recent-issues {
		width: 100%;
		padding-right: 0;
		padding-top: 30px;
	}
	
	.published-in-ijurr .right {
		width: 100%;
		float: left;
	}
	
	.footer-menus .footer-menu,
	.footer-news-article {
		width: 50%;
	}
	
	.footer-menus .footer-menu:nth-child(1),
	.footer-news-article:nth-child(1){
		padding: 0px 10px 0px 0px;
	}
	
	.footer-menus .footer-menu:nth-child(2),
	.footer-news-article:nth-child(2){
		padding: 0px 0px 0px 10px;
	}
	
	.footer-menus .footer-menu:nth-child(3),
	.footer-news-article:nth-child(3){
		padding: 20px 10px 0px 0px;
		clear: both;
	}
	
	.footer-menus .footer-menu:nth-child(4),
	.footer-news-article:nth-child(4){
		padding: 20px 0px 0px 10px;
	}
	
	.main-navigation li:last-child:after {
		display:none;
	}

	.archive .left-column-content,
	.left-column-content {
		margin-top: 22px;
		padding-top:0;
	}
	
	.large-link {
		margin-bottom: 24px;
	}
	
	.right-column-content {
		margin-top: 16px;
	}
	
	.site {
		padding: 0 10px;
	}

	.single-news .site-content .right-column-content,
	.flex-cols .site-content .right-column-content,
	.flex-cols .site-content.has-left-content .right-column-content,
	.page-template-default .site-content .right-column-content,
	.page-template-default .site-content.has-left-content .right-column-content,
	.right-column-content {
		width: 100%;
		float: left;
	}

	.single-news #content.has-right-content,	
	.flex-cols #content.has-right-content,
	.flex-cols .has-left-content #content.has-right-content,
	.page-template-default #content.has-right-content,
	.page-template-default .has-left-content #content.has-right-content,
	.single #content,
	#content.has-right-content {
		width: 100%;
		padding-right: 0px;
	}
}

@media screen and (max-width: 440px) {
	
	.footer-menus .footer-menu,
	.footer-news-article {
		width: 100%;
		clear:both;
	}
	
	.footer-menus .footer-menu:nth-child(1),
	.footer-news-article:nth-child(1){
		padding: 20px 0px 0px 0px;
	}
	
	.footer-menus .footer-menu:nth-child(2),
	.footer-news-article:nth-child(2){
		padding: 20px 0px 0px 0px;
	}
	
	.footer-menus .footer-menu:nth-child(3),
	.footer-news-article:nth-child(3){
		padding: 20px 0px 0px 0px;
	}
	
	.footer-menus .footer-menu:nth-child(4),
	.footer-news-article:nth-child(4){
		padding: 20px 0px 0px 0px;
	}
	
	.site-header h1 img {
		width: 100%;
	}
	
	
	
	.large-link a {
		text-align: center;
	}
}

