@charset 'UTF-8';
@import url("font-awesome.min.css");
@import url("http://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400italic,700|Open+Sans+Condensed:300,700");

/*
	Striped by HTML5 UP
	html5up.net | @n33co
	Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
*/

/*********************************************************************************/
/* Basic                                                                         */
/*********************************************************************************/

	body
	{
		background-color: #e8e8e8;
		background-image: url('images/bg02.png');
		overflow:hidden;
	}

		body.is-loading * {
			-moz-transition: none !important;
			-webkit-transition: none !important;
			-o-transition: none !important;
			-ms-transition: none !important;
			transition: none !important;
			-moz-animation: none !important;
			-webkit-animation: none !important;
			-o-animation: none !important;
			-ms-animation: none !important;
			animation: none !important;
		}

	body,input,textarea,select
	{
		font-family: 'Source Sans Pro', sans-serif;
		font-weight: 400;
		color: #565656;
	}

	a
	{
		color: #c94663;
	}

	strong, b
	{
		font-weight: 700;
		color: #232323;
	}

	h2,h3,h4,h5,h6
	{
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		color: #232323;
	}

	h2 a, h4 a, h5 a, h6 a
	{
		text-decoration: none;
		color: inherit;
	}
	
	blockquote
	{
		border-left: solid 5px #ddd;
		padding: 1em 0 1em 2em;
		font-style: italic;
	}
	
	em, i
	{
		font-style: italic;
	}
	
	hr
	{
		border: 0;
		border-top: solid 1px #ddd;
		padding: 1.5em 0 0 0;
		margin: 1.75em 0 0 0;
	}
	
	sub
	{
		position: relative;
		top: 0.5em;
		font-size: 0.8em;
	}
	
	sup
	{
		position: relative;
		top: -0.5em;
		font-size: 0.8em;
	}

	br.clear
	{
		clear: both;
	}
	
	p, ul, ol, dl, table
	{
		margin-bottom: 1em;
	}
	
	/* Table */
	
		table
		{
			width: 100%;
		}
		
		table.default
		{
		}
		
			table.default tbody tr:nth-child(2n+2)
			{
				background: #f4f4f4;
			}
			
			table.default td
			{
				padding: 0.5em 1em 0.5em 1em;
			}
			
			table.default th
			{
				text-align: left;
				font-weight: 700;
				padding: 0.75em 1em 0.75em 1em;
			}
		
			table.default thead
			{
				border-bottom: solid 1px #ddd;
			}
			
			table.default tfoot
			{
				border-top: solid 1px #ddd;
				background: #eee;
			}
			
			table.default tbody
			{
			}

	/* Form */
		
		form
		{
		}
		
			form label
			{
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
				color: #232323;
				margin: 0 0 0.75em 0;
			}
		
			form input[type="text"],
			form input[type="email"],
			form input[type="password"],			
			form select,
			form textarea
			{
				display: block;
				border-radius: 0.4em;
				-webkit-appearance: none;
				border: solid 1px #ddd;
				padding: 0.5em 0.75em;
				width: 100%;
				line-height: 1.25em;
			}

			form input[type="text"]:focus,
			form input[type="email"]:focus,
			form input[type="password"]:focus,
			form select:focus,
			form textarea:focus
			{
				box-shadow: 0px 0px 2px 2px #c94663;
			}

			form ::-webkit-input-placeholder
			{
				color: #aaa;
			}

			form :-moz-placeholder
			{
				color: #aaa;
			}

			form ::-moz-placeholder
			{
				color: #aaa;
			}

			form :-ms-input-placeholder
			{
				color: #aaa;
			}
		
	/* Section/Article */
	
		header
		{
			margin: 0 0 2em 0;
		}

			header > p
			{
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 300;
				display: block;
				margin-top: 1em;
				color: #999;
			}

		section,
		article
		{
			margin-bottom: 3em;
		}
		
			section > :last-child,
			article > :last-child
			{
				margin-bottom: 0;
			}

			section > .inner > :last-child,
			article > .inner > :last-child
			{
				margin-bottom: 0;
			}

			section:last-child,
			article:last-child
			{
				margin-bottom: 0;
			}

	/* Image */

		.image
		{
			display: inline-block;
		}
		
			.image img
			{
				display: block;
				width: 100%;
			}

			.image.fit
			{
				display: block;
				width: 100%;
			}
			
			.image.featured
			{
				display: block;
				width: 100%;
				margin: 0 0 2em 0;
			}
			
			.image.left
			{
				float: left;
				margin: 0 2em 2em 0;
			}
			
			.image.centered
			{
				display: block;
				margin: 0 0 2em 0;
			}

				.image.centered img
				{
					margin: 0 auto;
					width: auto;
				}
	
	/* Button */

		input[type="button"],
		input[type="submit"],
		input[type="reset"],
		.button
		{
			cursor: pointer;
			background-color: #c94663;
			background-image: url('images/bg01.png');
			border-radius: 0.4em;
			text-align: center;
			box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.15);
			color: #fff;
			font-family: 'Open Sans Condensed', sans-serif;
			font-weight: 700;
			text-decoration: none;
			-moz-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			-webkit-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			-o-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			-ms-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			transition: background-color .25s ease-in-out, color .25s ease-in-out;
			text-shadow: -1px -1px 0px rgba(0,0,0,0.5);
		}

			input[type="button"]:disabled,
			input[type="submit"]:disabled,
			input[type="reset"]:disabled,
			input[type="button"].disabled,
			input[type="submit"].disabled,
			input[type="reset"].disabled,
			.button.disabled
			{
				opacity: 0.35;
				cursor: default;
			}

			input[type="button"]:hover,
			input[type="submit"]:hover,
			input[type="reset"]:hover,
			.button:hover
			{
				background-color: #d95673;
			}
			
			input[type="button"]:active,
			input[type="submit"]:active,
			input[type="reset"]:active,
			.button:active
			{
				background-color: #b93653;
			}
		
			input[type="button"].alt,
			input[type="submit"].alt,
			input[type="reset"].alt,
			.button.alt
			{
				background-color: #364050;
			}

				input[type="button"].alt:hover,
				input[type="submit"].alt:hover,
				input[type="reset"].alt:hover,
				.button.alt:hover
				{
					background-color: #465060;
				}
				
				input[type="button"].alt:active,
				input[type="submit"].alt:active,
				input[type="reset"].alt:active,
				.button.alt:active
				{
					background-color: #263040;
				}
	
	/* List */
	
		ul.default
		{
			list-style: disc;
			padding-left: 1em;
		}
		
			ul.default li
			{
				padding-left: 0.5em;
			}
		
		ol.default
		{
			list-style: decimal;
			padding-left: 1.25em;
		}

			ol.default li
			{
				padding-left: 0.25em;
			}

	/* Pagination */

		.pagination
		{
		}
		
			.pagination .pages
			{
				display: inline-block;
				font-family: 'Open Sans Condensed', sans-serif;
				font-weight: 700;
			}
			
				.pagination .pages span
				{
					display: inline-block;
					width: 1.5em;
					text-align: center;
					margin: 0 0.4em 0 0;
				}
		
				.pagination .pages a
				{
					cursor: pointer;
					display: inline-block;
					text-align: center;
					text-decoration: none;
					color: inherit;
					background-color: #e8e8e8;
					background-image: url('images/bg02.png');
					color: #565656;
					margin: 0 0.4em 0 0;
					border-radius: 0.4em;
					-moz-transition: background-color .25s ease-in-out;
					-webkit-transition: background-color .25s ease-in-out;
					-o-transition: background-color .25s ease-in-out;
					-ms-transition: background-color .25s ease-in-out;
					transition: background-color .25s ease-in-out;
					box-shadow: inset 0 0.075em 0.25em 0 rgba(0,0,0,0.1);
				}
			
				.pagination .pages a:hover
				{
					background-color: #dadada;
				}

				.pagination .pages a.active
				{
					background-color: #364050;
					color: #fff;
					box-shadow: none;
					text-shadow: -1px -1px 0px rgba(0,0,0,0.5);
				}

	/* Box */

		.box
		{
		}

			.box.calendar
			{
			}

				.box.calendar .inner
				{
					position: relative;
					background-color: #272E39;
					background-color: rgba(0,0,0,0.15);
					border-radius: 0.4em;
					padding: 0.75em 0.5em 0.75em 0.5em;
					box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0.25em 0 rgba(0,0,0,0.25);
				}
				
				.box.calendar caption
				{
					font-weight: 700;
					color: #fff;
					margin: 0 0 0.25em 0;
				}

				.box.calendar table
				{
					margin: 0 auto;
				}

				.box.calendar tr
				{
				}

				.box.calendar td,
				.box.calendar th
				{
					cursor: default;
					padding: 0.35em 0 0.35em 0;
					border-top: solid 1px rgba(0,0,0,0.25);
					box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.075);
				}

				.box.calendar th
				{
					font-weight: 700;
					color: #fff;
				}
				
				.box.calendar td a,
				.box.calendar td span
				{
					display: block;
					margin: 0 auto;
					width: 1.5em;
					height: 1.5em;
					text-align: center;
					line-height: 1.4em;
					border-radius: 0.4em;
					-moz-transition: background-color .25s ease-in-out;
					-webkit-transition: background-color .25s ease-in-out;
					-o-transition: background-color .25s ease-in-out;
					-ms-transition: background-color .25s ease-in-out;
					transition: background-color .25s ease-in-out;
					text-decoration: none;
				}

				.box.calendar td a
				{
					color: #fff;
					font-weight: 700;
				}

				.box.calendar td a:hover
				{
					background-color: rgba(200,225,255,0.1);
					color: #fff;
				}
				
				.box.calendar td.today a
				{
					background-color: #c94663;
					background-image: url('images/bg01.png');
					box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.15), 0 0.025em 0.15em 0em rgba(0,0,0,0.25);
					color: #fff !important;
				}
				
			.box.post
			{
				position: relative;
			}
			
				.box.post .info
				{
				}
				
					.box.post .info .stats
					{
						margin: 0;
						cursor: default;
					}
					
					.box.post .info .stats a
					{
						font-size: 0.8em;
						text-decoration: none;
						color: #232323;
						font-weight: 700;
						line-height: 1em;
					}
			
			.box.recent-posts,
			.box.recent-comments
			{
			}

				.box.recent-posts li,
				.box.recent-comments li
				{
					border-top: solid 1px rgba(0,0,0,0.25);
					box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.075);
					padding: 0.5em 0 0.5em 0;
				}

				.box.recent-posts li:first-child,
				.box.recent-comments li:first-child
				{
					border-top: 0;
					box-shadow: none;
					padding-top: 0;
				}

				.box.recent-posts li:last-child,
				.box.recent-comments li:last-child
				{
					padding-bottom: 0;
				}

			.box.search
			{
			}

				.box.search form
				{
					position: relative;
				}
			
					.box.search form input
					{
						position: relative;
						padding-right: 34px;
					}
					
					.box.search form:before
					{
						display:inline-block;
						font-family: FontAwesome;
						font-size: 18px;
						text-decoration: none;
						font-style: normal;
						font-weight: normal;
						-webkit-font-smoothing:antialiased;
						-moz-osx-font-smoothing:grayscale;
						content: '\f002';
						
						filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
						-webkit-transform:scale(-1, 1);
						-moz-transform:scale(-1, 1);
						-ms-transform:scale(-1, 1);
						-o-transform:scale(-1, 1);
						transform:scale(-1, 1);
						
						position: absolute;
						right: 0.5em;
						top: 0.25em;
						z-index: 1;
						text-shadow: none;
						color: #c8ccce;
					}

			.box.text-style1
			{
			}

				.box.text-style1 .inner
				{
					position: relative;
					background-color: #272E39;
					background-color: rgba(0,0,0,0.15);
					border-radius: 0.4em;
					padding: 1.25em;
					box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0.25em 0 rgba(0,0,0,0.25);
				}	

/*********************************************************************************/
/* Icons                                                                         */
/*********************************************************************************/

	.icon {
		position: relative;
		text-decoration: none;
	}

		.icon:before {
			-moz-osx-font-smoothing: grayscale;
			-webkit-font-smoothing: antialiased;
			font-family: FontAwesome;
			font-style: normal;
			font-weight: normal;
			text-transform: none !important;
		}

		.icon > .label {
			display: none;
		}

/*********************************************************************************/
/* Wrapper                                                                       */
/*********************************************************************************/

	#wrapper
	{
		position: relative;
	}

/*********************************************************************************/
/* Nav                                                                           */
/*********************************************************************************/

	#nav
	{
	}

		#nav > ul > li > ul
		{
			display: none;
		}

		#nav ul
		{
			margin: 0;
		}

		#nav li
		{
			border-top: solid 1px rgba(0,0,0,0.25);
			box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.075);
			padding: 0.5em 0 0.5em 0;
		}
		
		#nav li:first-child
		{
			border: 0;
			box-shadow: none;
			padding-top: 0;
		}

		#nav li:last-child
		{
			padding-bottom: 0;
		}

		#nav li a
		{
			display: block;
			padding: 0.4em 1em 0.4em 1em;
			text-decoration: none;
			border-radius: 0.4em;
			outline: 0;
			-moz-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			-webkit-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			-o-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			-ms-transition: background-color .25s ease-in-out, color .25s ease-in-out;
			transition: background-color .25s ease-in-out, color .25s ease-in-out;
		}

		#nav li.current a
		{
			background-color: #3293ba !important;
			/* background-color: rgba(0,0,0,0.15) !important; */
			box-shadow: 0 0 0 1px rgba(255,255,255,0.05), inset 0 0 0.25em 0 rgba(0,0,0,0.25);
			font-weight: 700;
			color: #fff;
		}

		#nav li.current a:hover,#nav li.active a
		{
			background-color: #c94663 !important;
			color: #fff;
		}

/*********************************************************************************/
/* Sidebar                                                                       */
/*********************************************************************************/

	#sidebar
	{
		color: #aaa;
		color: rgba(255,255,255,0.55);
		text-shadow: -1px -1px 0px rgba(0,0,0,0.5);
	}

		#sidebar form input,
		#sidebar form select,
		#sidebar form textarea
		{
			border: 0;
		}

		#sidebar section,
		#sidebar nav
		{
			position: relative;
		}

			#sidebar section:before,
			#sidebar nav:before
			{
				content: '';
				border-top: solid 1px;
				border-bottom: solid 1px;
				border-color: #171E29;
				border-color: rgba(0,0,0,0.25);
				box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.075), 0px 1px 0px 0px rgba(255,255,255,0.075);
				display: block;
			}
	
		#sidebar strong, #sidebar b
		{
			color: #fff;
		}
	
		#sidebar a
		{
			color: #d4dde0;
		}
		
		#sidebar h2,
		#sidebar h3,
		#sidebar h4,
		#sidebar h5,
		#sidebar h6
		{
			color: #fff;
		}

		#sidebar header
		{
			margin: 0 0 1.25em 0;
		}
	
		#sidebar section,
		#sidebar nav
		{
			margin: 2em 0 0 0;
			font-size: 0.9em;
		}
		
			#sidebar section:before,
			#sidebar nav:before
			{
				height: 0.5em;
				margin: 0 0 2em 0;
			}

			#sidebar .text-style1{margin:0;}
			#sidebar .text-style1:before{height:auto;margin:0;display:none;}
		
/*********************************************************************************/
/* Content                                                                       */
/*********************************************************************************/
		
	#content
	{
		position: relative;
		background-color: #fff;
	}
	
		#content > .inner
		{
			position: relative;
			z-index: 1;
		}
		#footer{
			position:relative;
			bottom:55px;
			background:#37405e;
			height:55px;
			overflow:hidden;
			z-index:999;
		}
		#footer dl{overflow:hidden;color:#fff;font-size:14px;margin:0 15px 0 15px;text-align:center;}
		#footer dt,#footer dd{display:inline-block;margin-right:10px;}
		#footer dd img{height:25px;margin-right:20px;}
		#footer dt img{display:inline-block;width:20px;margin-right:5px;vertical-align:-2px;}
		#footer >p{width:90%;margin:0 5%;border-top:1px solid #4c5370;text-align:center;color:#fff;font-size:14px;}
		#footer >p img{display:inline-block;width:15px;height:15px;margin-right:5px;vertical-align:-3px;}
		#footer >p span{vertical-align:5px;}
		.boxpd{padding: 3em 5em 8em 5em;}
		.header-img{position:relative;}
		.header-img img{width:100%;height:67px;}
		.header-img p{position:absolute;width:15%;left:42%;bottom:10px;text-align:center;background:rgba(255,255,255,.8);border-radius:5px;font-weight:700;}
		.navs{background:#fff;border-bottom:1px solid #d6d6d6;box-shadow:0 1px 3px rgba(18,18,18,.1);}
		.navs{overflow:hidden;padding-left:20px;}
		.navs li{float:left;padding:8px 12px 10px 12px;position:relative;}
		.navs li a{color:#333;font-weight:600;text-decoration:none;}
		.navs li.active:after,.navs li:hover::after{content: "";
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 2px;
			background: #85b3cb;
			background: -moz-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: -webkit-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: linear-gradient(80deg,#85b3cb 0,#c04a67 100%);}
		.cont-1{width:100%;background:url(../images/img02.png) center;background-size:100% 100%;margin:0 auto;height:314px;}
		.box.post .cont-1 h2{color:#3293ba;font-size:26px;position:relative;padding-bottom:15px;margin:0 0 20px 0;padding-top:70px;}
		.box.post .cont-1 h2:after{
			content: "";
			position: absolute;
			bottom: 0;
			left: 0;
			width: 80%;
			height: 4px;
			background: #85b3cb;
			background: -moz-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: -webkit-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
		}
		.box.post .cont-1 h2,.box.post .cont-1 p{width:40%;margin-left:580px;}
		.box.post .cont-1 p{color:#3293ba;}
		.box.post .cont-1 p.p2{font-size:14px;color:#73777a;}

		.cont-2{width:100%;background:url(../images/img04.png) center;background-size:100% 100%;margin:0 auto;height:314px;}
		.cont-2-2-2{height:auto;}
		.box.post .cont-2 h2,.box.post .cont-2 p{color:#fff;}
		.box.post .cont-2 h2{font-size:24px;font-weight:400;padding:30px 50px 0 50px;}
		.box.post .cont-2 p{padding:0 50px;margin:0;margin-bottom:10px;}
		.box.post .cont-2 p.p1{margin:15px 0;font-size:14px;}
		.box.post .cont-4 p{margin-bottom:0;}
		.box.post .cont-6 p{margin-bottom:0;}
		.box.post .cont-5 h2{padding-top:20px;}
		.box.post .cont-6 h2{padding-top:15px;}
		.box.post .cont-7 h2{padding-top:45px;}
		.box.post .cont-7 h2,.box.post .cont-7 p{width:42%;margin-left:550px;}
		.tagTitle{width:100%;background:url(../images/img08.jpg) center;background-size: 100% 100%;margin:20px auto;}
		.tagTitle ul{overflow:hidden;padding:20px 0 10px 10px;}
		.tagTitle li{width:206px;background:#fff;box-shadow:0 4px 6px 0 rgba(3,27,78,.06);float:left;margin:0 10px 15px 0;}
		.tagTitle img{background:#364050;padding:5px;border-radius:50px;display:inline-block;margin:15px 0 0 15px;vertical-align:-12px;}
		.tagTitle a{text-decoration:none;}
		.tagTitle span{display:inline-block;width:130px;margin-left:10px;font-size:16px;position:relative;padding-bottom:5px;color:#565656;}
		.tagTitle span:after{content: "";
			position: absolute;
			bottom: 0;
			left: 0;
			width: 100%;
			height: 2px;
			background: #85b3cb;
			background: -moz-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: -webkit-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: linear-gradient(80deg,#85b3cb 0,#c04a67 100%);}
		.contP{padding:0 15px;color:#666;font-size:12px;line-height:20px;padding-bottom:1px;height:56px;}
		.box.post .cont-3{width:100%;background:url(../images/img08.jpg) center;background-size: 100% 100%;margin:0 auto;}
		.box.post .cont-3 h2{width:100%;margin-left:0;padding-top:20px;margin-bottom:0;text-align:center;}
		.box.post .cont-3 h2:after{height:0;}
		.box.post .cont-3 .p3{margin:0 211px;width:615px;color:#333;font-size:18px;}
		.box.post .cont-3 ul{overflow:hidden;text-align:center;}
		.box.post .cont-3 li{display:inline-block;margin:20px 8px;}
		.box.post .cont-3 li img{display:inline-block;}
		.box.post .cont-3 li:nth-child(odd){background:#cde2eb;border-radius:15px;padding:5px 10px;font-size:18px;color:#217292;}
		.box.post .cont-3 li:nth-child(odd) img{background:#bf5b76;padding:5px;border-radius:50px;vertical-align:-6px;margin-right:5px;width:25px;height:25px;}
		.box.post .cont-2-2,.box.post .cont-2-3{width:100%;background:url(../images/img08.jpg) center;background-size: 100% 100%;margin:0 auto;}
		
		.box.post .cont-2-2 h2,.box.post .cont-2-3 h2{width:100%;margin-left:0;padding-top:20px;margin-bottom:0;text-align:center;color:#3293ba;font-weight:700}
		.box.post .cont-2-2 ul{overflow:hidden;padding:20px 0 10px 10px;margin-bottom:0;}
		.box.post .cont-2-2 li{width:225px;background:#fff;box-shadow:0 4px 6px 0 rgba(3,27,78,.06);float:left;margin:0 15px 15px 15px;text-align:center;}
		.box.post .cont-2-2-2 li{width:175px;}
		.box.post .cont-2-2-2 li .contP{height:105px;}
		.box.post .cont-2-1 li{width:310px;}
		.box.post .cont-2-2 li p{margin-bottom:5px;}
		.box.post .cont-2-2 img{background:linear-gradient(80deg,#85b3cb ,#c04a67);padding:8px;border-radius:50px;display:inline-block;margin:15px 0 0 0;vertical-align:-12px;text-align:center;}
		.box.post .cont-2-3{height:auto;}
		.box.post .cont-2-2 h3{width:100%;text-align:center;font-size:16px;color:#c04a67;position:relative;padding-bottom:5px;}
		.box.post .cont-2-2 h3:after{content: "";
			position: absolute;
			bottom: 0;
			left: 35%;
			width: 30%;
			height: 1px;
			background: #85b3cb;
			background: -moz-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: -webkit-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: linear-gradient(80deg,#85b3cb 0,#c04a67 100%);}
		.box.post .cont-2-2 .contP{font-size:12px;color:#333;padding:15px;height:88px;}
		.box.post .cont-2-1 .contP{height:100px;}
		.box.post .cont-2-3 ul{overflow:hidden;margin-left:40px;margin-bottom:0;padding-bottom:20px;}
		.box.post .cont-2-3 li{float:left;width:30%;background:#fff;box-shadow:0 4px 6px 0 rgba(3,27,78,.06);margin:10px 0;position:relative;padding-bottom:56px;height:375px;}
		.box.post .cont-2-3 li:nth-child(2){margin:10px 25px;}
		.box.post .cont-2-3 li h3{margin:15px;color:#c04a67;text-align:center;}
		.box.post .cont-2-3 .contP{font-size:16px;color:#333;padding:0 15px 15px 15px;line-height:22px;}
		.box.post .cont-2-3 li img{position:absolute;left:0;bottom:0;}
		.box2{padding-bottom:8em;overflow:hidden;}
		.box3 >div{float:left;width:17%;background:#fff;box-shadow:0 4px 6px 0 rgba(3,27,78,.06);padding:20px;margin:30px 0 0 20px;}
		.box3 >div img{width:100%}
		.box3.post >div h2{font-size:22px;color:#c94663;text-align:center;padding:10px 0;position:relative;}
		.box3.post >div h2:after{content: "";
			position: absolute;
			top: 0;
			left: 35%;
			width: 30%;
			height: 2px;
			background: #85b3cb;
			background: -moz-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: -webkit-linear-gradient(80deg,#85b3cb 0,#c04a67 100%);
			background: linear-gradient(80deg,#85b3cb 0,#c04a67 100%);}
		.box3 h3{max-width:970px;font-size:20px;text-align:center;background:#cde2eb;color:#217292;padding:15px 0;margin:20px 20px 0 20px;}
		.bj1{background:url(../images/bj-1.png);}
		.box.post  .bj3{background:#edf7f9;}
		.box.post  .bj4{background:url(../images/bj-3.png);}
		.box.post .bj5 p.p2,.box.post .bj4 p.p2{color:#fff;}
		.box.post .bj5{background:url(../images/bj-4.png);}
		.box.post .bj5 h2, .box.post .bj5 p,.box.post .bj4 h2, .box.post .bj4 p{color:#fff;}
		.box.post .bj5 h2:after,.box.post .bj4 h2:after{background:linear-gradient(80deg,#85b3cb 0,#fff 100%)}

/*********************************************************************************/
/* Copyright                                                                     */
/*********************************************************************************/

	#copyright
	{
	}

		#copyright p
		{
			opacity: 0.75;
		}

		#copyright a
		{
			color: inherit !important;
		}

		#copyright:before
		{
			content: '';
			border-top: solid 1px;
			border-bottom: solid 1px;
			border-color: #171E29;
			border-color: rgba(0,0,0,0.25);
			box-shadow: inset 0px 1px 0px 0px rgba(255,255,255,0.075), 0px 1px 0px 0px rgba(255,255,255,0.075);
			display: block;
		}
		
/*********************************************************************************/
/* Mobile UI                                                                     */
/*********************************************************************************/

	#titleBar
	{
		background: #364050 url('images/bg01.png');
	}

	#titleBar .title
	{
		display: block;
		color: #fff;
		line-height: 44px;
		font-size: 1.25em;
		font-family: 'Open Sans Condensed', sans-serif;
		font-weight: 700;
		letter-spacing: 0.1em;
		text-shadow: -1px -1px 0px rgba(0,0,0,0.5);
		box-shadow: 0px 1px 4px 0px rgba(0,0,0,0.25);
		text-align: center;
	}

	#titleBar .toggle
	{
		width: 80px;
		height: 60px;
		position: absolute;
		left: 0;
		top: 0;
	}

		#titleBar .toggle:before
		{
			font-family: FontAwesome;
			text-decoration: none;
			font-style: normal;
			font-weight: normal;
			-webkit-font-smoothing:antialiased;
			-moz-osx-font-smoothing:grayscale;

			content: '\f0c9';
			display: block;
			position: absolute;
			left: 7px;
			top: 7px;
			font-size: 14px;
			width: 50px;
			height: 30px;
			line-height: 30px;
			background: #c94663 url('images/bg01.png');
			border-radius: 5px;
			color: #fff;
			text-align: center;
			box-shadow: inset 0px 0px 0px 1px rgba(255,255,255,0.15), 0 0.025em 0.15em 0em rgba(0,0,0,0.25);
			text-shadow: -1px -1px 0px rgba(0,0,0,0.5);
		}

		#titleBar .toggle:active
		{
		}

			#titleBar .toggle:active:before
			{
				background-color: #d95673;
			}

	#sidePanel
	{
		background: #364050 url('images/bg01.png');
	}