@charset "UTF-8";
/* CSS Document */

/* GRIGLIA */

.container {
	position: relative;
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 20px;
	box-sizing: border-box;
}

.container-full-screen {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding: 0 0;
	box-sizing: border-box;
}

.container-wide-screen {
	position: relative;
	width: 100%;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 2%;
	padding-right: 2%;
	box-sizing: border-box;
}

.container-middle-screen {
	position: relative;
	width: 80%;
	margin: 0 auto;
	padding-top: 0;
	padding-bottom: 0;
	padding-left: 2%;
	padding-right: 2%;
	box-sizing: border-box;
}


.row,
.row-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-top,
.row-top-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-align: flex-start;
	-moz-box-align: flex-start;
	-ms-flex-align: flex-start;
	-webkit-align-items: flex-start;
	align-items: flex-start;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-middle,
.row-middle-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-align: center;
	-moz-box-align: center;
	-ms-flex-align: center;
	-webkit-align-items: center;
	align-items: center;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-bottom,
.row-bottom-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-align: flex-end;
	-moz-box-align: flex-end;
	-ms-flex-align: flex-end;
	-webkit-align-items: flex-end;
	align-items: flex-end;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}


.row-left,
.row-left-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-justify-content: flex-start;
	-moz-justify-content: flex-start;
	-ms-flex-pack: start;
	-ms-justify-content: flex-start;
	justify-content: flex-start;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-center,
.row-center-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-justify-content: center;
	-moz-justify-content: center;
	-ms-flex-pack: center;
	-ms-justify-content: center;
	justify-content: center;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-right,
.row-right-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-flex-pack: end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-between,
.row-between-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-justify-content: space-between;
	-moz-justify-content: space-between;
	-ms-flex-pack: justify;
	-ms-justify-content: space-between;
	justify-content: space-between;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}

.row-around,
.row-around-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-justify-content: space-around;
	-moz-justify-content: space-around;
	-ms-flex-pack: justify;
	-ms-justify-content: space-around;
	justify-content: space-around;
	
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-moz-box-orient: horizontal;
	-moz-box-direction: normal;
	-ms-flex-direction: row;
	-webkit-flex-direction: row;
	flex-direction: row;
	
	box-sizing: border-box;
}


.row-vertical,
.row-vertical-sm {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-moz-box-orient: vertical;
	-moz-box-direction: normal;
	
	-webkit-flex-direction: column;
	-moz-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	
	box-sizing: border-box;
}

.row-vertical .column,
.row-vertical .columns,
.row-vertical-sm .column-sm,
.row-vertical-sm .columns-sm {
	margin-left: 0%;
}


.row-wrap { 
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	box-sizing: border-box;
	
	-webkit-box-lines: multiple;
	-moz-box-lines: multiple;
	
	-webkit-flex-wrap: wrap;
	-moz-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	
	justify-content: space-between;
}

.column-fixed {
	width: 100px;
	height: 100px;
	box-sizing: border-box;
}

.column-square {
	width: 25vw;
	max-width: 440px;
	height: 25vw;
	max-height: 440px;
	box-sizing: border-box;
}

.column,
.column-sm,
.columns,
.columns-sm,
.column-nogap,
.column-nogap-sm,
.columns-nogap,
.columns-nogap-sm {
	width: 100%;
	box-sizing: border-box;
}

/* Impostazioni per monitor desktop - default */
.column,
.column-sm,
.columns,
.columns-sm {
	margin-left: 4%;
}
.column:first-child,
.column-sm:first-child,
.columns:first-child,
.columns-sm:first-child {
	margin-left: 0;
}


/* Colonne della griglia */
.one.column,
.one.column-sm,
.one.columns,
.one.columns-sm              			   { width: 4.66666666667%; }
.two.columns, .two.columns-sm          { width: 13.3333333333%; }
.three.columns, .three.columns-sm      { width: 22.0%;          }
.four.columns, .four.columns-sm        { width: 30.6666666667%; }
.five.columns, .five.columns-sm        { width: 39.3333333333%; }
.six.columns, .six.columns-sm          { width: 48.0%;          }
.seven.columns, .seven.columns-sm      { width: 56.6666666667%; }
.eight.columns, .eight.columns-sm      { width: 65.3333333333%; }
.nine.columns, .nine.columns-sm        { width: 74.0%;          }
.ten.columns, .ten.columns-sm          { width: 82.6666666667%; }
.eleven.columns, .eleven.columns-sm    { width: 91.3333333333%; }
.twelve.columns, .twelve.columns-sm    { width: 100.0%; margin-left: 0; }



/* Colonne della griglia senza gap */
.one.column-nogap,
.one.column-nogap-sm,
.one.columns-nogap,
.one.columns-nogap-sm              			   		{ width: 8.33333333333%;  }
.two.columns-nogap, .two.columns-nogap-sm          { width: 16.66666666667%; }
.three.columns-nogap, .three.columns-nogap-sm      { width: 25.0%;           }
.four.columns-nogap, .four.columns-nogap-sm        { width: 33.33333333333%; }
.five.columns-nogap, .five.columns-nogap-sm        { width: 41.66666666667%; }
.six.columns-nogap, .six.columns-nogap-sm          { width: 50.0%;           }
.seven.columns-nogap, .seven.columns-nogap-sm      { width: 58.33333333333%; }
.eight.columns-nogap, .eight.columns-nogap-sm      { width: 66.66666666667%; }
.nine.columns-nogap, .nine.columns-nogap-sm        { width: 75.0%;           }
.ten.columns-nogap, .ten.columns-nogap-sm          { width: 83.33333333333%; }
.eleven.columns-nogap, .eleven.columns-nogap-sm    { width: 91.66666666667%; }
.twelve.columns-nogap, .twelve.columns-nogap-sm    { width: 100.0%;			  }


/* HTML E BODY */

html {
	font-size: 62.5%;
}
body {
	font-size: 1.75em;
	font-family: Verdana, Helvetica, Arial, sans-serif;
	/* letter-spacing: 0.10rem; */
	line-height: 1.50em;
}


/* TIPOGRAFIA */
h1, h2, h3, h4, h5, h6 {
	font-family: 'Fira Sans Extra Condensed', Verdana, Helvetica, Arial, sans-serif;
	margin-top: 0;
	margin-bottom: 2rem;
	font-weight: 700;
	letter-spacing: 0.10rem;
}
h1 { font-size: 5.0rem; line-height: 1.2; }
h2 { font-size: 4.2rem; line-height: 1.25; }
h3 { font-size: 3.6rem; line-height: 1.3; }
h4 { font-size: 3.0rem; line-height: 1.35; }
h5 { font-size: 2.4rem; line-height: 1.5; }
h6 { font-size: 1.5rem; line-height: 1.6; }

p {
	margin-top: 0;
}


/* Links */
a {
	background-color: transparent;
}
a:link {
	color: #D10A11;
	text-decoration: none;
}
a:visited {
	color: #D10A11;
	text-decoration: none;
}
a:hover {
	color: #D10A11;
	text-decoration: underline;
	outline: 0;
}
a:active {
	color: #D10A11;
	text-decoration: underline;
	outline: 0;
}


/* BUTTON */
.button,
.button a:link,
.button a:visited,
a.button:link,
a.button:visited,
button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
	display: inline-block;
	height: 38px;
	color: #555;
	text-align: center;
	font-size: 1.50rem;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: .1rem;
	text-transform: uppercase;
	text-decoration: none;
	white-space: nowrap;
	background-color: transparent;
	border-radius: 4px;
	border: 1px solid #bbb;
	cursor: pointer;
	box-sizing: border-box;
	padding-top: 0px;
	padding-right: 30px;
	padding-bottom: 0px;
	padding-left: 30px;
	transition: background-color 0.3s, border-color 0.3s;
}

.button:hover,
.button a:hover,
.button a:active,
a.button:hover,
a.button:active,
button:hover,
input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover,
.button:focus,
button:focus,
input[type="submit"]:focus,
input[type="reset"]:focus,
input[type="button"]:focus {
	color: #333;
	border-color: #888;
	outline: 0;
	text-decoration: none;
}

.button.button-primary,
button.button-primary,
input[type="submit"].button-primary,
input[type="reset"].button-primary,
input[type="button"].button-primary {
	color: #FFF;
	background-color: #33C3F0;
	border-color: #33C3F0;
}

.button.button-primary:hover,
button.button-primary:hover,
input[type="submit"].button-primary:hover,
input[type="reset"].button-primary:hover,
input[type="button"].button-primary:hover,
.button.button-primary:focus,
button.button-primary:focus,
input[type="submit"].button-primary:focus,
input[type="reset"].button-primary:focus,
input[type="button"].button-primary:focus {
	color: #FFF;
	background-color: #1EAEDB;
	border-color: #1EAEDB;
}


/* FORM */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea,
select {
	height: 38px; /* The 6px vertically centers text on FF, ignored by Webkit */
	background-color: #fff;
	border: 1px solid #D1D1D1;
	border-radius: 4px;
	box-shadow: none;
	box-sizing: border-box;
	padding-top: 6px;
	padding-right: 10px;
	padding-bottom: 6px;
	padding-left: 10px;
}

/* Removes awkward default styles on some inputs for iOS */
input[type="email"],
input[type="number"],
input[type="search"],
input[type="text"],
input[type="tel"],
input[type="url"],
input[type="password"],
textarea {
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

textarea {
	min-height: 65px;
	padding-top: 6px;
	padding-bottom: 6px;
}

input[type="email"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
	border: 1px solid #BE8F4B;
	outline: 0;
}

label,
legend {
	display: block;
	margin-bottom: .5rem;
	font-weight: 600;
}

fieldset {
	padding: 10px;
	border: 1 dotted #CCC;
}

input[type="checkbox"],
input[type="radio"] {
	display: inline;
}

label > .label-body {
	display: inline-block;
	margin-left: .5rem;
	font-weight: normal;
}


/* FORM CON LABEL SULLA STESSA RIGA DEI CAMPI */

.form-item {
	display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
	display: -moz-box;     /* OLD - Firefox 19- (buggy but mostly works) */
	display: -ms-flexbox;  /* TWEENER - IE 10 */
	display: -webkit-flex; /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
	display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
	
	-webkit-justify-content: flex-end;
	-moz-justify-content: flex-end;
	-ms-flex-pack: end;
	-ms-justify-content: flex-end;
	justify-content: flex-end;
	
	padding-top: 0.5em;
	padding-bottom: 0.5em;
	padding-left: 0.0em;
	padding-right: 0.5em;
}

.form-item > label {
	-webkit-box-flex: 1;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 1;         /* OLD - Firefox 19- */
	width: 20%;               /* For old syntax, otherwise collapses. */
	-webkit-flex: 1;          /* Chrome */
	-ms-flex: 1;              /* IE 10 */
	flex: 1;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.form-item > input[type="email"],
.form-item > input[type="number"],
.form-item > input[type="search"],
.form-item > input[type="text"],
.form-item > input[type="tel"],
.form-item > input[type="url"],
.form-item > input[type="password"],
.form-item > select,
.form-item > textarea {
	-webkit-box-flex: 2;      /* OLD - iOS 6-, Safari 3.1-6 */
	-moz-box-flex: 2;         /* OLD - Firefox 19- */
	width: 20%;               /* For old syntax, otherwise collapses. */
	-webkit-flex: 2;          /* Chrome */
	-ms-flex: 2;              /* IE 10 */
	flex: 2;                  /* NEW, Spec - Opera 12.1, Firefox 20+ */
}




/* CODE */
code {
	padding: .2rem .5rem;
	margin: 0 .2rem;
	font-size: 90%;
	white-space: nowrap;
	background: #F1F1F1;
	border: 1px solid #E1E1E1;
	border-radius: 4px;
}
pre > code {
	display: block;
	padding: 1rem 1.5rem;
	white-space: pre;
}


/* TABLES */

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

td,
th {
	padding: 0
}

.tableWithSeparator th,
.tableWithSeparator td {
	padding: 12px 15px;
	text-align: left;
	border-bottom: 1px solid #E1E1E1;
}

.tableWithSeparator th:first-child,
.tableWithSeparator td:first-child {
	padding-left: 0;
}

.tableWithSeparator th:last-child,
.tableWithSeparator td:last-child {
	padding-right: 0;
}


.tableWithSpaces th,
.tableWithSpaces td {
	padding: 12px 15px;
	text-align: left;
}

.tableWithSpaces th:first-child,
.tableWithSpaces td:first-child {
	padding-left: 0;
}

.tableWithSpaces th:last-child,
.tableWithSpaces td:last-child {
	padding-right: 0;
}

.table-striped > tbody > tr:nth-of-type(odd) {
	background-color: #f9f9f9;
}


/* SPACING */
button,
.button {
	margin-bottom: 1rem;
}

input,
textarea,
select,
fieldset {
	margin-bottom: 1.5rem;
}

pre,
blockquote,
dl,
figure,
table,
p,
ul,
ol,
form {
	margin-bottom: 2.5rem;
}


/* UTILITIES */
.u-full-width {
	width: 100%;
	box-sizing: border-box;
}
.u-max-full-width {
	max-width: 100%;
	box-sizing: border-box;
}
.u-max-75perc-width {
	max-width: 75%;
	box-sizing: border-box;
}

.u-pull-right {
	float: right;
}

.u-pull-left {
	float: left;
}

.spacing {
	width: 100%;
	margin-top: 1%;
	margin-bottom: 1%;
}


/* MISCELLANEOUS */
hr {
	margin-top: 3rem;
	margin-bottom: 3.5rem;
	border-width: 0;
	border-top: 1px solid #E1E1E1;
}


/* CLEARING */

/* Self Clearing Goodness */
.container:after,
.row:after,
.u-cf {
	content: "";
	display: table;
	clear: both;
}


/* Wrap responsive */
.googlemap_wrap,
.youtube_wrap {
	position: relative;
	padding-bottom: 75%;
	height: 0;
	overflow: hidden;
}

/* iframe posizionato in maniera assoluta */
.googlemap_wrap iframe,
.youtube_wrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}


/* callout */
.callout {
	position: relative;
	padding: 2%;
	margin: 2% 0%;
	border: 1px solid #c1c1c1;
	border-radius: 4px;
}
.callout.half-width {
	width: 50%;
	margin-right: auto;
	margin-left: auto;
}
.callout.auto-width {
	width: auto;
}


/* tooltip only css */
.tooltip {
	position: relative;
	display: inline-block;
	cursor: pointer;
	margin: 0 5px;
}

.tooltip .content {
	position: absolute;
	font-size: 1rem;
	z-index: 1;
	visibility: hidden;
	left: 50%;
	top: 0;
	-webkit-transform: translateX(-50%) translateY(-100%);
	transform: translateX(-50%) translateY(-100%);
	background-color: #ededed;
	padding: 5px 20px;
	border-radius: 3px;
	transition: opacity 0.3s;
	opacity: 0;
	width: 120px;
}

.tooltip .content, .tooltip .content * {
	color: #000;
}

.tooltip .content:after {
	content: " ";
	position: absolute;
	top: 100%;
	/* At the bottom of the tooltip */
	left: 50%;
	margin-left: -5px;
	border-width: 5px;
	border-style: solid;
	border-color: #ededed transparent transparent transparent;
}

.tooltip:hover .content {
	visibility: visible;
	opacity: 0.9;
}


/* css breadcrumbs */
.breadcrumbs {
	padding: 8px 15px;
	margin-bottom: 20px;
	list-style: none;
	background-color: #F3F3F3;
	border-radius: 4px;
}
.breadcrumbs > li {
	display: inline-block;
}
.breadcrumbs > li > a {
	color: #000;
	text-decoration: none;
}
.breadcrumbs > li + li:before {
	padding: 0 5px;
	color: #CCC;
	content: "/\00a0";
}
.breadcrumbs > .disabled {
	color: #CCC;
	cursor: not-allowed;
}
.breadcrumbs > .active {
	color: #777;
}


/* css pagination */
.pagination {
	display: inline-block;
	padding-left: 0;
	margin: 20px 0;
	border-radius: 4px;
}
.pagination > li {
	display: inline;
}
.pagination > li > a {
	position: relative;
	float: left;
	padding: 6px 12px;
	margin-left: -1px;
	line-height: 1.42857143;
	color: #337AB7;
	text-decoration: none;
	background-color: #FFF;
	border: 1px solid #DDD;
}
.pagination > li:first-child > a {
	margin-left: 0;
	border-top-left-radius: 4px;
	border-bottom-left-radius: 4px;
}
.pagination > li:last-child > a {
	border-top-right-radius: 4px;
	border-bottom-right-radius: 4px;
}
.pagination > li > a:hover,
.pagination > li > a:focus {
	z-index: 2;
	color: #23527C;
	background-color: #EEE;
	border-color: #DDD;
}
.pagination > li > a.active,
.pagination > li > a.active:hover,
.pagination > li > a.active:focus {
	z-index: 3;
	color: #FFF;
	cursor: default;
	background-color: #337AB7;
	border-color: #337AB7;
}
.pagination > li > a.disabled,
.pagination > li > a.disabled:hover,
.pagination > li > a.disabled:focus {
	color: #777;
	cursor: not-allowed;
	background-color: #FFF;
	border-color: #DDD;
}


/* css accordion */

.accordion {
	width: 99.9%;
}

.accordion .transition, .accordion p, .accordion ul li i:before, .accordion ul li i:after {
	transition: all 0.25s ease-in-out;
}

.accordion .flipIn, .accordion h1, .accordion ul li {
	-webkit-animation: flipdown 0.5s ease both;
	animation: flipdown 0.5s ease both;
}

.accordion .no-select, .accordion h2 {
	-webkit-tap-highlight-color: transparent;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.accordion h2 {
	font-size: 16px;
	line-height: 32px;
	display: block;
	background-color: #fff;
	margin: 0;
	cursor: pointer;
}

.accordion p {
	position: relative;
	overflow: hidden;
	opacity: 1;
	-webkit-transform: translate(0, 0);
	transform: translate(0, 0);
	z-index: 2;
	margin: 10px 0px 25px 0px;
}

.accordion ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.accordion ul li {
	position: relative;
	margin: 0;
	border-top: 1px solid #ddd;
}
.accordion ul li i {
	position: absolute;
	-webkit-transform: translate(-6px, 0);
	transform: translate(-6px, 0);
	margin-top: 16px;
	right: 0;
}
.accordion ul li i:before, .accordion ul li i:after {
	content: "";
	position: absolute;
	background-color: #000;
	width: 3px;
	height: 9px;
}
.accordion ul li i:before {
	-webkit-transform: translate(-2px, 0) rotate(45deg);
	transform: translate(-2px, 0) rotate(45deg);
}
.accordion ul li i:after {
	-webkit-transform: translate(2px, 0) rotate(-45deg);
	transform: translate(2px, 0) rotate(-45deg);
}
.accordion ul li input[type=checkbox] {
	position: absolute;
	cursor: pointer;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0;
}
.accordion ul li input[type=checkbox]:checked ~ p {
	margin: 0;
	max-height: 0;
	opacity: 0;
	-webkit-transform: translate(0, 50%);
	transform: translate(0, 50%);
}
.accordion ul li input[type=checkbox]:checked ~ i:before {
	-webkit-transform: translate(2px, 0) rotate(45deg);
	transform: translate(2px, 0) rotate(45deg);
}
.accordion ul li input[type=checkbox]:checked ~ i:after {
	-webkit-transform: translate(-2px, 0) rotate(-45deg);
	transform: translate(-2px, 0) rotate(-45deg);
}

@-webkit-keyframes flipdown {
	0% {
		opacity: 0;
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
	}
	5% {
		opacity: 1;
	}
	80% {
		-webkit-transform: rotateX(8deg);
		transform: rotateX(8deg);
	}
	83% {
		-webkit-transform: rotateX(6deg);
		transform: rotateX(6deg);
	}
	92% {
		-webkit-transform: rotateX(-3deg);
		transform: rotateX(-3deg);
	}
	100% {
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}
}

@keyframes flipdown {
	0% {
		opacity: 0;
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-transform: rotateX(-90deg);
		transform: rotateX(-90deg);
	}
	5% {
		opacity: 1;
	}
	80% {
		-webkit-transform: rotateX(8deg);
		transform: rotateX(8deg);
	}
	83% {
		-webkit-transform: rotateX(6deg);
		transform: rotateX(6deg);
	}
	92% {
		-webkit-transform: rotateX(-3deg);
		transform: rotateX(-3deg);
	}
	100% {
		-webkit-transform-origin: top center;
		transform-origin: top center;
		-webkit-transform: rotateX(0deg);
		transform: rotateX(0deg);
	}
}
	


/* Smarthphone */
@media (max-width: 550px) {

	.row,
	.row-top,
	.row-middle,
	.row-bottom,
	.row-left,
	.row-center,
	.row-right,
	.row-between,
	.row-around {
		display: block;
	}
	
	.container {
		width: 100%;
		margin: 0 auto;
		padding: 0 20px;
	}
	
	.column,
	.columns {
		width: 100%;
		display: block;
		box-sizing: border-box;
	}

	.column,
	.columns {
		margin-left: 0%;
	}
	.column:first-child,
	.columns:first-child {
		margin-left: 0;
	}

	.one.column,
	.one.columns                    { width: 100%; }
	.two.columns                    { width: 100%; }
	.three.columns                  { width: 100%; }
	.four.columns                   { width: 100%; }
	.five.columns                   { width: 100%; }
	.six.columns                    { width: 100%; }
	.seven.columns                  { width: 100%; }
	.eight.columns                  { width: 100%; }
	.nine.columns                   { width: 100%; }
	.ten.columns                    { width: 100%; }
	.eleven.columns                 { width: 100%; }
	.twelve.columns                 { width: 100%; margin-left: 0; }

	.one.column-nogap,
	.one.columns-nogap              { width: 100%; }
	.two.columns-nogap              { width: 100%; }
	.three.columns-nogap            { width: 100%; }
	.four.columns-nogap             { width: 100%; }
	.five.columns-nogap             { width: 100%; }
	.six.columns-nogap              { width: 100%; }
	.seven.columns-nogap            { width: 100%; }
	.eight.columns-nogap            { width: 100%; }
	.nine.columns-nogap             { width: 100%; }
	.ten.columns-nogap              { width: 100%; }
	.eleven.columns-nogap           { width: 100%; }
	.twelve.columns-nogap           { width: 100%; }

}

/* Tablet */
@media (min-width: 551px) and (max-width: 1024px) {

}

/* Computer */
@media (min-width: 1025px) {

}