


html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, .tocTitle, 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, table tr.heading, 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: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

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

caption, th, table tr.heading, td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

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

a img {
    border: none;
}

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

*, *:before, *:after {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.clear {
    clear: both;
}

/*  Colors
================== */
/* Fonts
================== */
/* Rhythm
=================== */
/* Mixins
==================== */

.button, .action,
.toggleExtras-inactive,
.toggleExtras-active, #setup .options {
    padding: 2px 3px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    border: 1px solid #07355E;
    background-color: #ececed;
    font-weight: 300;
    margin-right: 1px;
}
.button:hover, .action:hover,
.toggleExtras-inactive:hover,
.toggleExtras-active:hover, #setup .options:hover, .button:focus, .action:focus,
.toggleExtras-inactive:focus,
.toggleExtras-active:focus, #setup .options:focus {
    background-color: #ececed;
}

.adminMenu ul, .pseudoMenu ul, #sidebar .block ul, #sidebarUser ul, table.listing ul {
    padding: 0;
    margin: .5em 0;
}
.adminMenu ul li, .pseudoMenu ul li, #sidebar .block ul li, #sidebarUser ul li, table.listing ul li {
    list-style-type: none;
    padding: 5px 0 5px 5px;
    display: block;
}
.adminMenu ul li a:before, .pseudoMenu ul li a:before, #sidebar .block ul li a:before, #sidebarUser ul li a:before, table.listing ul li a:before {
    padding-right: 5px;
}

@viewport {
    width: device-width;
}
/* 

Structure 
============
-- General HTML Elements
---- Headings
---- Links
---- Form Elements
-- Global Classes
-- Navigation
-- Header
-- Sidebars
-- Main
-- Footer
-- Issues
-- Articles
-- Popups

*/
/* General HTML Elements 
============================= */
/* apply a natural box layout model to all elements, but allowing components to change */
html {
    box-sizing: content-box;
}
html html {
    font-size: 100%;
    line-height: 1.5em;
}

*, *:before, *:after {
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 24px;
    background-color: #666;
}
body figure {
    display: inline-block;
}

em {
    font-style: italic;
}

strong {
    font-weight: 700;
}

blockquote {
    padding: 1em 1em 1em 2em;
}

ul {
    padding-left: 2em;
    list-style-type: disc;
}

ol {
    list-style-type: decimal;
    list-style-position: inside;
}
ol li {
    padding: 5px 0;
}

#container {
    background-color: white;
    overflow: auto;
    font-size: 13px;
}

#body {
    overflow: auto;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
    padding: 0 15px;
}
#body:after {
    content: " ";
    display: block;
    clear: both;
}
#body p {
    padding: .5em 0;
}

/* Skip to Content 
from http://codepen.io/joe-watkins/pen/rjhiK
*/
#skip-to-content {
    padding: 1em;
    position: absolute;
    top: -40px;
    left: 1em;
    z-index: 1000;
    color: white;
}

#skip-to-content:focus {
    position: absolute;
    top: 0;
    background: #4593ff;
}

/* Headings */
h1, h2, h3, h4, h5, .tocTitle, h6 {

}

h1 {
    font-weight: 700;
    font-size: 2.625em;
    line-height: 1.14286em;
}

h2, h3, h4, h5, .tocTitle, h6 {
    line-height: 1.8em;
}

h2 {
    font-size: 2em;
    font-weight: 700;
    padding: .5em 0;
}

h3 {
    font-size: 1.75em;
    font-weight: 700;
    padding-left: 5px;
    margin-top: 1em;
}

h4 {
    font-size: 1.25em;
    font-weight: 400;
    margin-top: .5em;
}

h5 {
    font-size: 1.25em;
}

.tocTitle {
    font-size: 100%;
}

/* Links */
a {
    text-decoration: none;
    color: #0e6bbd;
}
a:hover, a:focus {
    text-decoration: underline;
}
a:visited {
    color: #266BA8;
}
a:focus {
    color: #07355E;
}
a:hover {
    color: #36F;
}
a:active {
    color: #primary;
}

nav a {
    color: white;
}
nav a:visited {
    color: white;
}
nav a:focus {
    color: #f0bd7f;
    text-decoration: none;
}
nav a:hover {
    color: #000;
    text-decoration: none;
}
nav a:active {
    color: #f0bd7f;
    text-decoration: none;
}

#search a{
    padding: 5px 10px;
}
.iconoBuscar {
    width: 15px;
}

#pageFooter a {
    color: #1EB568;
}
#pageFooter a:visited {
    color: #17894f;
}
#pageFooter a:focus {
    color: #266BA8;
}
#pageFooter a:hover {
    color: #266BA8;
}
#pageFooter a:active {
    color: #006633;
}

.linea-footer {
    border: none;
    border-top: 1px solid #fff;
}

a.action, .button, .action,
.toggleExtras-inactive,
.toggleExtras-active, #setup .options, .options a {
 background:#e5e5e5;
    display:inline-block;
    margin:0 6px;
    padding:4px 12px;
    color:#333;
    text-decoration:none;
    text-shadow: 0 1px 1px #FFF;
    border:1px solid #ccc;
 
    /* Bordes redondenados - Border Radius */
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
 
    /* Fondo Degradado - Background Gradient */
    background:-webkit-linear-gradient(top, #fefefe, #e5e5e5); /* Chrome 10+ */
    background:   -moz-linear-gradient(top, #fefefe, #e5e5e5); /* Firefox 3.6+ */
    background:    -ms-linear-gradient(top, #fefefe, #e5e5e5); /* IE10 */
    background:        linear-gradient(top, #fefefe, #e5e5e5);
 
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
 
    /* Animacion - Transition */
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;}
a.action:visited, .button:visited, .action:visited,
.toggleExtras-inactive:visited,
.toggleExtras-active:visited, #setup .options:visited, .options a:visited {
 background:#e5e5e5;
    display:inline-block;
    margin:0 6px;
    padding:4px 12px;
    color:#333;
    text-decoration:none;
    text-shadow: 0 1px 1px #FFF;
    border:1px solid #ccc;
 
    /* Bordes redondenados - Border Radius */
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
 
    /* Fondo Degradado - Background Gradient */
    background:-webkit-linear-gradient(top, #fefefe, #e5e5e5); /* Chrome 10+ */
    background:   -moz-linear-gradient(top, #fefefe, #e5e5e5); /* Firefox 3.6+ */
    background:    -ms-linear-gradient(top, #fefefe, #e5e5e5); /* IE10 */
    background:        linear-gradient(top, #fefefe, #e5e5e5);
 
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
 
    /* Animacion - Transition */
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;  }
/*a.action:focus, .button:focus, .action:focus,
.toggleExtras-inactive:focus,
.toggleExtras-active:focus, #setup .options:focus, .options a:focus {
    color: #333;
}
*/a.action:hover, .button:hover, .action:hover,
.toggleExtras-inactive:hover,
.toggleExtras-active:hover, #setup .options:hover, .options a:hover {
border-color:#adcce2; /* Modificamos el color del borde */
 
    /* Cambiamos los colores del fondo degradado */
    background:-webkit-linear-gradient(top, #fefefe, #f1f1f1); /* Chrome 10+ */
    background:   -moz-linear-gradient(top, #fefefe, #f1f1f1); /* Firefox 3.6+ */
    background:    -ms-linear-gradient(top, #fefefe, #f1f1f1); /* IE10 */
    background:        linear-gradient(top, #fefefe, #f1f1f1);
 
    /* Modificamos las propiedades del Box Shadow para un efecto Glow */
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 6px rgba(36, 168, 229, .3);
    -moz-box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);
    box-shadow:inset 0 1px 0 rgba(251,247,193, .3), inset 0 0 0 1px rgba(251,247,193, .3), 0 1px 6px rgba(36, 168, 229, .3);  }
a.action:active, .button:active, .action:active,
.toggleExtras-inactive:active,
.toggleExtras-active:active, #setup .options:active, .options a:active {
 background:#e5e5e5;
    display:inline-block;
    margin:0 6px;
    padding:4px 12px;
    color:#333;
    text-decoration:none;
    text-shadow: 0 1px 1px #FFF;
    border:1px solid #ccc;
 
    /* Bordes redondenados - Border Radius */
    -webkit-border-radius:4px;
    -moz-border-radius:4px;
    border-radius:4px;
 
    /* Fondo Degradado - Background Gradient */
    background:-webkit-linear-gradient(top, #fefefe, #e5e5e5); /* Chrome 10+ */
    background:   -moz-linear-gradient(top, #fefefe, #e5e5e5); /* Firefox 3.6+ */
    background:    -ms-linear-gradient(top, #fefefe, #e5e5e5); /* IE10 */
    background:        linear-gradient(top, #fefefe, #e5e5e5);
 
    /* Aplcamos sombras al boton - Box Shadow */
    -webkit-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    -moz-box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
    box-shadow:inset 0 1px 0 rgba(255,255,255, .3), inset 0 0 0 1px rgba(255,255,255, .6), 0 1px 2px rgba(0, 0, 0, .1);
 
    /* Animacion - Transition */
    -webkit-transition: all ease-in-out .3s;
    -moz-transition: all ease-in-out .3s;
    transition: all ease-in-out .3s;  }

/* Forms */
input, select, textarea {
    margin: 0 .05em 0 0;
    font-size: 1em;
    line-height: 1.5em;
}

.label {
    width: 20%;
}

.value {
    width: 80%;
}

.value .textField, #searchJournal {
    width: 100%;
    max-width: 400px;
    margin-bottom: 10px;
}

.toggleExtras {
    width: 100%;
    max-width: 400px;
}

.toggleExtras span {
    display: block;
}

form {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
}

form.pkp_form {
    margin: initial;
}

input {
    padding: 2px;
}

/* Tables */
table {
    width: 100%;
    margin: 1em 0;
}
table th, table tr.heading {
    font-size: 1.125em;
    line-height: 1.33333em;
    background-color: #D1D3D5;
    border-bottom: 2px solid #D1D3D5;
    text-transform: capitalize;
    padding: .5em .25em;
}
table tr {
    margin: .5em 0;
}
table td {
    padding: .25em .25em;
    vertical-align: top;
}

.table-borders tr {
    border-bottom: 1px solid #D1D3D5;
}

/* Global Classes 
============================= */
.menu {
    margin: 0;
    padding: 0;
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    *zoom: 1;
}
.menu li {
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    white-space: nowrap;
    float: left;
    padding-left: 1em;
    padding-right: 1em;
    border-right: 2px solid #D1D3D5;
}
.menu li:first-child {
    padding-left: 0;
}
.menu li:last-child {
    padding-right: 0;
}
.menu li.last {
    padding-right: 0;
}
.menu li:last-child {
    border-right: none;
}

.callout {
    font-size: 1.125em;
    line-height: 1.33333em;
    font-weight: 700;
}

.block {
    margin-top: 0;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 0;
    height: 100%;
    clear: both;
}

.largeButton a {
    color: white !important;
    display: block;
    padding: 1em;
    background-color: #07355E;
    -moz-box-shadow: 0px 0px 5px #333333;
    -webkit-box-shadow: 0px 0px 5px #333333;
    box-shadow: 0px 0px 5px #333333;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    text-align: center;
}
.largeButton a:hover, .largeButton a:focus {
    background-color: #266BA8;
}

.headseparator {
    display: none;
}

.TOC {
    padding: 15px 10px;
    margin-bottom: 15px;
}

.pseudoHeading {
    font-size: 1.25em;
    line-height: 1.2em;
    padding: .5em 0 .25em;
}

.pseudoMenu, #sidebar .block, #sidebarUser {
    /*a {display:block;}*/
}

.label {
    font-weight: 700;
}

.separator {
    display: none;
}

.sort {
    border: 1px solid #D1D3D5;
}
.sort form {
    padding: .25em;
    margin: .25em 0;
}

.heading, #setup .pkp_controllers_grid table th, #setup .pkp_controllers_grid table tr.heading {
    font-size: 1.125em;
    line-height: 1.33333em;
    background-color: #dee0e1;
    padding: .25em;
}
.heading td:last-child, #setup .pkp_controllers_grid table th td:last-child, #setup .pkp_controllers_grid table tr.heading td:last-child {
    text-align: center;
}

.selectMenu {
    font-size: 0.875em;
    line-height: 1.71429em;
}

/* top menú
============================= */
.topMenu {
    background: rgb(38,99,173); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(38,99,173,1) 0%, rgba(26,65,122,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(38,99,173,1) 0%,rgba(26,65,122,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(38,99,173,1) 0%,rgba(26,65,122,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2663ad', endColorstr='#1a417a',GradientType=0 ); /* IE6-9 */
    height: 110px;
	color: #fff;
    font-size: 90%;
    line-height: 1.33333em;
}
.topMenu a, .topMenu a:hover {
    color: #fff;
}

.topMenuNav a:hover{
    text-decoration: none;
	color:#CCC;
    
}

.topMenuContainer {
    max-width: 1080px;
	min-height:110px;
    padding: 9px 12px;
    margin: 0 auto;
	background: url(../img/back_head.png) no-repeat top center;
}

.topMenuContainer img {
    width: auto;
}

.top-iij-logo, .topMenuNav {
    float: right;
}

.topMenuNav, .topMenuNav li {
    display: inline-block;
}

.topMenuNav li a {
    padding: 8px 12px;
    margin-right: 10px;
}

.topMenuNav {
    padding-top: 28px;
    padding-right: 50px;
}

/* Navigation
============================= */
nav {
    width: 100%;
    background-color: #666;
    overflow: auto;
    padding: .5em 0;
}

#mobileNav, #toggle-bar {
    display: none;
}

#navbar {
    height: 35px;
    max-width: 1080px;
    margin-left: auto;
    margin-right: auto;
    padding: 5px 15px;
    display: block;
    font-size: 14px;
    text-transform: uppercase;
}

#navbar:after {
    content: " ";
    display: block;
    clear: both;
}

ul.navMenu {
    float: right;
    margin-right: 120px;
}

ul.navMenu li {
    border-right: none;
    letter-spacing: .05em;
}

ul.navMenu li:last-child {
    border: none;
}

ul.navMenu.menu-inicio {
    float: left;
    margin-right: 0;
    font-weight: normal;
}
/*

.menuDorado, .menuDorado:hover, .menuDorado:visited {
    color: #265d99;
    text-decoration: none;
}


*/
.menuDorado, .menuDorado:visited {
    color: #FFF;
    text-decoration: none;
}
.menuDorado:hover {
    color: #333;
    text-decoration: underline;
}


#searchbar {
    width: 23.72881%;
    float: right;
    margin-right: 0;
    text-align: right;
}

#searchbar form {
    margin: 0;
}

#searchbar form input {
    padding: 2px 6px;
    margin: 0;
}

#breadcrumb a:link{
    font-size: 95%;
    line-height: 1.7em;
    padding: .5em 0;
	color:#144a98;
}
#breadcrumb a:hover, #breadcrumb a:visited:hover{
    font-size: 95%;
    line-height: 1.7em;
    padding: .5em 0;
	color:#333;
}
#breadcrumb a:visited{
    font-size: 95%;
    line-height: 1.7em;
    padding: .5em 0;
	color:#144a98;
}

/* Header
============================= */
#header {
    padding-top: 0em;
    padding-bottom: 0em;
    text-align: center;
}
#header h1, #header img {
    vertical-align: middle;
    display: inline-block;
    margin: 0;
}

#headerTitle {
    
}
#headerTitle figure {
    max-width: 1080px;
}
#headerTitle figure img {
    width: 100%;
    height: auto;
}

.tituloRevista {
    font-size:  1.5em;
    padding: 0;
    margin-bottom: 10px;
}

/* Sidebars 
============================= */
#sidebar {
    height: 100%;
}
#sidebar #submit-button {
    margin-bottom: 1.5em;
}
#sidebar form {
    margin: 0;
}
#sidebar .block .articleToolItem a {
    display: inline-block;
    vertical-align: top;
}
#sidebar .block h3 {
    font-weight: 400;
}

#leftSidebar {
    width: 20%;
    float: left;
    margin-right: 5%;
}

#rightSidebar {
    width: 25%;
    float: left;
	clear:none;
    margin-top: 56px;
    margin-right: 0;
    padding: 1.5%;
	border-radius: 8px 8px 8px 8px;
	-moz-border-radius: 8px 8px 8px 8px;
	-webkit-border-radius: 8px 8px 8px 8px;
	border: 1px solid #CCC;
	background:#ededed;
}

#sidebarHelp {
    margin-top: 0;
	line-height: 1em;
}
.blockTitle, #sidebar .block h3 {
    font-size: 1.25em;
    line-height: 1.2em;
    display: block;
    padding: 5px;
    /*background-color: #ececed;*/
    margin-bottom: .5em;
}
#sidebarDevelopedBy{
	border-bottom: 1px solid #999;
	}

#sidebarUser,#sidebarUser,#sidebarNavigation input.button{
	text-align: left;
	
	}	
	
	
/*Estilos para ligas Servicio de ayuda*/
a.blockTitle:link {
    font-size: 1.2em;
	color:#1a417a;
	font-weight:bold;
	text-decoration:none;
    line-height: 1.5em;
    display: block;
    padding: 2px 5px;
    /*background-color: #ececed;*/
    margin-bottom: 1%;
}
a.blockTitle:hover, a.blockTitle:visited:hover{
    font-size: 1.2em;
	color: #36F;
	font-weight:bold;
	text-decoration:none;
    line-height: 1.5em;
    display: block;
    padding: 2px 5px;
    /*background-color: #ececed;*/
    margin-bottom: 1%;
}
a.blockTitle:visited {
    font-size: 1.2em;
	color:#1a417a;
	font-weight:bold;
	text-decoration:none;
    line-height: 1.5em;
    display: block;
    padding: 2px 5px;
    /*background-color: #ececed;*/
    margin-bottom: 1%;
}

/*Ligas inferiores*/
#rightSidebar #sidebarNavigation ul li a:link {
    font-size: 1em;
	color:#1a417a;
	font-weight: normal;
	text-decoration:none;
    line-height: 1em;
    padding: 2px 5px;
    margin-bottom: 0;
    display: block;
}
#rightSidebar #sidebarNavigation ul li a:hover, #rightSidebar #sidebarNavigation ul li a:visited:hover{
    font-size: 1em;
	color:#333;
	font-weight: normal;
	text-decoration:none;
    line-height: 1em;
    padding: 2px 5px;
    margin-bottom: 0;
}
#rightSidebar #sidebarNavigation ul li a:visited {
    font-size: 1em;
	color:#1a417a;
	font-weight: normal;
	text-decoration:none;
    line-height: 1em;
    padding: 2px 5px;
    margin-bottom: 0;
}

/*Terminan links*/

.blockSubtitle {
    font-size: 1.125em;
    line-height: 1.33333em;
    display: block;
    border-bottom: 3px double #D1D3D5;
}

#sidebarRTAuthorBios .authorBio {
    padding: 1em 0;
    border-bottom: 1px solid #D1D3D5;
}

#sizer a {
    margin-right: 10px;
}

.authorBio p {
    padding: 0 0 .25em 0;
}

/* Main 
============================ */
#main {
    width: 72%;
    float: left;
    margin-right: 3%;
}

#main-completo {
    width: 100%;    
}

/* Inicio de revista
============================ */
.issueTitle {
    margin-top: 0;
}

#descripcionHomeRevista {
    width: 40%;
    margin-right: 5%;
    float: left;
	clear:both;
    margin-bottom: 20px;
    margin-top: 0px;
    padding: 0px;
}

#imagenHome img {
    width: 194px;
    //height: 288px;
}
#contenidoHomeRevista {
    width:50%;
    float: left;
	clear:none;
	margin-left:0;
    margin-bottom: 20px;
    text-align: justify;
}
#contenidoHomeRevista #issueCoverImage {
    width:100%
}

#contenidoHomeRevista #issueCoverImage a img{
    width: 80%;
	height:80%;
}



#datosDescripcionRevista {
    text-align: justify;
	font-size:100%;
}

#datosDescripcionRevista div {
    padding: 5px 10px;
    background-color: #f7f7f7;
    margin-bottom: 15px;
}

#datosDescripcionRevista p, #datosDescripcionRevista div {
    line-height: 1.4em !important;
    font-size: 100%;
}

#contenidoHomeRevista .tocSectionTitle {
    padding: 10px;
    width: 100%;
}

#contenidoHomeRevista .tocArticle {
    width: 100%;
}


/* Announcements */
#seccionAnuncios {
    display: block;
    clear: both;
}

.details td {
    margin-bottom: 1.5em;
}

/* Footer 
============================ */
#pageFooter {
    clear: both;
    text-align: center;
    border-top-width: 0.0625em;
    padding-top: 1.4375em;
    background: rgb(38,99,173); /* Old browsers */
	background: -moz-linear-gradient(top, rgba(38,99,173,1) 0%, rgba(26,65,122,1) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top, rgba(38,99,173,1) 0%,rgba(26,65,122,1) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom, rgba(38,99,173,1) 0%,rgba(26,65,122,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2663ad', endColorstr='#1a417a',GradientType=0 ); /* IE6-9 */
    color: #fff;
}
#pageFooter #social {
    font-size: 2.25em;
    line-height: 1.33333em;
    display: inline-block;
    line-height: 1em;
}
#pageFooter #social ul {
    margin: 0;
    padding: 0;
    border: 0;
    overflow: hidden;
    *zoom: 1;
}
#pageFooter #social li {
    padding: 0;
    list-style-image: none;
    list-style-type: none;
    margin-left: 0;
    white-space: nowrap;
    float: left;
    padding-left: 4px;
    padding-right: 4px;
}
#pageFooter #social li:first-child {
    padding-left: 0;
}
#pageFooter #social li:last-child {
    padding-right: 0;
}
#pageFooter #social li.last {
    padding-right: 0;
}
#pageFooter #social li i {
    padding-right: 5px;
}

.genericFooter {
    font-size: 11px;
    line-height: 17px;
    margin: 0 auto;
    max-width: 780px;
    padding: 1.5em 15px;
}

#standardFooter {
    max-width: 1080px;
    padding: 1.5em 15px;
    font-size: 12px;
    margin: 30px auto 0;
}

#standardFooter a img {
    max-width: 350px;
}

.img-footer-redes {
    width: 25px;
    margin-left: 10px;
}

.redesSociales {
    margin-bottom: 35px;
}

.datosInstituto {
    text-align: center;
	letter-spacing: 1px;
}

.derechosReservados {
    font-size: 11px;
}

/* Search 
============================ */
#results table {
    border: 1px solid #87908F;
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
}
#results table thead th, #results table thead tr.heading {
    border-bottom: 1px solid #87908F;
}
#results table tfoot th, #results table tfoot tr.heading, #results table tfoot td {
    border-top: 1px solid #87908F;
}
#results table th:first-child, #results table tr.heading:first-child {
    border-right: 1px solid #87908F;
}
#results table th:first-child, #results table tr.heading:first-child {
    border-right: none;
}
#results table tr:nth-child(odd) {
    border-bottom: 1px solid #D1D3D5;
}

/* Issues
============================ */
#issues .list {
    padding: 1em 0;
    /*border-bottom: none;*/
}
#issues .list .issueCoverImage {
    display: inline-block;
    max-width: 30%;
}
#issues .list .issueCoverImage img {
    width: 100%;
    border: 1px solid #D1D3D5;
}
#issues .list .issueDescriptionImage {
    padding: .5em;
    vertical-align: top;
    display: inline-block;
    max-width: 69%;
}
#issues .list h4:before {
    content: initial;
}

#content h1, #content h3 {
    font-weight: 700;
    font-size: 1.2em;
    line-height: 1.14286em;
}

/* Articles 
============================ */
a.file {
    padding: 0 .5em;
}

.tocArticleGalleysPages, .tocGalleys {
    text-align: end;
    vertical-align: middle;
}

.tocPages, .tocAuthors {
    padding-top: .5em;
}

.tocAuthors {
    font-size: 16px;
}

.tocArticleTitleAuthors {
    margin-top: 5px;
}

.tocCoverImage a.file {
    padding: 0;
    border: none;
}

#articleTitle h3 {
    background-color: initial;
}

.article #content {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
}
.article #main h3 {
    background-color: initial;
    padding-left: 0;
}

.list {
    /*border-bottom: 1px solid #D1D3D5;*/
}
.list h4:before {
    content: '\00BB';
    padding-right: 5px;
}

h3.issue {
    background: none;
    padding-left: 0;
}

#pdfDownloadLinkContainer {
    padding-bottom: .5em;
}

#pdfObject, #pdfCanvasContainer iframe {
    width: 100%;
    min-height: 700px !important;
}

#inlinePdf object {
    height: 900px;
}

/* Admin Pages  (home of the hacks)
============================ */
.sectionBlock {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
}

#selectSections select {
    width: 50%;
}

table.alt-color tbody tr:nth-child(even) {
    background-color: #e6e7e8;
}

table.alt-color-odd tbody tr:nth-child(odd) {
    background-color: #e6e7e8;
}

table.info {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
}
table.info th, table.info tr.heading {
    text-align: center;
    font-weight: bold;
}
table.info td,
table.info th,
table.info tr.heading {
    padding: 2px;
}
table.info td.numeric,
table.info th.numeric,
table.info tr.numeric.heading {
    text-align: right;
}
table.info .tableHeading {
    font-size: 1.125em;
    line-height: 1.33333em;
    background-color: #dee0e1;
}
table.info a {
    display: inline-block;
}
table.info tr {
    border-bottom: 1px solid #D1D3D5;
}
table.info tr:last-child {
    border-bottom: none;
}
table.info td:first-child {
    text-align: left;
}
table.info td {
    text-align: center;
}

table.listing .heading a, #setup .pkp_controllers_grid table.listing th a, #setup .pkp_controllers_grid table.listing tr.heading a {
    color: #000;
}
table.listing tr {
    border-bottom: 1px solid #D1D3D5;
}
table.listing tr:last-child {
    border-bottom: none;
}
table.listing td {
    text-align: left;
}

table.settings {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
    border: 1px solid #D1D3D5;
}
table.settings thead th, table.settings thead tr.heading {
    border-bottom: 1px solid #D1D3D5;
}
table.settings tfoot th, table.settings tfoot tr.heading, table.settings tfoot td {
    border-top: 1px solid #D1D3D5;
}
table.settings th:first-child, table.settings tr.heading:first-child {
    border-right: 1px solid #D1D3D5;
}
table.settings td.label {
    vertical-align: middle;
}

table.checklist td {
    vertical-align: middle;
}

table.email tr:nth-child(odd) {
    background-color: #e6e7e8;
}

table.listing span.instruct {
    margin: 0;
}

table.nested {
    font-size: 0.875em;
    line-height: 1.71429em;
}

table.single {
    border-top: 2px solid #D1D3D5;
    border-bottom: 2px solid #D1D3D5;
    /*	background-color: lighten($accent-bright, 50%);
    */
}

#profile table tr {
    border-bottom: 1px solid #D1D3D5;
}

#systemConfiguration h4 {
    text-transform: capitalize;
    margin-top: 1em;
    padding: .25em;
    background-color: #ececed;
}
#systemConfiguration table tr {
    border-bottom: 1px solid #D1D3D5;
}

.highlightReviewerNotNotified, .highlightCopyediting {
    background-color: #266BA8;
}
.highlightReviewerNotNotified:before, .highlightCopyediting:before {
    content: "\00b9";
    padding: 0 4px;
}

.highlightNoDecision {
    background-color: #07355E;
    color: white;
}
.highlightNoDecision:before {
    content: "\00b2";
    padding: 0 4px;
}

.highlightReviewerConfirmationOverdue {
    background-color: #FF6C3E;
}
.highlightReviewerConfirmationOverdue:before {
    content: "\2020";
    padding: 0 4px;
}

.highlightRevisedCopyUploaded, .highlightLayoutEditing {
    background-color: #1EB568;
}
.highlightRevisedCopyUploaded:before, .highlightLayoutEditing:before {
    content: "\2666";
    padding: 0 4px;
}

.highlightReviewerCompletionOverdue, .higlightProofreading {
    background-color: #006633;
    color: white;
}
.highlightReviewerCompletionOverdue:before, .higlightProofreading:before {
    content: "\25CA";
    padding: 0 4px;
}

.highlightCopyediting a,
.highlightLayoutEditing a,
.highlightNoDecision a,
.highlightReviewerCompletionOverdue a,
.highlightRevisedCopyUploaded a,
.highlightReviewerConfirmationOverdue a,
.highlightReviewerNotNotified a,
.higlightProofreading a {
    background-color: initial;
    border-color: initial;
}

#notes ul {
    padding: 0;
}
#notes ul li {
    padding: .5em;
    list-style-type: none;
}

span.instruct {
    display: block;
    margin: .5em 0;
}

#assignBlocksToSidebars {
    border: 1px solid #D1D3D5;
}
#assignBlocksToSidebars .heading, #assignBlocksToSidebars #setup .pkp_controllers_grid table th, #setup .pkp_controllers_grid table #assignBlocksToSidebars th, #assignBlocksToSidebars #setup .pkp_controllers_grid table tr.heading, #setup .pkp_controllers_grid table #assignBlocksToSidebars tr.heading {
    text-align: center;
    border: 1px solid #87908F;
}
#assignBlocksToSidebars input {
    padding: 2px 0;
}
#assignBlocksToSidebars td.centerButton {
    vertical-align: middle !important;
}

#setup .options {
    margin-top: 2em;
}
#setup .pkp_controllers_grid table {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
    border: 1px solid #87908F;
}
#setup .pkp_controllers_grid table th, #setup .pkp_controllers_grid table tr.heading, #setup .pkp_controllers_grid table td {
    border-right: 1px solid #D1D3D5;
    border-bottom: 1px solid #D1D3D5;
    border-left-width: 0;
    border-top-width: 0;
}
#setup .pkp_controllers_grid table th:last-child, #setup .pkp_controllers_grid table tr.heading:last-child, #setup .pkp_controllers_grid table td:last-child {
    border-right-width: 0;
}
#setup .pkp_controllers_grid table th.last, #setup .pkp_controllers_grid table tr.last.heading, #setup .pkp_controllers_grid table td.last {
    border-right-width: 0;
}
#setup .pkp_controllers_grid table tbody tr:last-child th, #setup .pkp_controllers_grid table tbody tr:last-child tr.heading, #setup .pkp_controllers_grid table tbody tr:last-child td, #setup .pkp_controllers_grid table tfoot tr:last-child th, #setup .pkp_controllers_grid table tfoot tr:last-child tr.heading, #setup .pkp_controllers_grid table tfoot tr:last-child td {
    border-bottom-width: 0;
}
#setup .pkp_controllers_grid table tbody tr.last th, #setup .pkp_controllers_grid table tbody tr.last tr.heading, #setup .pkp_controllers_grid table tbody tr.last td, #setup .pkp_controllers_grid table tfoot tr.last th, #setup .pkp_controllers_grid table tfoot tr.last tr.heading, #setup .pkp_controllers_grid table tfoot tr.last td {
    border-bottom-width: 0;
}
#setup .pkp_controllers_grid table thead th, #setup .pkp_controllers_grid table thead tr.heading {
    border-bottom: 1px solid #87908F;
}
#setup .pkp_controllers_grid table tfoot th, #setup .pkp_controllers_grid table tfoot tr.heading, #setup .pkp_controllers_grid table tfoot td {
    border-top: 1px solid #87908F;
}
#setup .pkp_controllers_grid table th:first-child, #setup .pkp_controllers_grid table tr.heading:first-child {
    border-right: 1px solid #87908F;
}

td form {
    margin: 0;
}

.refbacks .menu {
    margin: 1em 0;
}

.endseparator {
    display: none;
}

.composite-ui {
    font-size: 0.875em;
    line-height: 1.71429em;
}
.composite-ui div.pane div.help-message {
    margin: 10px;
    padding: 0;
}
.composite-ui div.two-pane table.pane_header {
    margin-top: 0;
}

.composite-ui > .ui-tabs ul.main-tabs a {
    font-size: 1.25em;
}

.pkp_controllers_grid h3 {
    background-color: initial;
}

/* Author Submission Pages */
.steplist {
    padding: 0;
}
.steplist li {
    list-style-type: none;
}

.pseudoMenu .current, #sidebar .block .current, #sidebarUser .current {
    background-color: #D1D3D5;
}

/* Plugin Management */
#plugins a.action {
    display: inline-block;
}
#plugins a.action:before {
    content: initial;
}

.pluginList ul {
    padding: 0;
    margin: .5em 0;
}
.pluginList ul li {
    list-style-type: none;
    padding: 10px 0 5px 5px;
    border-bottom: 1px solid #D1D3D5;
}
.pluginList ul li p:before {
    content: '\00BB';
    padding-right: 5px;
}

/* PopUp Windows  */
.popup #header {
    margin: .5em 0;
    min-height: initial;
    color: white;
    text-align: right;
    font-size: 0.875em;
    line-height: 1.71429em;
}
.popup #header #headerTitle {
    padding: 0;
}
.popup #body {
    width: 100%;
    padding: 2em;
    margin-top: 0;
}
.popup #main {
    width: 100%;
}
.popup #main h3 {
    background-color: initial;
    font-weight: 400;
    padding: 0;
}
.popup table {
    margin-top: 0;
}

/* Comment Windows */
#articleComments table {
    border: 1px solid #D1D3D5;
}
#articleComments table thead th, #articleComments table thead tr.heading {
    border-bottom: 1px solid #D1D3D5;
}
#articleComments table tfoot th, #articleComments table tfoot tr.heading, #articleComments table tfoot td {
    border-top: 1px solid #D1D3D5;
}
#articleComments table th:first-child, #articleComments table tr.heading:first-child {
    border-right: 1px solid #D1D3D5;
}
#articleComments table th, #articleComments table tr.heading, #articleComments table td {
    border-right: 1px solid #D1D3D5;
    border-bottom: 1px solid #D1D3D5;
    border-left-width: 0;
    border-top-width: 0;
}
#articleComments table th:last-child, #articleComments table tr.heading:last-child, #articleComments table td:last-child {
    border-right-width: 0;
}
#articleComments table th.last, #articleComments table tr.last.heading, #articleComments table td.last {
    border-right-width: 0;
}
#articleComments table tbody tr:last-child th, #articleComments table tbody tr:last-child tr.heading, #articleComments table tbody tr:last-child td, #articleComments table tfoot tr:last-child th, #articleComments table tfoot tr:last-child tr.heading, #articleComments table tfoot tr:last-child td {
    border-bottom-width: 0;
}
#articleComments table tbody tr.last th, #articleComments table tbody tr.last tr.heading, #articleComments table tbody tr.last td, #articleComments table tfoot tr.last th, #articleComments table tfoot tr.last tr.heading, #articleComments table tfoot tr.last td {
    border-bottom-width: 0;
}
#articleComments table .commentNote {
    font-weight: 700;
}
#articleComments table .comments {
    margin-top: 1.5em;
    padding-top: 0em;
    padding-bottom: 0em;
    margin-bottom: 1.5em;
}

.commentTitle {
    text-decoration: underline;
    font-size: 1.0625em;
    line-height: 1.41176em;
}

/* User */
.fancyList ul, #signinForm ul {
    padding: 0;
    margin: .5em 0;
}
.fancyList ul li, #signinForm ul li {
    list-style-type: none;
    padding: 10px 0 5px 5px;
    border-bottom: 1px solid #D1D3D5;
}
.fancyList ul li:before, #signinForm ul li:before {
    content: '\00BB';
    padding-right: 5px;
}

#interests .ui-widget-content.ui-autocomplete-input {
    width: 99%;
}

.tagit-close .ui-icon.ui-icon-close {
    display: none;
}

/* Estilos de la pantalla principal de la revista
============================ */
#listadoLetras{
    margin-bottom: 20px;
}

.revistasContenedor {
    display: inline-block;
    width: 100%;
    color: #3f3f3f;
}

.columnaRevista {
    width: 100%;
    text-align: justify;
    margin-bottom: 40px;
    clear: both;
}

.columnaRevista:nth-child(3n+1){
    clear:left
}

.columnaRevista h3 {
    padding: 10px;
}

.columnaRevista {
    font-size: 13px !important;
}

.journalListPageInfo {
    display: block;
}

.homeRevistasLinks {
    margin: 10px 0;
}

.homeRevistasLinks a {
    border: none;
    background-color: #00b2c0;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0;
    margin-right: 15px;
}

.homeRevistasLinks a:hover, .homeRevistasLinks a:visited {
    background-color: #00b2c0;
    color: #fff;
}

.imagenListadoRevista {
    width: 18%;
    float: left;
    margin-right: 2%;
    margin-bottom: 40px;
}

.descripcionListadoRevista {
    width: 80%;
    float: left;
    margin-bottom: 40px;    
}

.descripcionListadoRevista h3 {
    margin: 0 0 10px 0;
    padding: 0 0 15px 0;
    background-color: transparent;
    border-bottom: 2px solid #ddd;
}

.img-revista-home {
    width: 100%;
}

/* Mobile 
============================ */
@media screen and (max-width: 991px) {
    /**
    * 
    */
    #headerTitle {
        display: none;
    }

    /* */
    .top-iij-logo, .top-unam-logo {
        float: left;
    }
    
    .img-logo-header {
        margin-right: 15px;
        margin-left: 5px;
    }

    /* Changes:
    - Collapse Top Menu
    */
    #fullNav {
        display: none;
    }

    .navicon, .topMenuNav {
        display: none;
    }
    a.navicon {
        display: inline-block;
        float: right;
        height: 20px;
        width: 34px;
        margin: 18px 30px;
        border-top: 12px double #FFF;
        border-bottom: 4px solid #FFF;
        font-size: 0;
        text-align: right;
    }
    
    #mobileNav, #toggle-bar {
        display: block;
    }
    nav {
        padding: 0;
    }
    #navbar {
        padding: 0;
        height: 3px;
    }
    #mobileNav .menu {
        display: none;
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    #mobileNav .menu li {
        clear: both;
        display: block;
        width: 100%;
        text-align: left;
        text-transform: uppercase;
        margin: 2px 0;
        padding: 6px 0 6px 38px;
    }
    #mobileNav .menu li:last-child {
        border: none;
    }
    #mobileNav .menu li a {
        display: block;
        color: white;
    }
    #mobileNav .menu li a:visited {
        color: white;
    }
    #mobileNav .menu li a:focus {
        color: #f0bd7f;
    }
    #mobileNav .menu li a:hover {
        color: #f0bd7f;
    }
    #mobileNav .menu li a:active {
        color: #f0bd7f;
    }
    #mobileNav .menu li #searchbar {
        display: block;
        width: 100%;
        float: left;
        text-align: center;
    }

    #body {
        padding: 0 4%;
    }

    #main img {
        max-width: 350px;
        height: auto;
    }

    .redesSociales {
        display: block;
        float: none;
        text-align: center;
    }

    .columnaRevista{
        width: 97%;
        float: none;
        margin: 0 3%;
        min-height: 100px;
    }

    #descripcionHomeRevista {
        width: 100%;
        margin: 10px auto;
        float: none;
        text-align: center;
    }

    #contenidoHomeRevista {
        width: 100%;
        margin: 0;
        float: none;
    }


    /* Changes for Mobile:
    - Collapse sidebar using javascript
    - Main div spans full width
    */
    #main {
        width: 100%;
        float: left;
        margin-left: 0;
        margin-right: 0;
        padding-right: 0;
    }

    #main img {
        max-width: 250px;
        height: auto;
    }

    #rightSidebar {
        width: 100%;
        float: right;
        margin-top: 30px;
    }

    #pdfObject, #pdfCanvasContainer iframe {
        min-height: 400px !important;
    }

    #standardFooter a img {
        max-width: 250px;
    }

    #issues .list .issueCoverImage, #issues .list .issueDescriptionImage {
        max-width: 100%;
    }
    
    #textoDescripcion {
        display: none;
    }
}

@media screen and (max-width: 600px) {  
    a.action {
        display: inline-block;
        width: 100%;
    }

    .homeRevistasLinks a.action {
        width: auto;
        margin-bottom: 10px;
    }
}

@media screen and (max-width: 400px) {
    .columnaRevista {
        text-align: center;
        width: 100%;
    }

    .descripcionListadoRevista {
        float: none;
        margin-bottom: 40px;
        width: 100%;
    }

    .imagenListadoRevista {
        float: none;
        margin: 0 auto 10px;
        width: 50%;
        text-align: center;
    }
}


/*CSS para el slider*/

/* ====================================================================================================================
 * FONT-FACE
 * ====================================================================================================================*/
@font-face {
  font-family: 'flexslider-icon';
  src: url(fonts/flexslider-icon.eot);
  src: url('fonts/flexslider-icon.eot?#iefix') format('embedded-opentype'), url('fonts/flexslider-icon.woff') format('woff'), url('fonts/flexslider-icon.ttf') format('truetype'), url('fonts/flexslider-icon.svg#flexslider-icon') format('svg');
  font-weight: normal;
  font-style: normal;
}


	/* ====================================================================================================================
 * RESETS
 * ====================================================================================================================*/
.flex-container a:hover,
.flex-slider a:hover {
  outline: none;
}
.slides,
.slides > li,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none;
}
.flex-pauseplay span {
  text-transform: capitalize;
}
/* ====================================================================================================================
 * BASE STYLES
 * ====================================================================================================================*/
#banner{
	margin:2% auto;
	width:65%;}
.flexslider {
  margin: 0;
  padding: 0;
}
.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden;
}
.flexslider .slides img {
  width: 100%;
  display: block;
}
.flexslider .slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
html[xmlns] .flexslider .slides {
  display: block;
}
* html .flexslider .slides {
  height: 1%;
}
.no-js .flexslider .slides > li:first-child {
  display: block;
}
/* ====================================================================================================================
 * DEFAULT THEME
 * ====================================================================================================================*/
.flexslider {
  margin: 0 0 60px;
  background: #ffffff;
  border: 4px solid #ffffff;
  position: relative;
  zoom: 1;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  -o-box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
  box-shadow: '' 0 1px 4px rgba(0, 0, 0, 0.2);
}
.flexslider .slides {
  zoom: 1;
}
.flexslider .slides img {
  height: auto;
  -moz-user-select: none;
}
.flex-viewport {
  max-height: 2000px;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.loading .flex-viewport {
  max-height: 300px;
}
.carousel li {
  margin-right: 5px;
}
.flex-direction-nav {
  *height: 0;
}
.flex-direction-nav a {
  text-decoration: none;
  display: block;
  width: 40px;
  height: 40px;
  margin: -20px 0 0;
  position: absolute;
  top: 50%;
  z-index: 10;
  overflow: hidden;
  opacity: 0;
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  
}
.flex-direction-nav a:before {
  font-family: "flexslider-icon";
  font-size: 200%;
  display: inline-block;
  content: '\f001';
  color: rgba(0, 0, 0, 0.8);
  text-shadow: 1px 1px 0 rgba(255, 255, 255, 0.3);
  line-height:50px;
}
.flex-direction-nav a.flex-next:before {
  content: '\f002';
}
.flex-direction-nav .flex-prev {
  left: -50px;
}
.flex-direction-nav .flex-next {
  right: -50px;
  text-align: right;
}
.flexslider:hover .flex-direction-nav .flex-prev {
  opacity: 0.7;
  left: 10px;
}
.flexslider:hover .flex-direction-nav .flex-prev:hover {
  opacity: 1;
}
.flexslider:hover .flex-direction-nav .flex-next {
  opacity: 0.7;
  right: 10px;
}
.flexslider:hover .flex-direction-nav .flex-next:hover {
  opacity: 1;
}
.flex-direction-nav .flex-disabled {
  opacity: 0!important;
  filter: alpha(opacity=0);
  cursor: default;
  z-index: -1;
}
.flex-pauseplay a {
  display: block;
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 5px;
  left: 10px;
  opacity: 0.8;
  z-index: 10;
  overflow: hidden;
  cursor: pointer;
  color: #000;
}
.flex-pauseplay a:before {
  font-family: "flexslider-icon";
  font-size: 20px;
  display: inline-block;
  content: '\f004';
}
.flex-pauseplay a:hover {
  opacity: 1;
}
.flex-pauseplay a.flex-play:before {
  content: '\f003';
}
.flex-control-nav {
  width: 100%;
  position: absolute;
/*  bottom: -40px;
*/  text-align: center;
}
.flex-control-nav li {
  margin: 0 6px;
  display: inline-block;
  zoom: 1;
  *display: inline;
}
.flex-control-paging li a {
  width: 11px;
  height: 11px;
  display: block;
  background: #666;
  background: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  text-indent: -9999px;
  -webkit-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -o-box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  border-radius: 20px;
}
.flex-control-paging li a:hover {
  background: #333;
  background: rgba(0, 0, 0, 0.7);
}
.flex-control-paging li a.flex-active {
  background: #000;
  background: rgba(0, 0, 0, 0.9);
  cursor: default;
}
.flex-control-thumbs {
  margin: 5px 0 0;
  position: static;
  overflow: hidden;
}
.flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
}
.flex-control-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  opacity: .7;
  cursor: pointer;
  -moz-user-select: none;
  -webkit-transition: all 1s ease;
  -moz-transition: all 1s ease;
  -ms-transition: all 1s ease;
  -o-transition: all 1s ease;
  transition: all 1s ease;
}
.flex-control-thumbs img:hover {
  opacity: 1;
}
.flex-control-thumbs .flex-active {
  opacity: 1;
  cursor: default;
}
/* ====================================================================================================================
 * RESPONSIVE
 * ====================================================================================================================*/
@media screen and (max-width: 860px) {
  
  #banner{
	margin:10% auto;
	width:100%;}

  .flex-direction-nav .flex-prev {
    opacity: 1;
    left: 10px;
  }
  .flex-direction-nav .flex-next {
    opacity: 1;
    right: 10px;
  }
}

.flex-caption {
	background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    bottom: 0;
    color: #fff;
    font-size: 14px;
    left: 0;
    line-height: 18px;
    padding: 2%;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
    width: 100%;
	margin-top:0;
}

li.css a {
	border-radius: 0;
	}
