/*
 * iweb51-style012
 *
 * Copyright 2015, TANK
 * 
 * 
 * 2016 / 01 / 05
 */


/* +content
*----------------------------------------------------------------------------*/
#content {
	margin: 0 auto;
	padding: 20px 20px;
	width: 1120px;
	background: #fff;
	position: relative;
    top: -40px;
    box-shadow: 5px 5px 10px rgba(194, 194, 194, 0.5);
	transition: all 0.4s ease;
}

#content section {
	background: url(/images/25/article/bg-container.gif) no-repeat right 25px;
	overflow: hidden;
}

/**
*
* =waylink
*
**/
#content section .waylink {
	margin-bottom: 10px;
	text-align: right;
	font-size: 12px;
	color: #525252;
}

/**
*
* =page title
*
**/
#content section > h2 {
	margin: 35px 0 25px;
	padding-bottom: 45px;
	border-bottom: 5px #ccc solid;
	position: relative;
	font-size: 32px;
	color: #000;
	font-weight: bold;
}

#content section h2 > span {
	margin-top: -5px;
	display: block;
	font-size: 15px;
	color: #8b8b8b;
	text-transform:uppercase;
	letter-spacing: 2px;
}

#content section > h2:after {
	display: inline-block;
    content: "";
	width: 30%;
	height: 5px;
	background: #14815e;
	position: absolute;
	bottom: -5px;
	left: 0;
}

/**
*
* =side-nav
*
**/
#content section #side-nav {
	margin-bottom: 30px;
}

#content section #side-nav ul {
	padding-bottom: 10px;
	overflow: hidden;
}

#content section #side-nav ul li {
	margin-bottom: 10px;
	float: left;
}

#content section #side-nav ul li a {
	padding: 5px 10px;
	border: 1px #ccc solid;
	display: inline-block;
	position: relative;
	font-size: 13px;
	color: #7c7e81;
}

#content section #side-nav ul li a:hover ,
#content section #side-nav ul li.action a {
	background: #14815e;
	border: 1px #14815e solid;
	color: #fff;
}

#content section #side-nav ul li a:hover:after ,
#content section #side-nav ul li.action a:after {
	content: "";
    width: 0px;
    height: 0px;
    border-style: solid;
    border-width: 5px 7.5px 0 7.5px;
    border-color: #14815e transparent transparent transparent;
    position: absolute;
    bottom: -5px;
    left: 50%;
    margin-left: -7.5px;
}

/**
*
* =content-main
*
**/
#content section .content-main {
	margin-bottom: 10px;
}

#content section .content-main article img {
	max-width: 100%;
	height: auto;
}


/* +width:1280 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 1280px) {
	#content {
		width: 920px;
	}
}
@media screen and (max-width: 1024px) {
	#content {
		width: 90%;
		margin: 0 auto;
	}
}

/* +width:768 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 768px) {
	#content {
		margin: 0 15px;
		width: auto;
	}
	#content section #side-nav ul li a:hover:after, #content section #side-nav ul li.action a:after{display: none;}
}


/* +width:480 ↓
*----------------------------------------------------------------------------*/
@media screen and (max-width: 480px) {
	
}