/*==========  Desktop First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
	.nav {
		font-size: 13px;
		line-height: 1.6;
	}

	.nav a {
		/*margin-left: 25px;*/
	}

	.main-text {
		font-size: 14px;
	}

	.journals-item-name {
		font-size: 16px;
	}

	.right-menu {
		width: 100%;
	}

	.right-menu a {
		font-size: 16px;
		padding-right: 10px;
	}
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
	.nav {
		text-align: center;
		line-height: 1.6;
	}

	.header-links a {
		margin-left: 5px;
	}

	.header-links {
		margin-left: 15px;
	}

	.right-menu {
		float: none;
	}

	.right-menu a {
		font-size: 14px;
	}

	.journals-item-name {
		font-size: 14px;
	}

	.input-search {
		width: 150px;
	}

	.journals-item {
		float: none;
		width: 100%;
	}

	.journals-series .journals-item {
		width: 30%;
		margin: auto;
	}

	.journals-series .journals-item-name {
		margin-bottom: 15px;
	}
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
	.header-logo {
		margin-bottom: 15px;
	}

	.header-logo img {
		margin: auto;
	}

	.header-nav {
		text-align: center;
		float: none;
	}

	.header-search {
		float: none;
		display: inline-block;
		margin: 0 10px;
		margin-bottom: 10px;
	}

	.header-links {
		float: none;
		display: inline-block;
		margin-left: 0;
	}

	.header-search .input-search {
		opacity: 1;
	}

	.right-menu {
		margin: auto;
		margin-bottom: 20px;
	}

	.header-links a {
		margin-left: 0;
	}

	.journal {
		text-align: center;
	}

	.left-menu {
		text-align: center;
		margin-bottom: 40px;
	}

	.title {
		text-align: center;
	}

	.mini {
		text-align: center;
	}

	.archive {
		margin-bottom: 30px;
	}

	.article {
		margin-bottom: 30px;
	}

	.breadcrumbs {
		line-height: 1.3;
	}

	.socialize {
		text-align: center;
	}

	.footer {
		text-align: center;
	}
}

/* Extra Small Devices, Phones */
@media only screen and (max-width : 480px) {

}

/* Custom, iPhone Retina */
@media only screen and (max-width : 320px) {

}


/*==========  Mobile First Method  ==========*/

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {

}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {

}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {

}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {

}

 /* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
	.nav {
		font-size: 13px;
		line-height: 1.6;
	}
}