/*!
* www.KNACSS.com V2.9 (2013-10) @author: Raphael Goetter, Alsacreations
* Licence WTFPL http://www.wtfpl.net/ 
*/

/* ----------------------------- */
/* ==reset                       */
/* ----------------------------- */

/* base font-size corresponds to 10px and is adapted to rem unit */
html {
	font-size: 62.5%;
}
body {
	background-color: #fff;
	color: #000;
	font-size: 1.4em; /* equiv 14px */
	line-height: 1.5; /* adapt to your design */
}

/* font-sizing for content */
/* preserves vertical-rythm, thanks to http://soqr.fr/vertical-rhythm/ */
.bodywrapper p,
.bodywrapper ul,
.bodywrapper ol,
.bodywrapper dl,
.bodywrapper blockquote,
.bodywrapper pre,
.bodywrapper td,
.bodywrapper th,
.bodywrapper label,
.bodywrapper textarea,
.bodywrapper caption,
.bodywrapper details,
.bodywrapper figure {
	margin: .75em 0 0;
	line-height: 1.5;
}
.bodywrapper h1, .bodywrapper .h1-like {
	margin: 0.6563em 0 0 0;
	font-size: 2.2857em; /* equiv 32px */
	line-height: 1.3126;
}
.bodywrapper h2, .bodywrapper .h2-like {
	margin: 0.75em 0 0 0;
	font-size: 2em; /* equiv 28px */
	line-height: 1.5;
}
.bodywrapper h3, .bodywrapper .h3-like {
	margin: 0.875em 0 0 0;
	font-size: 1.7143em; /* equiv 24px */
	line-height: 1.75;
}
.bodywrapper h4, .bodywrapper .h4-like {
	margin: 1.05em 0 0 0;
	font-size: 1.4286em; /* equiv 20px */
	line-height: 1.05;
}
.bodywrapper h5, .bodywrapper .h5-like {
	margin: 1.1667em 0 0 0;
	font-size: 1.2857em; /* equiv 18px */
	line-height: 1.1667;
}
.bodywrapper h6, .bodywrapper .h6-like {
	margin: 1.3125em 0 0 0;
	font-size: 1.1429em; /* equiv 16px */
	line-height: 1.3125;
}

/* alternate font-sizing */
.bodywrapper .smaller {
	font-size: .7143em; /* equiv 10px */
}
.bodywrapper .small {
	font-size: .8571em; /* equiv 12px */
}
.bodywrapper .big {
	font-size: 1.1429em; /* equiv 16px */
}
.bodywrapper .bigger {
	font-size: 1.2857em; /* equiv 18px */
}
.bodywrapper .biggest {
	font-size: 1.4286em; /* equiv 20px */
}

/* soft reset */
html,
body {
	margin: 0;
	padding: 0;
}
.bodywrapper ul,
.bodywrapper ol {
	padding-left: 2em;
}
.bodywrapper ul.unstyled {
	list-style: none;
}
.bodywrapper code, 
.bodywrapper pre,
.bodywrapper samp,
.bodywrapper kbd {
	white-space: pre-wrap;
	font-family: consolas, 'DejaVu Sans Mono', courier, monospace;
	line-height: 1em;
}
.bodywrapper code, .bodywrapper kbd, .bodywrapper mark {
	border-radius: 2px;
}
.bodywrapper em {
	font-style: italic;
}
.bodywrapper strong {
	font-weight: bold;
}
.bodywrapper kbd {
	padding: 0 2px;
	border: 1px solid #999;
}
.bodywrapper code {
	padding: 2px 4px;
	background: rgba(0,0,0,.04);
	color: #b11; 
}
.bodywrapper mark {
	padding:2px 4px;
	background: #ff0;
}
.bodywrapper sup,
.bodywrapper sub {
	vertical-align: 0;
	position: relative;
}
.bodywrapper sup {
	bottom: 1ex;
}
.bodywrapper sub {
	top: .5ex;
}
.bodywrapper table { margin-bottom: 1.5em; }

/* avoid top margins on first content element */
.bodywrapper p:first-child,
.bodywrapper ul:first-child,
.bodywrapper ol:first-child,
.bodywrapper dl:first-child,
.bodywrapper blockquote:first-child,
.bodywrapper pre:first-child,
.bodywrapper h1:first-child,
.bodywrapper h2:first-child,
.bodywrapper h3:first-child,
.bodywrapper h4:first-child,
.bodywrapper h5:first-child,
.bodywrapper h6:first-child {
	margin-top: 0;
}

/* avoid margins on nested elements */
.bodywrapper li p,
.bodywrapper li ul,
.bodywrapper li ol {
	margin-top: 0;
	margin-bottom: 0;
}

/* max values */
.bodywrapper img, .bodywrapper table, .bodywrapper td, .bodywrapper blockquote, .bodywrapper code, .bodywrapper pre, .bodywrapper textarea, .bodywrapper input, .bodywrapper video {
	max-width: 100%;
}
/* pictures */
.bodywrapper img {
	vertical-align: middle;
}
/* Google Gmap3 bug fix on images */
.bodywrapper :not(.gm-style) img {
	height: auto !important;
}
.bodywrapper .ie678 .gm-style img {
	height: 100%;  /* IE678 hack */
}
.bodywrapper .gm-style img,
.bodywrapper .gmnoscreen img,
.bodywrapper .gmnoprint img {
	max-width: none !important;
}

.bodywrapper a img { border: 0; }

/* scripts */
body > script {display: none !important;}

/* skip-links */
.bodywrapper .skip-links {
	position: absolute;
}
.bodywrapper .skip-links a {
	position: absolute;
	left: -7000px;
	padding: 0.5em;
	background: #000;
	color:#fff;
	text-decoration: none;
}
.bodywrapper .skip-links a:focus {
	position: static;
}

/* ----------------------------- */
/* ==layout and modules          */
/* ----------------------------- */

/* switching box model for all elements */
* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/* float layout */
/* module, gains superpower "BFC" Block Formating Context */
.bodywrapper .mod { 
	overflow: hidden;
}

/* blocks that needs to be placed under floats */
.bodywrapper .clear,
.bodywrapper .line,
.bodywrapper .row {
	clear: both;
}

/* blocks that must contain floats */
.bodywrapper .clearfix:after,
.bodywrapper .line:after,
.bodywrapper .mod:after {
	content: "";
	display: table;
	clear: both;
}

/* table layout */
.bodywrapper .row {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.bodywrapper .row > *,
.bodywrapper .col {
	display: table-cell;
	vertical-align: top;
}

/* inline-block */
.bodywrapper .inbl {
	display: inline-block;
	vertical-align: top;
}

/* alignments (blocks and inline) */
/* ------------------------------ */

/* left elements */
.bodywrapper .left {
	float: left;
}
.bodywrapper img.left {
	margin-right: 1em;
}

/* right elements */
.bodywrapper .right {
	float: right;
}
.bodywrapper img.right {
	margin-left: 1em;
}

.bodywrapper img.left, .bodywrapper img.right {
	margin-bottom: 5px;
}

.bodywrapper .center    { margin-left: auto; margin-right: auto; }
.bodywrapper .txtleft   { text-align: left; }
.bodywrapper .txtright  { text-align: right; }
.bodywrapper .txtcenter { text-align: center; }

/* blocks widths (percentages and pixels) */
.bodywrapper .w10    { width: 10%; }
.bodywrapper .w20    { width: 20%; }
.bodywrapper .w25    { width: 25%; }
.bodywrapper .w30    { width: 30%; }
.bodywrapper .w33    { width: 33.3333%; }
.bodywrapper .w40    { width: 40%; }
.bodywrapper .w50    { width: 50%; }
.bodywrapper .w55    { width: 55%; }
.bodywrapper .w60    { width: 60%; }
.bodywrapper .w66    { width: 66.6666%; }
.bodywrapper .w70    { width: 70%; }
.bodywrapper .w75    { width: 75%; }
.bodywrapper .w80    { width: 80%; }
.bodywrapper .w90    { width: 90%; }
.bodywrapper .w100   { width: 100%; }

.bodywrapper .w50p   { width: 50px; }
.bodywrapper .w100p  { width: 100px; }
.bodywrapper .w150p  { width: 150px; }
.bodywrapper .w200p  { width: 200px; }
.bodywrapper .w300p  { width: 300px; }
.bodywrapper .w400p  { width: 400px; }
.bodywrapper .w500p  { width: 500px; }
.bodywrapper .w600p  { width: 600px; }
.bodywrapper .w700p  { width: 700px; }
.bodywrapper .w800p  { width: 800px; }
.bodywrapper .w960p  { width: 960px; }
.bodywrapper .mw960p { max-width: 960px; }
.bodywrapper .w1140p  { width: 1140px; }
.bodywrapper .mw1140p { max-width: 1140px; }

/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n,0 = small(10px),medium(20px),large(30px), zero or none(0)
source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
*/
.bodywrapper .m-reset, .bodywrapper .ma0 { margin: 0; }
.bodywrapper .p-reset, .bodywrapper .pa0 { padding: 0; }
.bodywrapper .ma1, .bodywrapper .mas { margin: 10px; }
.bodywrapper .ma2, .bodywrapper .mam { margin: 20px; }
.bodywrapper .ma3, .bodywrapper .mal { margin: 30px; }
.bodywrapper .pa1, .bodywrapper .pas { padding: 10px; }
.bodywrapper .pa2, .bodywrapper .pam { padding: 20px; }
.bodywrapper .pa3, .bodywrapper .pal { padding: 30px; }

.bodywrapper .mt0, .bodywrapper .mtn { margin-top: 0; }
.bodywrapper .mt1, .bodywrapper .mts { margin-top: 10px; }
.bodywrapper .mt2, .bodywrapper .mtm { margin-top: 20px; }
.bodywrapper .mt3, .bodywrapper .mtl { margin-top: 30px; }
.bodywrapper .mr0, .bodywrapper .mrn { margin-right: 0; }
.bodywrapper .mr1, .bodywrapper .mrs { margin-right: 10px; }
.bodywrapper .mr2, .bodywrapper .mrm { margin-right: 20px; }
.bodywrapper .mr3, .bodywrapper .mrl { margin-right: 30px; }
.bodywrapper .mb0, .bodywrapper .mbn { margin-bottom: 0; }
.bodywrapper .mb1, .bodywrapper .mbs { margin-bottom: 10px; }
.bodywrapper .mb2, .bodywrapper .mbm { margin-bottom: 20px; }
.bodywrapper .mb3, .bodywrapper .mbl { margin-bottom: 30px; }
.bodywrapper .ml0, .bodywrapper .mln { margin-left: 0; }
.bodywrapper .ml1, .bodywrapper .mls { margin-left: 10px; }
.bodywrapper .ml2, .bodywrapper .mlm { margin-left: 20px; }
.bodywrapper .ml3, .bodywrapper .mll { margin-left: 30px; }

.bodywrapper .pt0, .bodywrapper .ptn { padding-top: 0; }
.bodywrapper .pt1, .bodywrapper .pts { padding-top: 10px; }
.bodywrapper .pt2, .bodywrapper .ptm { padding-top: 20px; }
.bodywrapper .pt3, .bodywrapper .ptl { padding-top: 30px; }
.bodywrapper .pr0, .bodywrapper .prn { padding-right: 0; }
.bodywrapper .pr1, .bodywrapper .prs { padding-right: 10px; }
.bodywrapper .pr2, .bodywrapper .prm { padding-right: 20px; }
.bodywrapper .pr3, .bodywrapper .prl { padding-right: 30px; }
.bodywrapper .pb0, .bodywrapper .pbn { padding-bottom: 0; }
.bodywrapper .pb1, .bodywrapper .pbs { padding-bottom: 10px; }
.bodywrapper .pb2, .bodywrapper .pbm { padding-bottom: 20px; }
.bodywrapper .pb3, .bodywrapper .pbl { padding-bottom: 30px; }
.bodywrapper .pl0, .bodywrapper .pln { padding-left: 0; }
.bodywrapper .pl1, .bodywrapper .pls { padding-left: 10px; }
.bodywrapper .pl2, .bodywrapper .plm { padding-left: 20px; }
.bodywrapper .pl3, .bodywrapper .pll { padding-left: 30px; }

/* hiding content */
.bodywrapper .visually-hidden {
	position: absolute;
	left: -7000px;
	overflow: hidden;
}
.bodywrapper [dir=rtl] .visually-hidden {
	left: auto;
	right: -7000px;
}

.bodywrapper .desktop-hidden { display: none; } /* hidden on desktop */

/* ----------------------------- */
/* ==iefix                       */
/* ----------------------------- */

/* hasLayout for IE6/IE7 */
.ie67 .bodywrapper .clearfix,
.ie67 .bodywrapper .line,
.ie67 .bodywrapper .mod,
.ie67 .bodywrapper .row,
.ie67 .bodywrapper .col {
	zoom: 1;
}

/* inline-block and table-cell for IE6/IE7 */
/* warning: .col needs a width on IE6/IE7 */
.ie67 .bodywrapper .btn,
.ie67 .bodywrapper .col,
.ie67 .bodywrapper .inbl {
	display: inline;
	zoom: 1;
}
.ie8 .bodywrapper img {
	width: auto; /* @bugfix for IE8 */
}

/* Active box-sizing for IE6/IE7 */
/* @source https://github.com/Schepp/box-sizing-polyfill */
/*
.ie67 * {
	behavior: url(/javascript/boxsizing.htc);
}
*/

/* ----------------------------- */
/* ==print                       */
/* ----------------------------- */

/* quick print reset */
@media print {
	p,
	blockquote {
		orphans: 2;
		widows: 2;
	}
	blockquote,
	ul,
	ol {
		page-break-inside: avoid;
	}
	h1,
	h2,
	h3,
	caption {
		page-break-after: avoid;
	}
}

/* debug helper */
.bodywrapper .knacss-debug {
	background: pink;
	outline: 3px solid maroon;
}

/* orientation iOS font-size fix */
@media (orientation: landscape) and (max-device-width: 768px) {
	html,
	body {
		-webkit-text-size-adjust: 100%;
	}
}

/* ----------------------------- */
/* ==own stylesheet              */
/* ----------------------------- */

/* Here should go your own CSS styles */
/* You can link them with an @import or, better for webperf, just paste them here */

/* @import url(my-styles.css); */


/* ----------------------------- */
/* ==grids                       */
/* ----------------------------- */

/* grids inspired from SUIT https://github.com/suitcss/suit */
/* font-family hack explained here : https://github.com/raphaelgoetter/KNACSS/issues/37 */

.bodywrapper .grid {
	overflow: hidden;
}
.bodywrapper .grid > * {
	display: block;
	padding: 0;
	margin-left: -20px; /* gutter value */
	text-align: left;
	letter-spacing: -0.31em;
	text-rendering: optimizespeed;
}
/* Opera hack */
.opera:-o-prefocus,
.bodywrapper .grid > * {
	word-spacing: -0.43em;
}
.bodywrapper .grid > * > * {
	display: inline-block;
	width: 100%;	
	padding-left: 20px; /* gutter value */
	margin-left: 0;
	vertical-align: top;
	text-align: left;
	letter-spacing: normal;
	word-spacing: normal;
	text-rendering: auto;
	*display: inline; *zoom: 1; /* IE67 hack */
}
.bodywrapper .grid2 > * {width: 50%;}
.bodywrapper .grid3 > * {width: 33.333%;}
.bodywrapper .grid4 > * {width: 25%;}
.bodywrapper .grid5 > * {width: 20%;}
.bodywrapper .grid6 > * {width: 16.667%;}
.bodywrapper .grid8 > * {width: 12.5%;}
.bodywrapper .grid10 > * {width: 10%;}
.bodywrapper .grid12 > * {width: 8.333%;}

/* unequal grids (1-2, 2-1, 1-3 and 3-1) for 2 blocks */
.bodywrapper .grid2-1 > *:first-child,
.bodywrapper .grid1-2 > * + * { width: 66.666%; }
.bodywrapper .grid1-2 > *:first-child,
.bodywrapper .grid2-1 > * + * { width: 33.333%; }
.bodywrapper .grid1-3 > *:first-child,
.bodywrapper .grid3-1 > * + * { width: 25%; }
.bodywrapper .grid3-1 > *:first-child,
.bodywrapper .grid1-3 > * + * { width: 75%; }

/* Responsiv-o-matic */
/* @media (max-width: 1024px) {
	.grid5 > *,
	.grid6 > *,
	.grid8 > *,
	.grid10 > *,
	.grid12 > * {width: 33.333%}
}
@media (max-width: 768px) {
	.grid3 > *,
	.grid4 > *,
	.grid5 > *,
	.grid6 > *,
	.grid8 > *,
	.grid10 > *,
	.grid12 > * {width: 50%}
}
@media (max-width: 640px) {
	.grid > * > * {width: 100% !important}
}
*/

/* ----------------------------- */
/* ==tables                      */
/* ----------------------------- */

.bodywrapper table,
.bodywrapper .table {
	max-width : 100%;
	table-layout: fixed;
	border-collapse: collapse;
	vertical-align: top;
}
.bodywrapper table {
	width: 100%;
}
.bodywrapper .table {
	display: table;
}
.bodywrapper table#recaptcha_table,
.bodywrapper table.table-auto {
	table-layout:auto;
}
.bodywrapper caption {
	padding: 10px;
	color: #555;
	font-style: italic;	
}
.bodywrapper table { 
	border: 1px solid #ccc;
}
.bodywrapper tr > * + * {
	border-left: 1px solid #ccc;
}
.bodywrapper th,
.bodywrapper td {
	padding: .3em .8em;
	text-align: left;
	border-bottom: 1px solid #ccc;
}
.bodywrapper td {
	color: #333;
}

/* alternate tables */
.bodywrapper .alternate { border: 0; }
.bodywrapper .alternate tbody { 
	border: 1px solid #ccc; 
}
.bodywrapper .alternate thead tr > * + * {
	border-left: 0;
}
.bodywrapper .alternate tbody tr > * + * {
	border-left: 1px solid #ccc;
}

/* alternate-vert tables */
.bodywrapper .alternate-vert { 
	border: 0;
	border-right: 1px solid #ccc;
}
.bodywrapper .alternate-vert tr > :first-child {
	border-bottom: 0;
}
.bodywrapper .alternate-vert tr > * + * {
	border-top: 1px solid #ccc;
}

/* striped tables */
.bodywrapper .striped tbody tr:nth-child(odd) {
	background: #eee;
	background: rgba(0, 0, 0, .05);
}

/* striped-vert tables */
.bodywrapper .striped-vert tr > :first-child {
	background: #eee;
	background: rgba(0, 0, 0, .05);
}
/* ----------------------------- */
/* ==forms                       */
/* ----------------------------- */

/* thanks to HTML5boilerplate,
* github.com/nathansmith/formalize 
* and www.sitepen.com
*/


/* buttons */
.bodywrapper .btn {
	display: inline-block;
}

/* forms items */
.bodywrapper form,
.bodywrapper fieldset {
	border: none;
}
.bodywrapper input,
.bodywrapper button,
.bodywrapper select,
.bodywrapper label,
.bodywrapper .btn {
	vertical-align: middle;
	font-family: inherit;
	font-size: inherit;
}
.bodywrapper label { 
	display: inline-block;
	vertical-align: middle;
	/*cursor: pointer;*/
}
.bodywrapper legend {
	border: 0;
	white-space: normal;
}
.bodywrapper textarea {
	overflow: auto; /* Removes default vertical scrollbar on empty textarea in IE6/7/8/9 */
	min-height: 5em;
	vertical-align: top;
	font-family: inherit;
	font-size: inherit;
	resize: vertical;
}
.bodywrapper button,
.bodywrapper input[type="button"],
.bodywrapper input[type="reset"],
.bodywrapper input[type="submit"] {
	/*cursor: pointer;*/
	-webkit-appearance: button; /* clickable input types in iOS */
}
.bodywrapper input[type="checkbox"],
.bodywrapper input[type="radio"] {
	padding: 0; /* Corrects excess space around these inputs in IE8/9 */
}
.bodywrapper input[type="search"] {
	-webkit-appearance: textfield;
}

/* if select styling bugs on WebKit */
/* select { -webkit-appearance: none; } */

/* 'x' appears on right of search input when text is entered. This removes it */
.bodywrapper input[type="search"]::-webkit-search-decoration,
.bodywrapper input[type="search"]::-webkit-search-cancel-button,
.bodywrapper input[type="search"]::-webkit-search-results-button,
.bodywrapper input[type="search"]::-webkit-search-results-decoration {
	display: none;
}
.bodywrapper ::-webkit-input-placeholder {
	color: #777;
}
.bodywrapper input:-moz-placeholder,
.bodywrapper textarea:-moz-placeholder {
	color: #777;
}

/* Removes inner padding and border in FF3+ */
.bodywrapper button::-moz-focus-inner,
.bodywrapper input[type='button']::-moz-focus-inner,
.bodywrapper input[type='reset']::-moz-focus-inner,
.bodywrapper input[type='submit']::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* ----------------------------- */
/* ==icons and bullets	         */
/* ----------------------------- */

.bodywrapper .icon {display: inline-block;}

.bodywrapper .icon:before,
.bodywrapper .icon.after:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: relative; top: -.1em;
	margin: 0 0.3em 0 0;
	font: 1.4em/1 sans-serif;
	color: #000;
	text-shadow: 1px 1px 0 rgba(0,0,0,.1);
	speak: none;
}

@media (min-device-width: 768px) {
	.icon:before,
	.icon.after:after {
	font: 1em/0.6 sans-serif;
	-webkit-transform: rotateZ(0.05deg);
	}
}

.bodywrapper .icon.after:after {
	margin: 0 0 0 8px;
}
.bodywrapper .icon.after:before {
	content: "" !important
}
.bodywrapper .icon-rate:before,
.bodywrapper .icon-rate.after:after {
	content: "\2605";
}
.bodywrapper .icon-unrate:before,
.bodywrapper .icon-unrate.after:after{
	content: "\2606";
}
.bodywrapper .icon-check:before,
.bodywrapper .icon-check.after:after{
	content: "\2713";
}
.bodywrapper .icon-uncheck:before,
.bodywrapper .icon-uncheck.after:after{
	content: "\2717";
}
.bodywrapper .icon-cloud:before,
.bodywrapper .icon-cloud.after:after {
	content: "\2601";
}
.bodywrapper .icon-dl:before,
.bodywrapper .icon-dl.after:after {
	content: "\21E3";
	font-weight: bold;
}
.bodywrapper .icon-cross:before,
.bodywrapper .icon-cross.after:after {
	content: "\2716";
	font-weight: bold;
}
.bodywrapper .icon-arrow1:before, 
.bodywrapper .icon-arrow1.after:after {
	content: "\2192";
	position: relative; 
		top: -0.15em;
}
.bodywrapper .icon-arrow2:before,
.bodywrapper .icon-arrow2.after:after {
	content: "\279E";
}
.bodywrapper .icon-arrow3:before,
.bodywrapper .icon-arrow3.after:after {
	content: "\279A";
}
.bodywrapper .icon-bracket1:before,
.bodywrapper .icon-bracket1.after:after {
	content: "\2039";
	font-weight: bold;
	font-size: 1.6em;
	position: relative; 
		top: -0.15em;
}
.bodywrapper .icon-bracket2:before,
.bodywrapper .icon-bracket2.after:after {
	content: "\203A";
	font-weight: bold;
	font-size: 1.6em;
	position: relative; 
		top: -0.15em;
}
.bodywrapper .icon-up:before,
.bodywrapper .icon-up.after:after {
	content: "\25B2";
}
.bodywrapper .icon-down:before,
.bodywrapper .icon-down.after:after {
	content: "\25BC";
}
.bodywrapper .icon-bull:before,
.bodywrapper .icon-bull.after:after {
	content: "\2022";
	font-size: 1.2em;
	top: -0.05em;
}
.bodywrapper .icon-bull2:before,
.bodywrapper .icon-bull2.after:after {
	content: "\25E6";
	top: -0.05em;
}
.bodywrapper .icon-bull3:before,
.bodywrapper .icon-bull3.after:after{
	content: "\2023";
	font-size: 1.6em;
	top: -0.05em;
}
.bodywrapper .icon-nav:before,
.bodywrapper .icon-nav.after:after {
	content: "\2261";
	font-weight: bold;
}
.bodywrapper .icon-losange:before,
.bodywrapper .icon-losange.after:after {
	content: "\25C6";
}
.bodywrapper .icon-asteri:before,
.bodywrapper .icon-asteri.after:after {
	content: "\2731";
	font-weight: bold;
}
.bodywrapper .icon-mail:before,
.bodywrapper .icon-mail.after:after {
	content: "\2709";
	font-size: 1.6em;
	top: -.05em;
}
