/*
Theme Name: IETF Journal
Theme URI: http://underscores.me/
Author: Underscores.me
Author URI: http://underscores.me/
Description: Description
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: ietf-journal
Tags:

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

IETF Journal is based on Underscores http://underscores.me/, (C) 2012-2016 Automattic, Inc.
Underscores is distributed under the terms of the GNU GPL v2 or later.

Normalizing styles have been helped along thanks to the fine work of
Nicolas Gallagher and Jonathan Neal http://necolas.github.com/normalize.css/
*/

/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Normalize
# Typography
# Elements
# Forms
# Navigation
	## Links
	## Menus
# Accessibility
# Alignments
# Clearings
# Widgets
# Content
	## Posts and pages
	## Asides
	## Comments
# Infinite scroll
# Media
	## Captions
	## Galleries
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Normalize
--------------------------------------------------------------*/
html {
	font-family: sans-serif;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust:     100%;
}

body {
	margin: 0;
	overflow-x:hidden;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
	display: block;
}

audio,
canvas,
progress,
video {
	display: inline-block;
	vertical-align: baseline;
}

audio:not([controls]) {
	display: none;
	height: 0;
}

[hidden],
template {
	display: none;
}

a {
	background-color: transparent;
}

a:active,
a:hover {
	outline: 0;
}

a:active, a:focus{
	color:#039be5 !important;
}


abbr[title] {
	border-bottom: 1px dotted;
}

b,
strong {
	font-weight: bold;
}

dfn {
	font-style: italic;
}

h1 {
	font-size: 2em;
	margin: 0.67em 0;
}

mark {
	background: #ff0;
	color: #000;
}

small {
	font-size: 80%;
}

sub,
sup {
	font-size: 75%;
	line-height: 0;
	position: relative;
	vertical-align: baseline;
}

sup {
	top: -0.5em;
}

sub {
	bottom: -0.25em;
}

img {
	border: 0;
}

svg:not(:root) {
	overflow: hidden;
}

figure {
	margin: 1em 40px;
}

hr {
	box-sizing: content-box;
	height: 0;
}

pre {
	overflow: auto;
}

code,
kbd,
pre,
samp {
	font-family: monospace, monospace;
	font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
	color: inherit;
	font: inherit;
	margin: 0;
}

button {
	overflow: visible;
}

button,
select {
	text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
	-webkit-appearance: button;
	cursor: pointer;
}

button[disabled],
html input[disabled] {
	cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
	border: 0;
	padding: 0;
}

input {
	line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
	box-sizing: border-box;
	padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
	height: auto;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
	-webkit-appearance: none;
}

fieldset {
	border: 1px solid #c0c0c0;
	margin: 0 2px;
	padding: 0.35em 0.625em 0.75em;
}

legend {
	border: 0;
	padding: 0;
}

textarea {
	overflow: auto;
}

optgroup {
	font-weight: bold;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

td,
th {
	padding: 0;
}

/*--------------------------------------------------------------
# Typography
--------------------------------------------------------------*/
body,
button,
input,
select,
textarea {
	font-size: 16px;
	line-height: 1.5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	clear: both;
}

p {
	margin-bottom: 1.5em;
}

dfn,
cite,
em,
i {
	font-style: italic;
}

blockquote {
	margin: 0 1.5em;
}

address {
	margin: 0 0 1.5em;
}

pre {
	background: #eee;
	font-family: "Courier 10 Pitch", Courier, monospace;
	font-size: 15px;
	font-size: 0.9375rem;
	line-height: 1.6;
	margin-bottom: 1.6em;
	max-width: 100%;
	overflow: auto;
	padding: 1.6em;
}

code,
kbd,
tt,
var {
	font-family: Monaco, Consolas, "Andale Mono", "DejaVu Sans Mono", monospace;
	font-size: 15px;
	font-size: 0.9375rem;
}

abbr,
acronym {
	border-bottom: 1px dotted #666;
	cursor: help;
}

mark,
ins {
	background: #fff9c0;
	text-decoration: none;
}

big {
	font-size: 125%;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/
html {
	box-sizing: border-box;
}

*,
*:before,
*:after { /* Inherit box-sizing to make it easier to change the property for components that leverage other behavior; see http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
	box-sizing: inherit;
}

body {
	background: #fff; /* Fallback for when there is no custom background color defined. */
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: "";
}

blockquote,
q {
	quotes: "" "";
}

hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}

ul,
ol {
	margin: 0 0 1.5em 3em;
}

ul {
	list-style: square;
}

ol {
	list-style: decimal;
}

li > ul,
li > ol {
	margin-bottom: 0;
	margin-left: 1.5em;
}

dt {
	font-weight: bold;
}

dd {
	margin: 0 1.5em 1.5em;
}

img {
	height: auto; /* Make sure images are scaled correctly. */
	max-width: 100%; /* Adhere to container width. */
}

table {
	margin: 0 0 1.5em;
	width: 100%;
}

div.wp-sls-search-modal__results {
  text-indent: 50px;
  font-family: sans-serif;
  line-height: 1.5;
  
}
.wp-sls-search-modal__results a {
	color: blue; 
	text-decoration: none;
	font-size: 16px !important;
    font-style: normal !important;
    letter-spacing: 1px !important;
    line-height: 0.1cm;
    text-transform: capitalize;
}
.wp-sls-search-modal__results a:visited {color: blueviolet;}
.wp-sls-search-modal__results a:hover {text-decoration: underline;
										color: black;}

/*--------------------------------------------------------------
# Forms
--------------------------------------------------------------*/
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5), inset 0 15px 17px rgba(255, 255, 255, 0.5), inset 0 -5px 12px rgba(0, 0, 0, 0.05);
	color: rgba(0, 0, 0, .8);
	font-size: 12px;
	font-size: 0.75rem;
	line-height: 1;
	padding: .6em 1em .4em;
	text-shadow: 0 1px 0 rgba(255, 255, 255, 0.8);
}

button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8), inset 0 15px 17px rgba(255, 255, 255, 0.8), inset 0 -5px 12px rgba(0, 0, 0, 0.02);
}

button:focus,
input[type="button"]:focus,
input[type="reset"]:focus,
input[type="submit"]:focus,
button:active,
input[type="button"]:active,
input[type="reset"]:active,
input[type="submit"]:active {
	border-color: #aaa #bbb #bbb;
	box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.5), inset 0 2px 5px rgba(0, 0, 0, 0.15);
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: #666;
	border: 1px solid #ccc;
	border-radius: 3px;
}

select {
	border: 1px solid #ccc;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}

input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"] {
	padding: 3px;
}

textarea {
	padding-left: 3px;
	width: 100%;
}

/*--------------------------------------------------------------
# Navigation
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Links
--------------------------------------------------------------*/
a {
	color: white;
}



a:hover,
a:focus,
a:active {
	color: white;
}

a:focus {
	outline: thin dotted;
}

a:hover,
a:active {
	outline: 0;
}

#site-navigation{
	height: 85px !important;
}

/*--------------------------------------------------------------
## Menus
--------------------------------------------------------------*/
.main-navigation {
	clear: both;
	display: block;
	float: left;
	width: 100%;
	position:relative;
	z-index: 120;
}

.main-navigation ul {
	display: none;
	list-style: none;
	margin: 0;
	padding-left: 0;
}

.main-navigation li {
	float: left;
	position: relative;
	line-height: 85px;
	list-style-type : none;
}

.main-navigation a {
	display: block;
	text-decoration: none;

}

.main-navigation ul ul {
	box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
	float: left;
	position: absolute;
	top: 1.5em;
	left: -999em;
	z-index: 99999;
	background-color:white;
}

.main-navigation ul ul ul {
	left: -999em;
	top: 0;
}

.main-navigation ul ul a {
	width: 200px;
}

.main-navigation ul ul li {

}

.main-navigation li:hover > a,
.main-navigation li.focus > a {
}

.main-navigation ul ul :hover > a,
.main-navigation ul ul .focus > a {
}

.main-navigation ul ul a:hover,
.main-navigation ul ul a.focus {
}

.main-navigation ul li:hover > ul,
.main-navigation ul li.focus > ul {
	left: auto;
}

.main-navigation ul ul li:hover > ul,
.main-navigation ul ul li.focus > ul {
	left: 100%;
}

.main-navigation .current_page_item > a,
.main-navigation .current-menu-item > a,
.main-navigation .current_page_ancestor > a,
.main-navigation .current-menu-ancestor > a {
}

/* Small menu. */
.menu-toggle,
.main-navigation.toggled ul {
	display: block;
}

@media screen and (min-width: 37.5em) {
	.menu-toggle {
		display: none;
	}
	.main-navigation ul {
		display: block;
	}
}

.site-main .comment-navigation,
.site-main .posts-navigation,
.site-main .post-navigation {
	margin: 0 0 1.5em;
	overflow: hidden;
}

.comment-navigation .nav-previous,
.posts-navigation .nav-previous,
.post-navigation .nav-previous {
	float: left;
	width: 50%;
}

.comment-navigation .nav-next,
.posts-navigation .nav-next,
.post-navigation .nav-next {
	float: right;
	text-align: right;
	width: 50%;
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/
/* Text meant only for screen readers. */
.screen-reader-text {
	clip: rect(1px, 1px, 1px, 1px);
	position: absolute !important;
	height: 1px;
	width: 1px;
	overflow: hidden;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	color: #21759b;
	display: block;
	font-size: 14px;
	font-size: 0.875rem;
	font-weight: bold;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000; /* Above WP toolbar. */
}

/* Do not show the outline on the skip link target. */
#content[tabindex="-1"]:focus {
	outline: 0;
}

/*--------------------------------------------------------------
# Alignments
--------------------------------------------------------------*/
.alignleft {
	display: inline;
	float: left;
	margin-right: 1.5em;
}

.alignright {
	display: inline;
	float: right;
	margin-left: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
}

/*--------------------------------------------------------------
# Clearings
--------------------------------------------------------------*/
.clear:before,
.clear:after,
.entry-content:before,
.entry-content:after,
.comment-content:before,
.comment-content:after,
.site-header:before,
.site-header:after,
.site-content:before,
.site-content:after,
.site-footer:before,
.site-footer:after {
	content: "";
	display: table;
	table-layout: fixed;
}

.clear:after,
.entry-content:after,
.comment-content:after,
.site-header:after,
.site-content:after,
.site-footer:after {
	clear: both;
}

/*--------------------------------------------------------------
# Widgets
--------------------------------------------------------------*/
.widget {
	margin: 0 0 1.5em;
}

/* Make sure select elements fit in widgets. */
.widget select {
	max-width: 100%;
}

/*--------------------------------------------------------------
# Content
--------------------------------------------------------------*/
/*--------------------------------------------------------------
## Posts and pages
--------------------------------------------------------------*/
.sticky {
	display: block;
}

.hentry {
	margin: 0 0 1.5em;
}

.byline,
.updated:not(.published) {
	display: none;
}

.single .byline,
.group-blog .byline {
	display: inline;
}

.page-content,
/*.entry-content,*/
.entry-summary {
	margin: 1.5em 0 0;
}

.page-links {
	clear: both;
	margin: 0 0 1.5em;
}

/*--------------------------------------------------------------
## Asides
--------------------------------------------------------------*/
.blog .format-aside .entry-title,
.archive .format-aside .entry-title {
	display: none;
}

/*--------------------------------------------------------------
## Comments
--------------------------------------------------------------*/
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/*--------------------------------------------------------------
# Infinite scroll
--------------------------------------------------------------*/
/* Globally hidden elements when Infinite Scroll is supported and in use. */
.infinite-scroll .posts-navigation, /* Older / Newer Posts Navigation (always hidden) */
.infinite-scroll.neverending .site-footer { /* Theme Footer (when set to scrolling) */
	display: none;
}

/* When Infinite Scroll has reached its end we need to re-display elements that were hidden (via .neverending) before. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Media
--------------------------------------------------------------*/
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}

/*--------------------------------------------------------------
## Captions
--------------------------------------------------------------*/
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/*--------------------------------------------------------------
## Galleries
--------------------------------------------------------------*/
.gallery {
	margin-bottom: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	vertical-align: top;
	width: 100%;
}

.gallery-columns-2 .gallery-item {
	max-width: 50%;
}

.gallery-columns-3 .gallery-item {
	max-width: 33.33%;
}

.gallery-columns-4 .gallery-item {
	max-width: 25%;
}

.gallery-columns-5 .gallery-item {
	max-width: 20%;
}

.gallery-columns-6 .gallery-item {
	max-width: 16.66%;
}

.gallery-columns-7 .gallery-item {
	max-width: 14.28%;
}

.gallery-columns-8 .gallery-item {
	max-width: 12.5%;
}

.gallery-columns-9 .gallery-item {
	max-width: 11.11%;
}

.gallery-caption {
	display: block;
}


/* -------------------
## KNOWN
--------------------- */

.container{
	width:96% !important;
	max-width: 1140px !important;
}

#theCategory{
			text-transform: uppercase;
			  font-family: "Montserrat" !important;
			  font-weight: 400 !important;
		}


.giveMeSpace{
	padding-top:35px;
}

.justALittleSpace{
	padding-top:5px;
	padding-bottom: 5px;
}

#searchIconButton:hover{
background-color:rgba(01,01,01,0.0) !important;
}

#imgSearchIcon{
  height:20px;margin-top:20px;
}

#theLogo{
	height:35px !important;
	margin-top:28px;
	margin-left:20px;
}

#hamburgerMenuImg{

}

#hamburgerMenu{
	padding-right:15px !important;
	padding-top:15px !important;
}

.nav-wrapper h1{
	margin:0px !important;
}

nav .brand-logo{
	padding-left:50px !important;
    font-size: 75px;
}

nav {

	box-shadow: 0 0.2px 0px 0 rgba(0, 0, 0, 0.06), 0 1px 0px 0 rgba(0, 0, 0, 0.06) !important;
	height:75px !important;
	line-height:75px !important;
}

nav .button-collapse i {
    height: 75px;
    line-height: 75px;
}

nav ul a {
	padding: 0 25px !important;
}

nav ul a:hover{
	background-color: #0060a9 !important;
	color:white !important;
}

.main-navigation ul ul{
	top:85px !important;
	padding-top:15px;
	padding-bottom: 15px;
}

.main-navigation ul ul li{
	line-height: 30px !important;
	padding-left:10px !important;
}

.main-navigation ul ul a{
	text-transform: none !important;
	width:250px;
	padding-left:20px;
}

.main-navigation ul ul a:hover{
	background-color:rgba(01,01,01,0.0) !important;
	color:#0060a9 !important;
}

#fullScreenMenu{
	position:fixed;
	min-height:100%;
	width:100%;
	background:white;
	top:0;
	left:0;
	z-index:1000;
	display:none;
}

#fullScreenMenuMobile{
	position:fixed;
	height:100%;
	width:100%;
	background:white;
	top:0;
	left:0;
	z-index:1000;
	display:none;
	overflow:auto;
}

.searchForm{
	padding-top:200px;
}

.searchBorder{
	border-bottom:1px solid #393939;
	padding-left:0px !important;
	padding-right:0px !important;
}

#siteSearchInput{

    background-color: transparent;
    border: none;

    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;

    margin: 0 0 0px 0;
    padding: 0;
    box-shadow: none;
     font-size: 40px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;

}

#siteSearchInput::-webkit-input-placeholder {

   font-size: 40px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 #siteSearchInput:-moz-placeholder { /* Firefox 18- */
   font-size: 40px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

#siteSearchInput::-moz-placeholder {  /* Firefox 19+ */
   font-size: 40px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 #siteSearchInput:-ms-input-placeholder {
   font-size: 40px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}


#menu-popular {
	-webkit-column-count: 3 !important;
    -moz-column-count: 3 !important;
    column-count: 3 !important;
    margin-left:0px;
}

#menu-popular a{

	font-size: 14px !important;
    text-transform: none;
    margin: 0px 0px .5em 0px !important;
    font-family: "Roboto" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: rgba(34,31,31,1);
    letter-spacing: 1.5px !important;
}

#menu-popular a:hover{
	color:#0060a9 !important;
}

#menu-popular li {
	line-height: 30px !important;
}

#menu-mobile{
	text-align: center !important;
	margin-left:0px;
}

#menu-mobile li{
	line-height: 60px;
        list-style-type: none;
}



#menu-mobile a{
	font-size: 24px;
    text-transform: uppercase;
    margin: 0px 0px .5em 0px !important;
    font-family: "Roboto" !important;
    font-weight: 700 ;
    font-style: normal !important;
    color: rgba(34,31,31,1) !important;
    letter-spacing: 3px !important;
    text-align: center !important

}


#menu-mobile .sub-menu li a{
	color:#808080;
	font-size:20px !important;
	font-weight: 400 !important;
	text-transform: none !important;
}

#menu-mobile .sub-menu li{
	line-height: 50px !important;
}

#menu-mobile ul{
	margin-left:0px !important;
}

.mobilesearchBorder{
	border: 1px solid #eeeeee;
	padding-top:5px !important;
	padding-bottom:5px !important;
	padding-left:5px !important;
	padding-right:5px !important;
}

#mobileSearchInput{

    background-color: transparent;
    border: none;

    border-radius: 0;
    outline: none;
    height: 3rem;
    width: 100%;

    margin: 0 0 0px 0;
    padding: 0;
    box-shadow: none;

   font-size: 22px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 400 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;

}

#mobileSearchInput::-webkit-input-placeholder {

   font-size: 22px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 400 !important;
   font-style: italic !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 #mobileSearchInput:-moz-placeholder { /* Firefox 18- */
  font-size: 22px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 400 !important;
   font-style: italic!important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

#mobileSearchInput::-moz-placeholder {  /* Firefox 19+ */
   font-size: 22px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 400 !important;
   font-style: italic !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 #mobileSearchInput:-ms-input-placeholder {
   font-size: 22px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 400 !important;
   font-style: italic !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

.btnBlueMobile{
	background-color: #0060a9 !important;
    padding:16px !important;
    padding-left:20px !important;
    padding-right:20px !important;
    font-size: 21px !important;
    text-transform: uppercase;
    font-family: "Montserrat" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: white !important;
    letter-spacing: 3px !important;
    border-radius: 2px;
}

.btnBlue{
	background-color: #0060a9 !important;
    padding:16px !important;
    padding-left:20px !important;
    padding-right:20px !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-family: "Montserrat" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: white !important;
    letter-spacing: 3px !important;
    border-radius: 2px;
}

.btnBlueLarge{
	background-color: #0060a9 !important;
    padding:25px !important;
    padding-left:45px !important;
    padding-right:45px !important;
    font-size: 16px !important;
    text-transform: uppercase;
    font-family: "Montserrat" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: white !important;
    letter-spacing: 3px !important;
    border-radius: 2px;
}


nav a{
	font-size: 14px !important;

    text-transform: uppercase;

    margin: 0px 0px .5em 0px !important;

    font-family: "Roboto" !important;

    font-weight: 700 !important;

    font-style: normal !important;

    color: rgba(34,31,31,1) !important;

    letter-spacing: 1.5px !important;
}

h1 {

    font-size: 50px !important;

    line-height: 60px !important;

    margin: 0px 0px .37em 0px !important;

    font-weight: 700 !important;

    font-style: normal !important;

    font-family: "Roboto" !important;

    color: rgba(34,31,31,1) !important;

}



h2 {

    font-size: 24px !important;

    line-height: 50px !important;

    margin: 0px 0px .5em 0px !important;

    font-family: "Montserrat" !important;

    font-weight: 700 !important;

    font-style: normal !important;

    text-transform: uppercase !important;

    letter-spacing: 1px !important;

    color: rgba(34,31,31,1) !important;

}

.entry-content h2{
	text-transform: none !important;
	margin: 25px 0px 25px 0px !important;
}

.entry-content ul{
	line-height: 2;
}

.entry-content ol{
	line-height: 2;
}

#sticky.stick {
    margin-top: 0 !important;
    position: fixed;
    top: 0px;
    z-index: 10000;
    border-radius: 0 0 0.5em 0.5em;
    max-width:300px;
   
}

#sticky{
	width:300px;
}

#sticky.absolute{
	position: absolute;
}



#relatedArticleTitle{
	transition: all 0.2s ease-in-out;
}

.relatedArticleTitle{
	 margin-top: 50px !important;
}



h3 {

    font-size: 18px !important;

    line-height: 50px !important;

    margin: 0px 0px 0px 0px !important;

    font-family: "Roboto" !important;

    font-weight: 700 !important;

    font-style: normal !important;

    color: rgba(34,31,31,1) !important;

    letter-spacing: 1px !important;

}





h4 {

    margin-bottom: 25px !important;

    font-weight: 700 !important;

    font-style: normal !important;

    font-family: "Montserrat" !important;

    letter-spacing: 1px !important;

/*    text-transform: uppercase !important; */

    font-size: 15px !important;

    color: rgba(34,31,31,1);

}


p {

    margin: 0px 0px 1.563em 0px !important;

    font-family: "Roboto" !important;

    font-weight: 400 !important;

    font-style: normal !important;

    line-height: 27px !important;

    color: rgba(34,31,31,1) !important;

}



p.intro {

    font-size: 20px !important;

    line-height: 36px !important;

    margin: 0px 0px 1.5em 0px !important;

    font-family: "Roboto" !important;

    font-weight: 300 !important;

    font-style: italic !important;

    letter-spacing: 0px !important;

    color: rgba(34,31,31,1) !important;

}



p.quote {

    font-size: 1.23em !important;

    line-height: 1.5em !important;

    font-style: normal !important;

    color: rgba(0,96,169,1) !important;

    margin: 0px !important;

    font-family: "Roboto" !important;

    font-weight: 700 !important;

}

.sectionRow{
	padding-top:50px !important;
}

#featuredPosts h3,h2{
	line-height:25px !important;
}

#featuredPosts h3{
	letter-spacing: 3px !important;
}

#featuredPosts h3{
	font-family: "Roboto" !important;
}


.featuredPostsContainer{
	padding-top: 0px;
	padding-right:0px;
	float:right;
}

.featuredPosts{
	margin-bottom: 0px !important;
}

.pblock{
	min-height:405px;
}

.pblock2{
	min-height:410px !important;
}


#featuredpost1 {
	width: 0;
	height: 0;
	position: relative;
	top: 0px;
	left:-74px;
}

#featuredpost2 {
	width: 0;
	height: 0;
	position: relative;
	top: 88px;
    left:49px
}

#featuredpost3 {
	width: 0;
	height: 0;
	position: relative;
	top: -299px;
    left:-315px;
}

#authorBlock{

	position: relative;
	bottom:0;
   
}



/* Diamond Styled Featured Post */
.diamond, .diamond div {
  margin: -30px;
  transform-origin: 50% 50%;
  overflow:hidden;
  width: 330px;
  height: 330px;
}
.diamond {
  transform: rotate(45deg) translateY(10px);
  transition: all 0.3s ease-in-out;
}

/*.diamond:hover{
	-webkit-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    -moz-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
}*/

.diamondActive{
	-webkit-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    -moz-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
}

.featuredPostImg{
	 transition: all 0.3s ease-in-out;
}


.featuredPostImg:hover{
	-webkit-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    -moz-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
	
}

.sideMenuItem a{
	color:#0060a9;
}

.someBoxShadow{
	-webkit-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    -moz-box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
    box-shadow: -1px 7px 17px 1px rgba(203,203,203,1);
}


.diamond .d {
  width: 550px;
  height: 550px;
  transform: rotate(-45deg) translateY(-74px);
}
.diamond .d img {
  width: 500px;
  height: 500px;
}

.feauturedTitleContainer{
	padding-top:150px !important;
}

.feauturedTitleContainer p{
	width:85%;
	padding-bottom:10px;
}

.featuredArticleHeadline{
	font-size:55px !important;
	line-height: 60px !important;
	text-transform: none !important;
	margin-bottom:10px !important;
	width:80%;
}

.authorMeta{
	font-style: italic !important;
	font-weight:400 !important;
}
.authorMeta a{
	color:#0060a9 !important;
}

#featuredTopics{
	padding-top:50px;
	padding-bottom: 100px;
}


.articleSlider:hover{
	cursor:pointer;
}


.featuredTopicContainer h3{
	line-height:22px !important;
	letter-spacing: 3px !important;
}

.viewMoreCategoriesContainer{
	float:right;
}

.viewMoreCategoriesContainer a{
	color:#0060a9 !important;
	font-weight: 600 !important;
	letter-spacing: 3px !important;
}

.featuredPosts a{
	color:#0060a9;
	letter-spacing:2px;
}

.featuredPostImg{
	min-height: 220px !important;
	max-height:220px;
	background-color: #eeeeee;
	margin-bottom: 20px;
	width:100%;
}

.featuredPostImgSmall{
    min-height: 150px;
	max-height:150px;
	background-color: #eeeeee;
	margin-bottom: 20px;
	width:100%;
}



.featuredArticleTitle{
	text-transform: none !important;
	font-size: 19px !important;
	line-height: 28px !important;
	margin-bottom: 10px !important;
}

#aboutUsSection{
	padding-top:100px;
	padding-bottom: 100px;
	background-image:url(/wp-content/themes/ietf-journal/assets/img/mapdots.jpg);
	background-size:cover;
	background-repeat:no-repeat;
	background-position:center center;
}

#aboutUsSection h2{
	text-transform: none !important;
	font-size:38px !important;
	line-height: 55px !important;
}

#featuredJournalIssues{
	padding-top:100px;
	padding-bottom:100px;
}


.feauturedPostHeadline{
line-height: 30px !important;
	font-weight: 700 !important;
    font-style: normal !important;
    font-family: "Montserrat" !important;
}
.featuredJournalHeadline{
	line-height: 25px !important;
	font-weight: 700 !important;
    font-style: normal !important;
    font-family: "Montserrat" !important;
}

.lnkViewAllIssues{
	color:#0060a9 !important;
	font-family: "Roboto" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: 3px !important;
}

.lnkViewFewer{
	float:right;
	font-weight: 600 !important;
}

#lnkViewCategoryMobile{
	color:#0060a9 !important;
	font-family: "Montserrat" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    letter-spacing: 3px !important;

}

.site-footer{
	padding-top:20px;
	background-color:#fafafa;
	padding-bottom:0px;
}

.footerTopSection{
	border-bottom: 1px solid #e0e0e0;
	padding-bottom:30px !important;
}



.footerTopSection h2{
	text-transform: none !important;
	font-family: "Roboto" !important;
    font-weight: 700 !important;
    font-style: normal !important;
    font-size:40px !important;
    line-height: 50px !important;
}

.getOurNewsContainer1{
	text-align: right;
}

.getOurNewsContainer2{
    padding-top:15px !important;
  }

 .footerMiddleSection{
 	padding-top:20px;
 }

 .footerImg{
 	max-height:75px;
 }

.footerLinkContainer h3{
	text-transform: uppercase;
	line-height: 25px !important;
	font-weight: 400 !important;
		font-style: normal !important;
		font-family: "Montserrat" !important;
}



 #menu-popular-1 {
 	-webkit-column-count: 2 !important;
     -moz-column-count: 2 !important;
     column-count: 2 !important;
     margin-left:0px;
 }

 #menu-popular-1 a{

 	font-size: 14px !important;
     text-transform: none;
     margin: 0px 0px .5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 400 !important;
     font-style: normal !important;
     color: rgba(34,31,31,1) !important;
     letter-spacing: 1.5px !important;
 }

 #menu-popular-1 a:hover{
 	color:#0060a9 !important;
 }

 #menu-popular-1 li {
 	line-height: 30px !important;
	padding-right:10px !important;
 	list-style-type: none;
 }

 #menu-info{
     margin-left:0px;
 }

 #menu-info a{

     font-size: 14px !important;
     text-transform: none;
     margin: 0px 0px .5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 400 !important;
     font-style: normal !important;
     color: rgba(34,31,31,1) !important;
     letter-spacing: 1.5px !important;
 }

 #menu-info a:hover{
 	color:#0060a9 !important;
 }

 #menu-info li {
 	line-height: 30px !important;
        list-style-type: none;
 }

/* .infoLinks{
	 padding-left:50px !important;
 }*/

 .footerMiddleSection{
 	border-bottom: 1px solid #e0e0e0;
 }

.socialLink{
	text-align: right !important;
}

.socialLink a{
	font-size: 14px !important;
text-transform: none;
margin: 0px 0px .5em 0px !important;
font-family: "Roboto" !important;
font-weight: 400 !important;
font-style: normal !important;
color: rgba(34,31,31,1) !important;
letter-spacing: 1.5px !important;
}


.footerSiteInfo{
	font-size: 14px !important;
	color:#b0b0b0 !important;
	font-weight:400;
	font-style: normal !important;
	font-family: "Roboto" !important;
	letter-spacing: 1.5px !important;
}

.socialIcon{
	margin-left:15px;
	height:25px !important;
}

.ietfFooterLogo{
	text-align: center;
}

.articleSlider{
	transition: all 0.3s ease-in-out;
	min-height:200px;
	background-color:#eeeeee;
	margin-left:0px;
	margin-right:10px;
}

.slick-slide{
	outline:none !important;
}

.slick-list {
	padding-right:60px !important;
	padding-left:0px !important;

}

.authorMeta a{
	text-transform: capitalize;
}

.postCategory{
	text-transform: uppercase;
	letter-spacing: 2px;
	font-family: "Montserrat";
	font-size:17px !important;
	color:#0060a9;

}

.viewMorePosts{
	opacity: 0.0;
	display: none;
}

#articleExcerpt{
	 width:70%;
	 padding-bottom: 24px;
}

.singlePostContainer{
	padding-top:30px !important;
	padding-bottom: 50px !important;
}

.singlePostContainer h1{

}

.postExcerpt{
	padding-bottom:15px !important;
}

.postExcerpt p{
	font-size:20px !important;
     text-transform: none;
     margin: 0px 0px .5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 300 !important;
     font-style: italic !important;
     color: rgba(34,31,31,1) !important;
     letter-spacing: 1.5px !important;

}

.publishedByText{
	font-weight:300;font-size:20px;font-style:italic;line-height:34px;
}

.hr{
	height:1px;
	background-color: #eeeeee;
	border:none;
	margin-bottom: 7.5px !important;
}

.relatedArticlesTitle a{
	color:black !important;
}

.relatedArticlesTitle{
	line-height: 30px !important;

}


.postContentContainer{
	padding-right:0px !important;
	padding-left:0px !important;
}
.relateeArticleOuter{
	padding-left:75px !important;
}

.relatedArticlesContent{
	padding-left:10%;
	padding-right:10%;
	padding-top: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
}

.relatedArticlesAuthor{
	font-size:16px !important;
     text-transform: capitalize !important;
     margin: 0px 0px .5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 300 !important;
     font-style: italic !important;
     color: rgba(34,31,31,1) !important;
}

.spacer{
	padding-top:7px;padding-bottom: px;
}

blockquote{
	padding-top:15px;
	padding-bottom: 15px;
	border-left:none !important;
}
blockquote  p{
	color:#005fa9 !important;
	font-size:25px !important;
	line-height: 40px !important;
	font-weight:700 !important;
	
}

.entry-content p {
     font-size:16px;
     text-transform: none;
     margin: 0px 0px 1.5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 400;
     font-style: normal !important;
     color: rgba(34,31,31,1);
     line-height: 32px !important;
}

.entry-content img{
	width:100% !important;
	margin-top:30px;
	margin-bottom: 30px;
}

.entry-content a:hover{
	color:#039be5;
}

.postTag{
	color:#d0d0d0 !important;
	font-size:16px !important;
     text-transform: lowercase !important;
     margin: 0px 0px .5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 700 !important;
     letter-spacing: 1.5px !important;
}

.postTag a{
		color:#d0d0d0 !important;
	font-size:16px !important;
     text-transform: lowercase !important;
     margin: 0px 0px .5em 0px !important;
     font-family: "Roboto" !important;
     font-weight: 700 !important;
     letter-spacing: 1.5px !important;
}

.postTag:hover{
	color:#0060a9 !important;
}

.postTagContainer{
	padding-right:20px;
}

.tagContainer{
	padding-top:30px;
	padding-bottom: 30px;
}

.commentsTopBar{
	border-bottom:1px solid #d0d0d0;
	padding-left:0px !important;
	margin-bottom: 20px !important;
}

.commentsCountBlock{
	background-color: #0060a9;
	padding-top:15px !important;
	padding-bottom: 7.5px !important;
	padding-left:30px !important;
	padding-right:30px !important;
	
	font-family: "Roboto" !important;
     font-weight: 700 !important;
     letter-spacing: 1.5px !important;
     font-weight: 400 !important;
}

.commentsCountBlock a{
	color:white !important;
}

.comment-list{
	padding-left:0px !important;
	margin-left:0px !important;
	display:none;
}

.comment{
	margin-top: 20px !important;
	margin-bottom: 20px !important;
}

.comment-author a{
	color:black !important;
}

.comment-author img{
	display:none;
}

.comment-metadata a{
	color:black;
	font-family: "Roboto" !important;
    font-weight: 400 !important;
    text-transform: capitalize;
    font-style:italic;
    font-size: 13px;
}

.comment-author .fn{

	font-family: "Roboto" !important;
    letter-spacing: 1px !important;
    font-weight: 700 !important;
    text-transform: capitalize;
}

.comment-content p {
	margin-bottom:5px !important;
}

#lnkWriteaComment{
	color:#0060a9;
	font-family: "Roboto" !important;
    font-weight: 400 !important;
    text-transform: capitalize;
    letter-spacing: 1.5px;
    font-size: 15px;
}


input[type=text],input[type=email],input[type=url]:focus{
	box-shadow: none !important;
	border-bottom: 1px solid #d7d7d7 !important;


}

textarea{
	border-left:none !important;
	border-right:none !important;
	border-top:none !important;
	border-bottom: 1px solid #808080;
	border-radius: 0px !important;
}

#commentform label{
	color:black;
	font-family: "Roboto" !important;
    font-weight: 400 !important;
    text-transform: capitalize;

}

.commentFormContainer{
	display: none;
}

#submit {
	background-color: #0060a9 !important;
    padding: 16px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
    font-size: 15px !important;
    text-transform: capitalize;
    font-family: "Roboto" !important;
    font-weight: 400 !important;
    font-style: normal !important;
    color: white !important;
    letter-spacing: 1.5px !important;
    border-radius: 2px;
    box-shadow: none !important;
    border:none !important;
    text-shadow:none !important;
}

.comment-reply-link{
	color:#0060a9 !important;
}


a{
	outline:0 !important;
}

.postHeaderBackground{
	min-height:450px;
	max-height:450px;
}

.socialShare{
	padding-top:20px !important;
	padding-bottom: 20px !important;
	color:white;
	text-align:center;
	text-transform: uppercase;
    font-family: "Roboto" !important;
    font-weight: 400 !important;
    letter-spacing: 1.5px;
}

.facebook{
	background-color:#005e99;
}

.twitter{
	background-color:#33b1ff;
}

.linkedIn{
   background-color:#0077b5;
}

.socialTitle{
	padding-left:15px;
}


.logged-in-as a{
	color:black !important;
}

#aboutPage{
	padding-top:20px;
	padding-bottom: 0px;
}

#aboutPage h1{
	font-size: 40px !important;
}

#aboutPage .linebreak{
	height:20px;
}

.sideMenuItem{
	padding-bottom: 30px;
	border-bottom: 1px solid #eeeeee;
	margin-bottom: 30px;
}

.sideMenuItem h4{
	margin-top:0px !important;
	margin-bottom: 0px !important;
/*	text-transform: capitalize !important; */
	line-height: 25px !important;
}

.flexRow{

	display:flex;
}

.flex1{
	flex:1;

}
.articleMetaBlock{
	position: absolute;
	right:0;
	bottom: 0;


}

.articleMetaBlock h4{
	font-weight:400 !important;
	text-transform: capitalize !important;
	font-style: italic !important;
	
}

.articleMetaBlock a{
	color:#039be5;
	text-transform: capitalize;
	font-style: italic !important;
	font-weight: 400;

}

.issueTitle{
	padding-left:20px;
}

.editorialStaffSection{
	margin-top:30px;
	padding-top:100px;
	padding-bottom: 150px;
	background-image:url(/wp-content/themes/ietf-journal/assets/img/mapfull.jpg);
	background-size:contain;
	background-repeat:no-repeat;
	background-position:center;
}

.editorialStaffSection h4{
	text-transform: capitalize !important;
	margin-bottom: 10px !important;
}

.editorialStaffSection .name{
	padding-top: 5px !important;
	font-size: 17px !important;
	font-family: 'Roboto';
	font-weight: 300;
}

.bottomPad{
	padding-bottom:50px !important;
}

.sponsorSection{
	padding-top:20px;
	background-color: #0060a9;
}

.sponsorSection h4{
	text-transform: uppercase !important;
	color:white !important;
}

#contactPage{
	padding-top:20px;
	padding-bottom: 20px;
}

#contactPage h1{
	font-size: 40px !important;
}

#contactPage .linebreak{
	height:20px;
}

#subscribePage{
	padding-top:20px;
	padding-bottom: 20px;
}

#subscribePage h1{
	font-size: 40px !important;
}

#subscribePage .linebreak{
	height:20px;
}

.contactForm:focus{
	outline:0;
}

.contactForm{
	   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid #d7d7d7 !important;
   margin-bottom: 40px !important;
}



.contactForm::-webkit-input-placeholder {

   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 .contactForm:-moz-placeholder { /* Firefox 18- */
   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

.contactForm::-moz-placeholder {  /* Firefox 19+ */
   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}



 .contactForm:-ms-input-placeholder {
   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}


.formError{
	   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: rgba(34,31,31,1) !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid #d7d7d7 !important;
   margin-bottom: 40px !important;
}

.formError::-webkit-input-placeholder {

   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: red !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 .formError:-moz-placeholder { /* Firefox 18- */
   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: red !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

.formError::-moz-placeholder {  /* Firefox 19+ */
   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: red !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

 .formError:-ms-input-placeholder {
   font-size: 17px !important;
   text-transform: none;
   font-family: "Roboto" !important;
   font-weight: 700 !important;
   font-style: normal !important;
   color: red !important;
   letter-spacing: 1.5px !important;
   border-bottom: 1px solid rgba(01,01,01,0.0) !important;
}

#contactPage .sideMenuContainer a{
	color: #0060a9 !important;
}

#btnSendForm{
	color:#0060a9;
	font-weight: 400 !important;
    text-transform: uppercase;
    font-family: "Montserrat" !important;
}

.archiveTitle{
	font-size:40px !important;
}

#categoryArchives{
	padding-top:20px;
}

.categoryDescription{
	padding-top:40px !important;
}

.categoryDescription p{
	font-style: italic !important;
	font-family: "Roboto" !important;
    font-weight: 300 !important;
    line-height: 30px !important;
    font-size: 19px !important;
}


.relatedArticlesTitle a:hover{
	color:#0060a9 !important;
}

#journalIssueHeader{
	background-color:#fafafa;
	padding-top:100px;
	padding-bottom: 100px;
}

#journalIssueHeader h1{
	font-size: 55px !important
}


.journalTopLinks h3{
	text-transform: capitalize!important;
	margin:0px !important;
}

.journalTopLinks a{
	color:#0060a9 !important;
}

.journalTopLinks{
	padding-top: 15px;
	padding-bottom: 15px;
	border-bottom: 1px solid #d0d0d0;
}

#featuredJournalArticles{
	padding-top:50px;
	padding-bottom: 100px;
}


#issuesAllArticles{
	padding-bottom:100px;
}



#notFoundsection{
	padding-top:100px;
	padding-bottom: 100px;
	background: url("/wp-content/themes/ietf-journal/assets/img/editorialmap.jpg");
	background-size:cover;
	background-position: center center;
	background-repeat: no-repeat;
}

#notFoundsection h1{
	font-size: 100px !important;
	color:#0060a9 !important;
	margin-top:50px !important;
	margin-bottom: 50px !important;
}
#notFoundsection h3{
	font-weight: 300 !important;
	font-style: italic !important;
	line-height: 30px !important;

}

.otherPages a{
	font-family: "Roboto" !important;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	color:#0060a9;
	font-size: 17px;
}

.btnViewMoreArticles{
	font-family: "Montserrat" !important;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	color:#0060a9 !important;
	font-size: 14px;
	border:2px solid #0060a9;
	padding-left:15px;
	padding-right:15px;
	padding-top:20px;
	padding-bottom:20px;
	transition: all 0.3s ease-in-out;
}


.btnViewMoreArticles:hover{
	background-color:#0060a9 !important;
	color:white !important;
}

.btnViewMoreFromJournal{
	font-family: "Montserrat" !important;
	font-weight: 400;
	text-transform: uppercase;
	letter-spacing: 1px;
	color:#0060a9 !important;
	font-size: 14px;
	border:2px solid #0060a9;
	padding-left:15px;
	padding-right:15px;
	padding-top:20px;
	padding-bottom:20px;
	transition: all 0.3s ease-in-out;
}

.btnViewMoreFromJournal:hover{
	background-color:#0060a9 !important;
	color:white !important;
}

#previousIssues{
	padding-bottom: 100px;
	padding-top:70px;
}

.allArticles{
	transition: all 0.3s ease-in-out;
}

.lastMenuItem{
	color:white !important;
	background-color:#0060a9 !important;
}

#aboutAllIssuesSection{
	padding-top:20px;
	padding-bottom: 40px;
}

#aboutAllIssuesSection h1{
	font-size: 40px !important;
}

#aboutAllIssuesSection .linebreak{
	height:20px;
}

#authorPage{
	padding-top:100px;
	padding-bottom: 100px;
}

#authorPage h1{
	font-size: 40px !important;
}

#socialShareBar{
	position: fixed;
	bottom:0px;
	width:100%;
	text-align: center;
	z-index:10000;
	/*left:15%;*/
	opacity: 0;
	transition: all 0.3s ease-in-out;
}



/*#searchPage{
	padding-top:100px;
	padding-bottom: 100px;
}*/

#searchPage h1{
	font-size: 40px !important;
}

#hamburgerMenuImg {
	width: 30px;
	height: auto;
}

/* MEDIA QUERIES */

@media only screen and (max-width: 2560px){


	.menu-mobile-container{
		padding-top:100px !important;

	}
}

@media only screen and (max-width: 1600px){

/*.diamond, .diamond div {
	  margin: -30px;
	  transform-origin: 50% 50%;
	  overflow:hidden;
	  width: 300px;
	  height: 300px;
	}
	.diamond {
	  transform: rotate(45deg) translateY(10px);
	}

	.diamond .d {
	  width: 500px;
	  height: 500px;
	  transform: rotate(-45deg) translateY(-74px);
	}
	.diamond .d img {
	  width: 500px;
	  height: 500px;
	}
	#featuredpost1 {
		width: 0;
		height: 0;
		position: relative;
		top: -10px;
		left:-64px;
	}

	#featuredpost2 {
		width: 0;
		height: 0;
		position: relative;
		top: 85px;
	    left:45px
	}

	#featuredpost3 {
		width: 0;
		height: 0;
		position: relative;
		top: -269px;
	    left:-285px;
	}

	.feauturedTitleContainer{
		padding-top:110px !important;
	}*/
	
}



@media only screen and (max-width: 1429px){



	
/*
	.diamond, .diamond div {
	  margin: -30px;
	  transform-origin: 50% 50%;
	  overflow:hidden;
	  width: 250px;
	  height: 250px;
	}
	.diamond {
	  transform: rotate(45deg) translateY(10px);
	}

	.diamond .d {
	  width: 500px;
	  height: 500px;
	  transform: rotate(-45deg) translateY(-74px);
	}
	.diamond .d img {
	  width: 500px;
	  height: 500px;
	}


	#featuredpost1 {
		width: 0;
		height: 0;
		position: relative;
		top: 16px;
		left:-64px;
	}

	#featuredpost2 {
		width: 0;
		height: 0;
		position: relative;
		
		top: 90px;
	    left:45px;
	    
	}

	#featuredpost3 {
		width: 0;
		height: 0;
		position: relative;
		top: -178px;
	    left:-248px;
	}*/

	/*.feauturedTitleContainer{
		padding-top:90px !important;
	}*/


} /* end 1429 */





@media only screen and (max-width: 1240px){

	.relateeArticleOuter{
		padding-left:35px !important;
	}
	
}


@media only screen and (max-width: 1240px){

	.container{
		width:90% !important;
	}
	
}



@media only screen and (max-width: 1145px){

	
	.diamond, .diamond div {
	  margin: -30px;
	  transform-origin: 50% 50%;
	  overflow:hidden;
	  width: 250px;
	  height: 250px;
	}
	.diamond {
	  transform: rotate(45deg) translateY(10px);
	}

	.diamond .d {
	  width: 500px;
	  height: 500px;
	  transform: rotate(-45deg) translateY(-74px);
	}
	.diamond .d img {
	  width: 500px;
	  height: 500px;
	}


	#featuredpost1 {
		width: 0;
		height: 0;
		position: relative;
		top: -5px;
		left:-74px;
	}

	#featuredpost2 {
		width: 0;
		height: 0;
		position: relative;
		top: 92px;
	    left:8px
	}

	#featuredpost3 {
		width: 0;
		height: 0;
		position: relative;
		top: -199px;
	    left:-260px;
	}

	.feauturedTitleContainer{
		padding-top:120px !important;
	}

	.featuredArticleHeadline{
		font-size:45px !important;
		line-height: 50px !important;
		width:90%;
	}

	.authorMeta{
		line-height: 20px !important;
	}

	#articleExcerpt{
		line-height: 25px !important;
	}

	#theCategory{
		margin-bottom: 0px !important;
	}

}



@media only screen and (max-width: 992px){

	.editorialStaffSection{
	background-size:cover !important;
	}
	nav .brand-logo {
		left:120px !important;
	}

	.menu-mobile-container{
		padding-top:100px !important;
	}

	.feauturedTitleContainer{
		padding-top:30px !important;
	}
 	

	  .pblock2{
    	min-height: 410px !important;
    }

    .tagContainer{
    	padding-bottom: 20px !important;
    	padding-top:20px !important;
    }

	.featuredArticleHeadline{
		font-size:55px !important;
		line-height: 60px !important;
		width:100%;
	}

	.authorMeta{
		line-height: 40px !important;
		margin-bottom: 25px !important;
	}

	#articleExcerpt{
		line-height: 25px !important;
	}

	#theCategory{
		margin-bottom: 10px !important;
	}

	.feauturedTitleContainer{
		padding-bottom: 100px !important;
	}

	.articleSlider{
		min-height: 250px !important;
	}

	 .getOurNewsContainer2{
    	text-align: center !important;
    	padding-top:20px !important;
    }

    .getOurNewsContainer1{
    	text-align: center !important;
    }

    .ietfFooterLogo{
    	text-align:center !important;
    }

    .relateeArticleOuter{
    	padding-left:0px !important;
    }

    .relatedArticlesContent{
    	padding-left:0px !important;
    }

    .flexRow{
	 	display:block;
	}

	.articleMetaBlock{
		text-align: left !important;
		position: relative;
	}
	

	#journalIssueHeader h1{
		font-size: 45px !important;
		line-height: 50px !important;
	}


	.buttonContainer{
		padding-top:30px;
	}

}

@media only screen and (max-width: 874px){


	.menu-mobile-container{
		padding-top:10px !important;
	}


	#journalIssueHeader h1{
		font-size: 35px !important;
		line-height: 40px !important;
	}
	
	.journalVolumeDetails h3{
		font-size:15px !important;
	}

	.journalTopLinks h3{
		font-size:15px !important;
	}
}

@media only screen and (max-width: 700px){

		#journalIssueHeader h1{
		font-size: 30px !important;
		line-height: 35px !important;
	}
	.journalVolumeDetails h3{
		font-size:14px !important;
		line-height: 20px !important;
	}

	
}



.marginFourty{
	margin-top:40px;
}

.marginEighty{
	margin-top:80px;
}

@media only screen and (max-width: 650px){
	.socialTitle{
			display: none;
		}

		.social{
			font-size: 25px !important;
		}
}


@media only screen and (max-width: 600px){

	.articleSlider{
		min-height: 200px !important;
	}

	.feauturedTitleContainer{
		padding-bottom: 20px !important;
	}

	nav .brand-logo{
		left:125px !important;
		padding-left:0px !important;
	    font-size: 75px;
 	}

 	.featuredPost2{
	margin-top:0px;
	}

	.featuredPost3{
		margin-top:0px;
	}

	.justALittleSpace{
		padding-bottom: 50px !important;
	}

	#aboutUsSection h2{
		font-size: 35px !important;
		line-height: 50px !important;
	}

	.getOurNewsContainer1{
	text-align: center;
    }

    .getOurNewsContainer2{
    	text-align: center !important;
    	padding-top:20px !important;
    }

	/*	.infoLinks{
			padding-left:10px !important;
			padding-top:30px !important;
		}*/

		.ietfFooterLogo{
			text-align: center;
			margin-bottom: 50px;
		}

		.footerTopSection{
			border-bottom:0px !important;
		}

		.footerImg{
	  	max-height:100px;
	  	min-height: 100px;
	  }

		.footerMiddleSection{
			padding-top:30px;
		}

		#menu-popular-1{
			webkit-column-count:1 !important;
			moz-column-count: 1!important;
			column-count: 1!important;
		}

		.footerLinkContainer{
			text-align:center !important;
		}

		.footerLinkContainer h3{
			font-size:20px !important;
			font-weight: 700 !important;
		}

		#menu-popular-1 a{
			font-size:20px !important;
			font-weight: 400 !important;
		}

		#menu-popular-1 li{
			font-size:40px !important;
		}

		#menu-info a{
			font-size:20px !important;
			font-weight: 400 !important;
		}

		#menu-info li{
			font-size:40px !important;
		}

		.socialLink{
			text-align:center !important;
			padding-bottom: 20px !important;
		}

		.socialLink a{
			font-size:20px !important;
		}

		.socialIcon{
			margin-left:10px !important;
		}

		.socialLink .footerSiteInfo{
			font-size: 14px !important;
			color:#b0b0b0 !important;
			font-weight:400;
			font-style: normal !important;
			font-family: "Roboto" !important;
			letter-spacing: 1.5px !important;
			padding-top:30px !important;
		}

		.footerMiddleSection{
			border-bottom: none;
		}

		.feauturedTitleContainer{
			padding-top:35px !important;
		}

		.featuredArticleHeadline{
			font-size: 37px !important;
			line-height: 49px !important;
		}

		.buttonContainer{
			padding-top:15px !important;
		}

		.viewMoreCategoriesContainer{
			padding-left:0px !important;
		}

		.featuredJournalHeadline{
			font-size: 30px !important;
			line-height: 40px !important;
		}
		.featuredJournal{
			margin-bottom: 50px !important;
		}

		#featuredJournalIssues{
			padding-bottom: 50px !important;
		}

		#featuredTopics{
			padding-top:125px;
		}

		
		.authorMeta{
			font-size:22px !important;
		}

		.pblock{
	     min-height:350px;
        }

        .pblock2{
        	min-height: 410px !important;
        }

        .tagContainer{
        	padding-bottom: 30px !important;
        }

        .singlePostContainer h1{
        	font-size:55px !important;
        	line-height: 60px !important;

        }

        .postHeaderBackground{
			min-height:300px;
			max-height:300px;
		}

		.postExcerpt{
			padding-top:0px !important;
		}

		.relateeArticleOuter{
			padding-left:0.75rem !important;
		}

		.relatedArticlesContent{
			padding-left:0px;
		}

		.socialTitle{
			display: none;
		}

		.social{
			font-size: 25px !important;
		}




} /* end media query */

/* iphone 5 / 5s */

@media only screen and (min-device-width : 320px) and (max-device-width : 568px) and (orientation : portrait) { 

	nav .brand-logo{
		left:40% !important;
	}


}









