/* Webfonts
/* =================================================================== */
@import url("simple-line-icons/simple-line-icons.css");

/* 
/* b. Document Setup
/* =================================================================== */

/* Body
---------------------------------------------------------------------- */
body {
    background: #ffffff;
    color: #111111;
    font-size: 0.94em;
    line-height: 1.4em;
    font-family: 'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック','MS PGothic',sans-serif;
}

/* Links
---------------------------------------------------------------------- */
a {
    color: #1a1a1a;
}
a:focus, a:hover {
    color: #555;
}

/* Typography
--------------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    color: #222;
    font-family: "ヒラギノ角ゴ Pro W3","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"ＭＳ Ｐゴシック","MS PGothic",sans-serif;
    font-weight: normal;
}
h1 {
    font-size: 2.142em;
    line-height: 1.1333em;
    margin-bottom: 0.2666em;
}
h2 {
    font-size: 1.19em;
    line-height: 1.43em;
    margin-bottom: 0.4555em;
}
h3 {
    font-size: 1.25em;
    line-height: 1.4em;
    margin-bottom: 0.4em;
}
h4 {
    font-size: 1.0em;
    line-height: 1.65em;
    margin-bottom: 0.4555em;
}
h5 {
    font-size: 0.94em;
    line-height: 1.65em;
    margin-bottom: 0.5em;
}
h6 {
    font-size: 0.857em;
    line-height: 1.5em;
    margin-bottom: 0.4555em;
    text-transform: none;
}
p, ul, li{
    font-size: 0.94em;
    margin-bottom: 0.4em;
}
p, ul, ol, dl, dd, dt, blockquote, td, th {
    line-height: 2.0em;
}
ul, ol, ul ul, ol ol, ul ol, ol ul {
    margin: 0;
}
ol ol li {
    list-style-type: lower-alpha;
}
ol ol ol li {
    list-style-type: lower-roman;
}
p, ul, ol, dl, blockquote, hr, pre, table, form, fieldset, figure {
    margin-bottom: 1.5em;
}
dl dt {
    font-weight: bold;
}
dd {
    margin-left: 1em;
}
abbr {
    border-bottom: medium none;
}
pre, code, kbd, samp, tt {
    font-family: monospace;
    line-height: 100%;
}
del {
	text-decoration: line-through;
}
abbr[title], dfn[title] {
	border-bottom: 1px dotted;
	cursor: help;
}
mark {
	background: #FFF49B;
	color: #000;
}
hr {
	border: solid white;
	border-width: 1px 0 0;
	clear: both;
	margin: 23px 0 12px;
	height: 0;
}

/* Lists
--------------------------------------------------------------------- */
ul, ol {
	margin-top: 15px;
	margin-bottom: 15px;
}
ul {
	list-style: disc;
	margin-left: 17px;
}
dl {
	margin: 0 0 15px 0;
}
dt {
	margin: 0;
	color: #f26522;
}
dd {
	margin: 0 0 0 20px;
}



/* 
/* Preloader
/* =================================================================== */
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background: #12151b;
	z-index: 99999;
	height: 100%;
}
.no-js #preloader {
	display: none;
}

#status {
	position: absolute;
	left: 50%;
	top: 50%;
	width: 60px;
	height: 60px;
	margin: -30px 0 0 -30px;
	padding: 0;
}
#status img {
	display: none;
}

.loader {
	margin: 0 auto;
	font-size: 10px;
	position: relative;
	text-indent: -9999em;
	border-top: 1.1em solid rgba(255, 255, 255, 0.2);
	border-right: 1.1em solid rgba(255, 255, 255, 0.2);
	border-bottom: 1.1em solid rgba(255, 255, 255, 0.2);
	border-left: 1.1em solid #f26522;
	-webkit-animation: load 1.1s infinite linear;
	animation: load 1.1s infinite linear;
}
.loader, .loader:after {
	border-radius: 50%;
	width: 60px;
	height: 60px;
}
@-webkit-keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}
@keyframes load {
	0% {
		-webkit-transform: rotate(0deg);
		transform: rotate(0deg);
	}
	100% {
		-webkit-transform: rotate(360deg);
		transform: rotate(360deg);
	}
}

/* for ie8 */
.ie8 #status img {
	display: block;
}
.ie8 .loader {
	display: none;
}


/* 
/* Buttons
/* =================================================================== */
.button, 
.button:visited, 
button, 
input[type="submit"], 
input[type="reset"], 
input[type="button"] {
	display: inline-block;
	font: 15px/30px "raleway-bold", sans-serif;
	padding: 9px 16px;
	margin: 0 3px 6px 0;
	background: #818fab;
	color: white;
	text-decoration: none;
	cursor: pointer;
	height: auto;
	text-align: center;
	border: none;
	border-radius: 3px;
	-webkit-appearance: none;
	-webkit-font-smoothing: inherit;	
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}
.button:hover, 
button:hover, 
input[type="submit"]:hover, 
input[type="reset"]:hover, 
input[type="button"]:hover {
	background: #647495;
	color: white;
}
.button.primary, button.primary {
	background: #f26522;
}
.button.primary:hover, button.primary:hover {
	background: #e3520d;
}
button.medium, .button.medium {
	font: 15px/30px "raleway-bold", sans-serif;
	padding: 12px 18px !important;
}
button.large, .button.large {
	font: 15px/30px "raleway-bold", sans-serif;
	padding: 15px 20px !important;
}
button.round, .button.round {
	padding-left: 20px !important;
	padding-right: 20px !important;
	border-radius: 1000px;
	background-clip: padding-box;
}
button.stroke, .button.stroke {
	background: transparent !important;
	border: 3px solid transparent;
}
button.full-width, .button.full-width {
	width: 100%;
	margin-right: 0;
}

.button.pink {
	background: #ffadcb;
}
.button.pink:hover {
	background: #ff94bb;
}
.button.blue {
	background: #72bbf0;
}
.button.blue:hover {
	background: #5bb0ee;
}
.button.black {
	background: #2e3236;
}
.button.black:hover {
	background: #222528;
}
.button.yellow {
	background: #ffd900;
}
.button.yellow:hover {
	background: #f0cc00;
}
.button.red {
	background: #ff6163;
}
.button.red:hover {
	background: #ff474a;
}
.button.green {
	background: #9bc724;
}
.button.green:hover {
	background: #8ab120;
}
.button.grey {
	background: #8d8e91;
}
.button.grey:hover {
	background: #808184;
}
.button.purple {
	background: #b482c9;
}
.button.purple:hover {
	background: #a970c1;
}
.button.orange {
	background: #f5731c;
}
.button.orange:hover {
	background-color: #ed650a;
}
.button.stroke.pink {
	border-color: #ffadcb;
	color: #ffadcb;
}
.button.stroke.pink:hover {
	background: #ffadcb !important;
	color: #fff;
}
.button.stroke.blue {
	border-color: #72bbf0;
	color: #72bbf0;
}
.button.stroke.blue:hover {
	background: #72bbf0 !important;
	color: #fff;
}
.button.stroke.black {
	border-color: #2e3236;
	color: #2e3236;
}
.button.stroke.black:hover {
	background: #2e3236 !important;
	color: #fff;
}
.button.stroke.yellow {
	border-color: #ffd900;
	color: #ffd900;
}
.button.stroke.yellow:hover {
	background: #ffd900 !important;
	color: #fff;
}
.button.stroke.red {
	border-color: #ff6163;
	color: #ff6163;
}
.button.stroke.red:hover {
	background: #ff6163 !important;
	color: #fff;
}
.button.stroke.green {
	border-color: #9bc724;
	color: #9bc724;
}
.button.stroke.green:hover {
	background: #9bc724 !important;
	color: #fff;
}
.button.stroke.grey {
	border-color: #8d8e91;
	color: #8d8e91;
}
.button.stroke.grey:hover {
	background: #8d8e91 !important;
	color: #fff;
}
.button.stroke.purple {
	border-color: #b482c9;
	color: #b482c9;
}
.button.stroke.purple:hover {
	background: #b482c9 !important;
	color: #fff;
}
.button.stroke.orange {
	border-color: #f5731c;
	color: #f5731c;
}
.button.stroke.orange:hover {
	background: #f5731c !important;
	color: #fff;
}
button::-moz-focus-inner, input::-moz-focus-inner {
	border: 0;
	padding: 0;
}


/* 
/* Other Components
/* ================================================================== */

/* Alert Boxes
/* ------------------------------------------------------------------ */
.alert-box {
	padding: 21px 40px 21px 30px;
	position: relative;
	margin-bottom: 24px;
	border-radius: 3px;
	background-clip: padding-box;
	font-family: "raleway-semibold", sans-serif;
}
.error {
	background-color: #ffd1d2;
	color: #e65153;
}
.success {
	background-color: #c8e675;
	color: #758c36;
}
.info {
	background-color: #d7ecfb;
	color: #4a95cc;
}
.notice {
	background-color: #fff099;
	color: #c16527;
}
.close {
	position: absolute;
	right: 18px;
	top: 18px;
	cursor: pointer;
}

/* Drop Cap
/* ------------------------------------------------------------------ */
.drop-cap:first-letter {
	float: left;
	margin: 0;
	padding: 14px 6px 0 0;
	font-size: 84px;
	font-family: "raleway-bold", sans-serif;
	line-height: 60px;
	text-indent: 0;
	background: transparent;
	color: inherit;
}

/* Line Definition Style Markup
/* ------------------------------------------------------------------ */
.lining dt, .lining dd {
	display: inline;
	margin: 0;
}
.lining dt + dt:before, .lining dd + dt:before {
	content: "\A";
	white-space: pre;
}
.lining dd + dd:before {
	content: ", ";
}
.lining dd + dd:before {
	content: ", ";
}
.lining dd:before {
	content: ":";
	margin-left: -0.2em;
}

/* Dictionary Definition Style Markup
/* ------------------------------------------------------------------ */
.dictionary-style dt {
	display: inline;
	counter-reset: definitions;
}
.dictionary-style dt + dt:before {
	content: ", ";
	margin-left: -0.2em;
}
.dictionary-style dd {
	display: block;
	counter-increment: definitions;
}
.dictionary-style dd:before {
	content: counter(definitions, decimal) ". ";
}

/* 
/*  Pull Quotes Markup
/*

<aside class="pull-quote">
<blockquote>
<p></p>
</blockquote>
</aside>

/*
/* --------------------------------------------------------------------- */
.pull-quote {
	position: relative;
	padding: 18px 30px 18px 0px;
}
.pull-quote:before, .pull-quote:after {
	height: 1em;
	opacity: 0.45;
	position: absolute;
	font-size: 80px;
	font-family: Arial, Sans-Serif;
}
.pull-quote:before {
	content: "\201C";
	top: 33px;
	left: 0;
}
.pull-quote:after {
	content: '\201D';
	bottom: -33px;
	right: 0;
}
.pull-quote blockquote {
	margin: 0;
}
.pull-quote blockquote:before {
	content: none;
}

/* 
/*  Stats Tab Markup

<ul class="stats-tabs">
<li><a href="#">[value]<em>[name]</em></a></li>
</ul>


/*
/* --------------------------------------------------------------------- */
.stats-tabs {
	padding: 0;
	margin: 24px 0;
}
.stats-tabs li {
	display: inline-block;
	margin: 0 10px 18px 0;
	padding: 0 10px 0 0;
	border-right: 1px solid #ccc;
}
.stats-tabs li:last-child {
	margin: 0;
	padding: 0;
	border: none;
}
.stats-tabs li a {
	display: inline-block;
	font-size: 24px;
	font-family: "raleway-bold", sans-serif;
	border: none;
	color: #252525;
}
.stats-tabs li a:hover {
	color: #f26522;
}
.stats-tabs li a em {
	display: block;
	margin: 6px 0 0 0;
	font-size: 14px;
	font-family: "raleway-regular", sans-serif;
	color: #7d7e80;
}

/* Pagination
/* ------------------------------------------------------------------ */
.pagination {
	margin: 30px auto;
	text-align: center;
}
.pagination ul li {
	display: inline-block;
	margin: 0;
	padding: 0;
}
.pagination .page-numbers {
	font: 15px/24px "raleway-bold", sans-serif;
	display: inline-block;
	padding: 6px 12px;
	height: 36px;
	margin-right: 3px;
	margin-bottom: 6px;
	color: #707273;
	background-color: #dde4e6;
	-moz-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	-webkit-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
	background-clip: padding-box;
}
.pagination .page-numbers:hover {
	background: #94aab0;
	color: white;
}
.pagination .current, .pagination .current:hover {
	background-color: #f26522;
	color: white;
}
.pagination .inactive, .pagination .inactive:hover {
	background-color: #ecf0f1;
	color: #a3a4a6;
}

/* 
/* Header Styles
/* =================================================================== */
header {
	width: 200px;
    height: 600px !important;
	margin-left: 62px;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 990;
	text-align: center;
	background: #fff;
    -moz-opacity: 0.7;
	opacity: 0.7;
}
header .logo {
	margin: 0;
	padding: 60px 10px 30px;
	border-bottom: 1px dotted #333;
}


/* primary navigation
--------------------------------------------------------------------- */
#nav-wrap, #nav-wrap ul, #nav-wrap li, #nav-wrap a {
	margin: 0;
	padding: 0;
	border: none;
	outline: none;
}

/* nav-wrap */
#nav-wrap {
	margin-top: 20px;
	font-family: 'Neuton', serif;
	font-weight: 400; 
	text-transform: none;
	letter-spacing: 2px;
	display: inline-block;
}

/* hide toggle button */
#nav-wrap > a {
	display: none;
}
ul#nav {
	text-align: center;
}
ul#nav li {
	font-size: 1.3em;
	list-style: none;
}
ul#nav li a {
	display: inline-block;
	padding: 36px 0 0 ;
	text-decoration: none;
	cursor: pointer;
	color: #222;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
ul#nav li a:hover {
	border-bottom: 2px #49a6a7 solid;
}
ul#nav li a:active {
	background-color: transparent !important;
}
ul#nav li.current a {
	border-bottom: 2px #49a6a7 solid;
}

/* 
/* Breadcrumb Styles
/* =================================================================== */
#breadcrumb ul {
	margin: 0px 0px 4px;
	font-size: 10px;
}
#breadcrumb li {
	display: inline;
	float:right;
	font-family: 'Neuton', serif;
	font-size: 1.13em;
}

/* 
/* Content Styles
/* =================================================================== */
#contents {
    background-color: #fff;
    margin-left: 290px;
	padding: 10px 26px;
    position: relative;
    width: 740px;
    height: 100%;
    min-height:600px; 
}
#contents-inner{
	float: center;
}

.menu h2{
	font-family: 'Neuton', serif;
	font-size: 1.38em;
	margin: 20px 0 30px;
	position: relative;
}
.menu h2:before {
	content: url(../images/icon.jpg) ;
    top: 8px;
    left: -4px;
	position: relative;
}
.profile h3{
	font-size: 0.94em;
	color: #666;
	font-weight: bold;
	border-bottom: 1px dotted #bbb;
	padding: 10px 0;
}
.service{
	padding: 10px 60px 20px;
}
.service ul{
	float: none !important;
	margin: 0 auto !important;
	list-style:none;
	padding: 10px 25px;
}
.service ul li{
	line-height: 2.0em;
	font-size: 0.95em;
}
.service h3{
	background-color: #54ACAF;
    background: -moz-linear-gradient(top,#54ACAF 0%,#1A9EA5);
    background: -webkit-gradient(linear, left top, left bottom, from(#54ACAF), to(#1A9EA5));
    color: #FFF;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
    -webkit-box-shadow: 1px 1px 1px rgba(000,000,000,0.3);
    width: 100%;
    padding: 5px 15px;
	float: none !important;
	margin-bottom: 14px;
}
.service p{
	padding: 0 15px;
	line-height: 1.5em;
}

.arrow {
    width:80px;
    height:80px;
    border-top: solid 5px #1A9EA5;
    border-right: solid 5px #1A9EA5;
    transform: rotate(135deg);
    -webkit-transform: rotate(135deg);
}


/*----------------------------------------------------
    .table-style
----------------------------------------------------*/
#table-box{
	float: none !important;
    margin: 20px auto !important;
	width: 90%;
}
#table-box h2{
	margin-bottom: 20px;
	position: relative;
}
#table-box h2:before {
	content: url(../images/icon.jpg) ;
    top: 0px;
    margin-left: -26px;
    position: absolute;
}
.fee { 
	font-size: 0.94em;
}
.fee th  { 
	background-color: #dcdcdc;
	width: 13%; 
	border: 1px solid #c0c0c0;
	text-align: left;
	padding: 2px 4px;
}
.fee td  { 
	border: 1px solid #c0c0c0;
	text-align: left;
	padding: 0 4px;
}

@media only screen and (max-width: 768px) {
	/* Force table to not be like tables anymore */
	table, thead, tbody, th, td, tr { 
		display: block; 
	}
	
	/* Hide table headers  */
	.fee thead tr { 
		display: none;
	}	
	.fee tr { 
		border: 1px solid #333;
	}	
	.fee td { 
		border: none;
		border-bottom: 1px solid #ccc; 
		position: relative;
		text-align: left;
		padding-left: 5px;
	}
	.fee td:first-child  {
		background-color: #333;
		color: #fff;
	}
	.fee td.item01:before  {
	    content: "業務内容 :";
	    padding-right: 5px;
	    color: #999;
	}
	.fee td.item02:before  {
	    content: "契約形態 :";
	    padding-right: 5px;
	    color: #555;
	}
	.fee td.item03:before  {
	    content: "料金 :";
	    padding-right: 5px;
	    color: #555;
	}
	.fee td.item04:before  {
	    content: "備考 :";
	    padding-right: 5px;
	    color: #555;
	}
	.fee td.item05:before  {
	    content: "アウトプット :";
	    padding-right: 5px;
	    color: #555;
	}
}

/* tag cloud */
#sidebar .tagcloud {
	margin: 18px 0 24px -12px;
	padding: 0;
	font-size: 17px;
}
#sidebar .tagcloud a {
	font: 12px/24px "raleway-heavy", sans-serif !important;
	display: inline-block;
	float: left;
	margin: 0 0 12px 12px;
	padding: 6px 15px;
	position: relative;
	text-transform: uppercase;
	letter-spacing: 1px;
	border-radius: 3px;
	background: #ecf0f1;
	text-decoration: none;
	letter-spacing: .5px;
	color: #707273;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
#sidebar .tagcloud a:hover {
	color: white;
	background: #f26522;
}

/* photostream */
#sidebar .photostream {
	list-style: none;
	margin: 15px 0 24px -15px;
	padding: 0;
	overflow: hidden;
}
#sidebar .photostream li {
	display: inline-block;
	margin: 0 0 12px 12px;
	padding: 0;
}
#sidebar .photostream li a {
	display: block;
	height: 66px;
	width: 66px;
	background: #fff;
	padding: 9px;
	border: 1px solid #e3e9eb;
	border-radius: 3px;
}
#sidebar .photostream li a img {
	vertical-align: bottom;
}
/* 
/* slideshow Styles
/* =================================================================== */
#slideshow {
   position: relative;
   width:  690px; 
   height: 240px; 
}
#slideshow img {
   position: absolute;
   top: 0;
   left:0;
   z-index: 8;
   opacity: 0.0;
}
#slideshow img.active {
   z-index: 10;
   opacity: 1.0;
}
#slideshow img.last-active {
   z-index: 9;
}

/* 
/* Footer Styles
/* =================================================================== */
footer {
	padding: 5px 0;
	font-size: 13px;
	position: relative;
}
footer .copyright {
	text-align: right;
	margin: 0;
	padding: 0;
	font: 14px "Kokila", sans-serif;
}

/* back to top */
footer #go-top {
	position: fixed;
	bottom: 0;
	right: 10px;
	z-index: 900;
	display: none;
}
footer #go-top a {
	display: block;
	padding: 12px 30px;
	background: #49a6a7;
	color: white;
	text-align: center;
	font: 12px/24px "raleway-heavy", sans-serif;
	text-transform: uppercase;
	letter-spacing: 2px;
	-moz-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	-webkit-transition: all 0.2s ease-in-out;
	-ms-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}
footer #go-top a span {
	margin-right: 10px;
}
footer #go-top a:hover {
	background: #78c3c4;
	color: #252525;
}


/* 
/* j. Common and shared styles
/* =================================================================== */

hr {
	border: solid #f26522;
	border-width: 3px 0 0;
	width: 90px;
	margin: 11px auto 15px;
	height: 0;
	clear: both;
	text-align: center;
}

/* section head
---------------------------------------------------------------------- */
.section-head {
	text-align: center;
}
.section-head h1 {
	font: 15px/24px "raleway-heavy", sans-serif;
	text-transform: none;
	letter-spacing: 2.5px;
	color: #252525;
	margin-bottom: 18px;
}
.section-head h1 span {
	color: #f26522;
}
.section-head p {
	font: 18px/36px "merriweather-light", sans-serif;
	width: 95%;
	color: #707273;
	margin-left: auto;
	margin-right: auto;
}




/* 
/* wrapper Section
/* =================================================================== */

#wrapper {
	background: #f4f4f1;
    position: relative;
}
.ie8 #wrapper { background: #12151b; }

#wrapper.main-img{
	background: #12151b url(../images/main.jpg) no-repeat center center fixed;
	-webkit-background-size: cover !important;
	-moz-background-size: cover !important;
	background-size: cover !important;
	padding-top: 0px;
	padding-bottom: 0px;
	width: 100%;
	text-align: center;
	position: relative;
	height: 700px;
}

/*
/* Grid Style
/* =================================================================== */

.units-row:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
}
.units-row {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.units-row {
  margin-bottom: 1.5em;
}
.units-row-end {
  margin-bottom: 0;
}
.width-100,
.unit-100 {
  width: 100%;
}
.width-90,
.unit-90 {
  width: 90%;
}
.width-80,
.unit-80 {
  width: 80%;
}
.width-75,
.unit-75 {
  width: 75%;
}
.width-70,
.unit-70 {
  width: 70%;
}
.width-66,
.unit-66 {
  width: 66.6%;
}
.width-65,
.unit-65 {
  width: 65%;
}
.width-60,
.unit-60 {
  width: 60%;
}
.width-50,
.unit-50 {
  width: 50%;
}
.width-40,
.unit-40 {
  width: 40%;
}
.width-35,
.unit-35 {
  width: 35%;
}
.width-33,
.unit-33 {
  width: 33.3%;
}
.width-30,
.unit-30 {
  width: 30%;
}
.width-25,
.unit-25 {
  width: 25%;
}
.width-20,
.unit-20 {
  width: 20%;
}
.width-10,
.unit-10 {
  width: 10%;
}
.width-100,
.width-90,
.width-80,
.width-75,
.width-70,
.width-66,
.width-65,
.width-60,
.width-50,
.width-40,
.width-35,
.width-33,
.width-30,
.width-25,
.width-20,
.width-10,
.units-row .unit-100,
.units-row .unit-90,
.units-row .unit-80,
.units-row .unit-75,
.units-row .unit-70,
.units-row .unit-66,
.units-row .unit-65,
.units-row .unit-60,
.units-row .unit-50,
.units-row .unit-40,
.units-row .unit-35,
.units-row .unit-33,
.units-row .unit-30,
.units-row .unit-25,
.units-row .unit-20,
.units-row .unit-10,
.units-row-end .unit-100,
.units-row-end .unit-90,
.units-row-end .unit-80,
.units-row-end .unit-75,
.units-row-end .unit-70,
.units-row-end .unit-66,
.units-row-end .unit-65,
.units-row-end .unit-60,
.units-row-end .unit-50,
.units-row-end .unit-40,
.units-row-end .unit-35,
.units-row-end .unit-33,
.units-row-end .unit-30,
.units-row-end .unit-25,
.units-row-end .unit-20
.units-row-end .unit-10 {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.units-row .unit-90,
.units-row .unit-80,
.units-row .unit-75,
.units-row .unit-70,
.units-row .unit-66,
.units-row .unit-65,
.units-row .unit-60,
.units-row .unit-50,
.units-row .unit-40,
.units-row .unit-35,
.units-row .unit-33,
.units-row .unit-30,
.units-row .unit-25,
.units-row .unit-20,
.units-row .unit-10
.units-row-end .unit-100,
.units-row-end .unit-90,
.units-row-end .unit-80,
.units-row-end .unit-75,
.units-row-end .unit-70,
.units-row-end .unit-66,
.units-row-end .unit-65,
.units-row-end .unit-60,
.units-row-end .unit-50,
.units-row-end .unit-40,
.units-row-end .unit-35,
.units-row-end .unit-33,
.units-row-end .unit-30,
.units-row-end .unit-25,
.units-row-end .unit-20,
.units-row-end .unit-10 {
  float: left;
  margin-left: 3%;
}
.units-row .unit-90:first-child,
.units-row .unit-80:first-child,
.units-row .unit-75:first-child,
.units-row .unit-70:first-child,
.units-row .unit-66:first-child,
.units-row .unit-65:first-child,
.units-row .unit-60:first-child,
.units-row .unit-50:first-child,
.units-row .unit-40:first-child,
.units-row .unit-35:first-child,
.units-row .unit-33:first-child,
.units-row .unit-30:first-child,
.units-row .unit-25:first-child,
.units-row .unit-20:first-child,
.units-row .unit-10:first-child,
.units-row-end .unit-100:first-child,
.units-row-end .unit-90:first-child,
.units-row-end .unit-80:first-child,
.units-row-end .unit-75:first-child,
.units-row-end .unit-70:first-child,
.units-row-end .unit-65:first-child,
.units-row-end .unit-66:first-child,
.units-row-end .unit-60:first-child,
.units-row-end .unit-50:first-child,
.units-row-end .unit-40:first-child,
.units-row-end .unit-35:first-child,
.units-row-end .unit-33:first-child,
.units-row-end .unit-30:first-child,
.units-row-end .unit-25:first-child,
.units-row-end .unit-20:first-child,
.units-row-end .unit-10:first-child {
  margin-left: 0;
}
.units-row .unit-90,
.units-row-end .unit-90{
  width: 89.7%;
}
.units-row .unit-80,
.units-row-end .unit-80 {
  width: 79.4%;
}
.units-row .unit-75,
.units-row-end .unit-75 {
  width: 74.25%;
}
.units-row .unit-70,
.units-row-end .unit-70 {
  width: 69.1%;
}
.units-row .unit-66,
.units-row-end .unit-66 {
  width: 65.66666666666666%;
}
.units-row .unit-65,
.units-row-end .unit-65{
  width: 65.66666666666666%;
}
.units-row .unit-60,
.units-row-end .unit-60 {
  width: 58.800000000000004%;
}
.units-row .unit-50,
.units-row-end .unit-50 {
  width: 48.5%;
}
.units-row .unit-40,
.units-row-end .unit-40 {
  width: 38.2%;
}
.units-row .unit-35,
.units-row-end .unit-33 {
  width: 31.333333333333332%;
}
.units-row .unit-33,
.units-row-end .unit-33 {
  width: 31.333333333333332%;
}
.units-row .unit-30,
.units-row-end .unit-30 {
  width: 27.9%;
}
.units-row .unit-25,
.units-row-end .unit-25 {
  width: 22.75%;
}
.units-row .unit-20,
.units-row-end .unit-20 {
  width: 17.6%;
}
.units-row .unit-10,
.units-row-end .unit-10 {
  width: 7.3%;
}
.centered,
.unit-centered {
  float: none !important;
  margin: 0 auto !important;
}
.end{
	margin: 0;
}


