@charset "UTF-8";
body {
	font: 90%/1.4 Verdana, Arial, Helvetica, sans-serif;
	background : #fefdf6;
	margin : 0 auto;
	padding : 0;
	width : 100%;
	height: 100%;
 text-align :;
	color: #333333;
}
.hidden {
	display: none;
}
/* ~~ Element/tag selectors ~~ */
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
	padding: 0;
	margin: 0;
}
h1, h2, h3, h4, h5, h6, p {
	margin-top: 0;	 /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
	padding-right: 15px;
	padding-left: 15px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
}
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
	border: none;
}
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
a:link {
	color: #00F;
	text-decoration: none; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
}
a:visited {
	color: #00F;
	text-decoration: none;
}
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
	text-decoration: underline;
}
hr {
	margin : 25px 100px 25px 100px;
	color: #ffffff;
}
.md {
	padding : 0px 0 0px 2px;
	font-size : 0.7em;
}
#wrap_header {
	overflow: hidden;
	margin : 0 auto;
	padding : 0;
	width : 100%;
	text-align : center;
}
#wrap_header_journal {
	background : #fefdf6 url('../_images/header_bground.jpg') no-repeat center top;
	overflow: hidden;
	margin : 0 auto;
	padding : 0;
	width : 100%;
	text-align : center;
}
#wrap_header_masso {
	background : #fefdf6 url('../_images/header_bground_masso.jpg') no-repeat center top;
	overflow: hidden;
	margin : 0 auto;
	padding : 0;
	width : 100%;
	text-align : center;
}
#banner {
	margin : 0 auto;
	width: 960px;
	background: url("../_images/logo_journal.png") no-repeat left top;
	height: 150px;
}
#banner_masso {
	margin : 0 auto;
	width: 960px;
	background: url("../_images/logo_masso.png") no-repeat left top;
	height: 150px;
}
#mainmenu {
	float: right;
	text-align : center;
	padding : 0px 0 0px 0;
	margin: -35px 0 0 0;
	font-weight : normal;
	font-family : "verdana", sans-serif;
	font-size : 1.2em;
	line-height : 1.3em;
	color: #000000;
}
#mainmenu ul {
	width: 100%;
	text-align : center;
	margin : 10px 0 0 0px;
	padding : 0 0 0 0px;
	font-weight : normal;
}
#mainmenu ul li {
	display : inline;
	list-style : none;
	margin : 0px 0 0 0;
	padding : 0;
}
#mainmenu ul li a {
	display : block;
	float : left;
	margin : 0px 20px 0px 5px;
	padding : 10px 0px;
	text-decoration : none;
	color: #000000;
	opacity: 0.4;
	-moz-opacity: 0.4;
	-webkit-opacity: 0.4;
	filter: alpha(opacity=30);
}
#mainmenu ul li a:hover {
	color: #000000;
	text-decoration : underline;
	font-weight: normal;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100)
}
#mainmenu ul li a.active {
	color: #000000;
	text-decoration : underline;
	font-weight: normal;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100)
}
#centeredmenu {
	float: right;
	text-align : center;
	padding : 0px 0 0px 0;
	margin: 35px 0 0 0;
	font-weight : normal;
	font-family : "verdana", sans-serif;
	font-size : 0.9em;
	line-height : 1.3em;
	color: #000000;
}
#centeredmenu ul {
	width: 100%;
	text-align : center;
	margin : 10px 0 0 550px;
	padding : 0 0 0 0px;
	font-weight : normal;
}
#centeredmenu ul li {
	display : inline;
	list-style : none;
	margin : 0px 0 0 0;
	padding : 0;
}
#centeredmenu ul li a {
	display : block;
	float : left;
	margin : 0px 20px 0px 5px;
	padding : 10px 0px;
	color: #000000;
	text-decoration : none;
	opacity: 0.4;
	-moz-opacity: 0.4;
	-webkit-opacity: 0.4;
	filter: alpha(opacity=40);
}
#centeredmenu ul li a:hover {
	color: #000000;
	text-decoration : none;
	font-weight: normal;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100)
}
#centeredmenu ul li a.active, #centeredmenu ul li a.active:hover {
	color: #000000;
	text-decoration : none;
	font-weight: bold;
	opacity: 1;
	-moz-opacity: 1;
	-webkit-opacity: 1;
	filter: alpha(opacity=100)
}
/* ~~ this fixed width container surrounds the other divs ~~ */
.container {
	width: 940px;
	background-color: #fefdf6;
	margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout */
}
/* ~~ the header is not given a width. It will extend the full width of your layout. It contains an image placeholder that should be replaced with your own linked logo ~~ */


/* ~~ This is the layout information. ~~ 

1) Padding is only placed on the top and/or bottom of the div. The elements within this div have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.

*/

.content {
	padding: 20px 0 15px 0;
	line-height: 1.5em;
}
.content ul {
	padding: 5px 0 20px 40px;
	line-height: 1.6em;
	font-size : 95%;
	list-style: circle;
}
#encart_home_masso {
	/*background-color : #f5c03f;*/
	/*background-color : #87c3eb;*/
	background-color : #c9d451;
	/*background-color : #ffffff;*/
	
	-webkit-border-radius: 8px;
	/* Firefox 1-3.6 */
	-moz-border-radius: 8px;
	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	float : right;
	width : 300px;
	padding: 20px;
	margin: 10px;
}
#encart_home_masso h3 {
	/*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
	
	margin : 0 0 0 0;
	padding : 20px 0px 10px 0px;
	font-weight : normal;
	font-size : 1.1em;
	color : #000000;
	text-decoration : none;
	text-align : center;
}
#encart_home_masso h2 {
	/*text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);*/
	
	margin : 0 0 -10px 0;
	padding : 5px 0px 0px 5px;
	font-weight : bold;
	font-size : 1.3em;
	color : #000000;
	text-decoration : none;
	text-align : center;
}
#encart_home_masso p {
	font-family : "Verdana", "Arial", "Helvetica", sans-serif;
	font-size : 100%;
	margin : 5px 0 5px 0;
	padding : 5px 15px 5px 15px;
	text-align : left;
	color: #000000;
	font-weight : normal;
	line-height : 1.2em;
 font-style:;
}
/** blockquote styles **/
.bq3 {
	clear:both;
	width: 300px;
	background: url('') rgba(227,218,251,1) 10px 10px no-repeat;
	padding: 20px;
	margin: 10px;
	line-height: 18px;
	color: #575757;
	/* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-webkit-border-radius: 8px;
	/* Firefox 1-3.6 */
	-moz-border-radius: 8px;
	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	float : right;
 width :;
 margin :;
 padding :;
}
.bq3 p {
	font-family : "Verdana", "Arial", "Helvetica", sans-serif;
	font-size : 95%;
	margin : 0px -10px -10px 25px;
 padding :;
	text-align : left;
	color: #000000;
	font-weight : bold;
	line-height : 1.5em;
 font-style:;
	padding-right: 35px;
	line-height: 18px;
	background: url('') bottom right no-repeat;
	padding-bottom: 25px;
	color: #333;
}
.bq3b {
	width: 300px;
	background: url('') rgba(227,218,251,1) 10px 10px no-repeat;
	padding: 20px;
	margin: 10px;
	line-height: 18px;
	color: #575757;
	/* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-webkit-border-radius: 8px;
	/* Firefox 1-3.6 */
	-moz-border-radius: 8px;
	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	float : left;
 width :;
 margin :;
 padding :;
}
.bq3b p {
	font-family : "Verdana", "Arial", "Helvetica", sans-serif;
	font-size : 95%;
	margin : 0px -10px -10px 25px;
 padding :;
	text-align : left;
	color: #000000;
	font-weight : bold;
	line-height : 1.5em;
 font-style:;
	padding-right: 35px;
	line-height: 18px;
	background: url('') bottom right no-repeat;
	padding-bottom: 25px;
	color: #333;
}
.bq4 {
	width: 300px;
	background: url('') rgba(247,157,27,1) 10px 10px no-repeat;
	padding: 20px;
	margin: 10px;
	line-height: 18px;
	color: #575757;
	/* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-webkit-border-radius: 8px;
	/* Firefox 1-3.6 */
	-moz-border-radius: 8px;
	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	float : right;
 width :;
 margin :;
 padding :;
}
.bq4 p {
	font-family : "Verdana", "Arial", "Helvetica", sans-serif;
	font-size : 95%;
	margin : 0px -10px -10px 25px;
 padding :;
	text-align : left;
	color: #000000;
	font-weight : bold;
	line-height : 1.5em;
 font-style:;
	padding-right: 35px;
	line-height: 18px;
	background: url('') bottom right no-repeat;
	padding-bottom: 25px;
	color: #333;
}
.bq4b {
	width: 300px;
	background: url('') rgba(247,157,27,1) 10px 10px no-repeat;
	padding: 20px;
	margin: 10px;
	line-height: 18px;
	color: #575757;
	/* Safari 3-4, iOS 1-3.2, Android 1.6- */
	-webkit-border-radius: 8px;
	/* Firefox 1-3.6 */
	-moz-border-radius: 8px;
	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	float : left;
 width :;
 margin :;
 padding :;
}
.bq4b p {
	font-family : "Verdana", "Arial", "Helvetica", sans-serif;
	font-size : 95%;
	margin : 0px -10px -10px 25px;
 padding :;
	text-align : left;
	color: #000000;
	font-weight : bold;
	line-height : 1.5em;
 font-style:;
	padding-right: 35px;
	line-height: 18px;
	background: url('') bottom right no-repeat;
	padding-bottom: 25px;
	color: #333;
}
.roundRec {
	float: left;
	margin: 5px 5px 15px 20px;
	padding: 10px 10px 15px 10px;
	background: #fbaa3b;
	width: 44%;
	-webkit-border-radius: 8px;
	/* Firefox 1-3.6 */
	-moz-border-radius: 8px;
	/* Opera 10.5, IE 9, Safari 5, Chrome, Firefox 4, iOS 4, Android 2.1+ */
	border-radius: 8px;
	-webkit-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	-moz-box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
	box-shadow: 2px 2px 5px 0px rgba(50, 50, 50, 0.4);
}
.roundRec_clear {
	clear:both;
}


.roundRec h4 {
	margin : 10px 0px 0 0px;
	padding : 0px 0px 5px 20px;
	text-align: left;
	font-family : "formatalight", sans-serif;
	font-size : 1.2em;
	line-height: 1.1em;
	font-weight : bold;
	text-decoration : none;
}
.roundRec table {
	border: 0px;
}
.roundRec p, td {
	margin : 10px 0px 5px 0px;
	padding : 0px 0px 0 20px;
	border: 0px;
	text-align: left;
	font-family : "formatalight", sans-serif;
	font-size : 1.1em;
	line-height: 1.2em;
	font-weight : normal;
	text-decoration : none;
}
#tech {
	
	float: left;
	margin : 0px 0px 5px 70px;
	}
.center {
	margin: 0 auto;
 width:;
	display: block;
}
.christine {
	float: left;
	margin : 15px 25px 15px 25px;
	border: 0px solid #fff;
	-moz-box-shadow: 5px 5px 10px #888;
	-webkit-box-shadow: 5px 5px 10px #888;
	box-shadow: 5px 5px 10px #888;
}
.christine2 {
	float: right;
	margin : 15px 25px 15px 25px;
	border: 0px solid #fff;
	-moz-box-shadow: 5px 5px 10px #888;
	-webkit-box-shadow: 5px 5px 10px #888;
	box-shadow: 5px 5px 10px #888;
}
#temoignages {
	font-size: 0.9em;
	line-height: 1.3em;
	padding: 0 0 20px 0;
}
.skype {
	font-family : "Verdana", "Arial", "Helvetica", sans-serif;
	margin : 5px 0 5px 0;
	padding : 5px 10px 5px 15px;
	font-size : 100%;
	line-height: 1.5em;
}
.map {
	text-align: left;
	padding: 0px 0px 0px 0px;
	display: block;
	float: right;
	border: 0px solid #fff;
	-moz-box-shadow: 5px 5px 10px #888;
	-webkit-box-shadow: 5px 5px 10px #888;
	box-shadow: 5px 5px 10px #888;
}
.contact {
	float: left;
	font-family : "formatalight", sans-serif;
	margin: 0;
	padding: 5px 0 0 10px;
}
.contact h2 {
	margin: 0px 0px 0px 0px;
	padding: 0;
	text-align: left;
	font-weight: bold;
}
.contact h3 {
	padding: 0;
	margin: 0px 0px 0px 5px;
	font-weight: bold;
	font-family : "formatalight", sans-serif;
}
.contact h4 {
	margin: 10px 10px 10px 0px;
	font-weight: normal;
	font-size: 1.1em;
}
.contact h5 {
	padding: 0;
	margin: 20px 5px 0px 5px;
	font-weight: normal;
	font-size: 1.1em;
}
.contact p {
	margin: 5px 0px 5px 0px;
	font-weight: normal;
	font-size: 0.8em;
}
.contact img {
	vertical-align : middle;
	margin: 0px 5px 0px 5px;
}
.contact input[type=text] {
	width: 200px;
	margin: 0 0 0 10px;
	padding: 5px;
	border: 2px solid #ccc;
	-webkit-border-radius: 5px;
	border-radius: 5px;
}
.contact input[type=text]:focus {
	border-color: #333;
}
.contact input[type=submit] {
	margin: 0 0 0 5px;
	padding: 5px 15px;
	background: #ccc;
	border: 1px solid #cccccc;
	color: #000000;
	text-decoration: none;
	cursor: pointer;
	-webkit-border-radius: 5px;
	border-radius: 5px;
	-moz-box-shadow: 1px 1px 2px #595959;
	-webkit-box-shadow: 1px 1px 2px #595959;
	box-shadow: 1px 1px 2px #595959;
}
.notes {
 font-family :;
	font-size: 0.8em;
	font-weight : normal;
	text-align: left;
}
/* ~~ The footer ~~ */

footer {
	clear: both;
}
#wrap_footer {
	/*width: 100%;
position:fixed; left:0px; bottom:0px; */
	
	padding: 0px 0;
	height: 140px;
	background : #cadc76 url('../_images/footer_bground.jpg') top no-repeat;
	overflow: hidden;
}
#wrap_footer_masso {
	padding: 0px 0;
	height: 140px;
	background : #cadc76 url('../_images/footer_bground_masso.jpg') top no-repeat;
	overflow: hidden;
}
#footer_content {
	margin : 0 auto;
	padding: 0px 0px 0px 0px;
	width: 960px;
	text-align: left;
	color: #000000;
	line-height: 1.6em;
}
#footer_left {
	text-align: left;
	margin : 15px 0 0 0px;
	padding: 0 0 0 0;
	width: 25%;
}
#footer_left h1 {
	text-align: center;
	margin : 0px 0 2px 0px;
	padding : 0px 0 0 0;
	font-family : "Verdana", sans-serif;
	font-size : 1.5em;
	font-weight : bold;
}
#footer_left h2 {
	margin : 0px 0 0 0px;
	padding : 3px 0 0 0;
	text-align: left;
	font-family : "Verdana", sans-serif;
	font-size : 1.2em;
	line-height: 1.3em;
	color : #1b7780;
	font-weight : bold;
	text-decoration : none;
}
#footer_left h3 {
	margin : 0px 0 0 0px;
	padding : 0px 0 0 0;
	text-align: center;
	font-family : "Verdana", sans-serif;
	font-size : 1em;
	line-height: 1.3em;
	color : #1b7780;
	font-weight : normal;
	text-decoration : none;
}
#footer_left h4 {
	margin : 0px 0 0 0px;
	padding : 0px 0 0 0;
	text-align: center;
	font-family : "Verdana", sans-serif;
	font-size : 0.9em;
	font-weight : normal;
}
#footer_left h5 {
	margin : 25px 0 0 5px;
	padding : 0px 0 0 0;
	text-align: center;
	position: relative;
	bottom: 0px;
	font-family : "Verdana", sans-serif;
	font-size : 0.7em;
	font-weight : normal;
}
#footer_left p {
	margin : 0;
	padding : 0 0;
	vertical-align : middle;
	border-style : none;
	text-align: right;
}
#footer_left a {
	margin : 0 0 0 0px;
	padding : 0 0;
	font-family : "Verdana", sans-serif;
	font-size : 1em;
	border-style : none;
	color: #00F;
	text-align: center;
}
#footer_left img {
	margin : 0;
	padding : 0 0;
	vertical-align : middle;
	border-style : none;
}
#footer_right {
	margin : 0px 0 0 0px;
	padding: 0 0 0 0;
	line-height: 1.0em;
}
#footer_right h5 {
	margin : -20px 10px 0px 0px;
	padding : 0px 0px 0 0;
	text-align: right;
	font-family : "Verdana", sans-serif;
	font-size : 0.7em;
	font-weight : normal;
}
#address_fb img {
	float : left;
	font-family : "formataregular", sans-serif;
	padding : 5px 10px 0px 15px;
	margin : 0px 0 0 0;
	display : inline;
}
#address_fb a {
	float : left;
	padding : 15px 5px 0px 10px;
	margin : 0px 0 0 0;
	font-family : "formataregular", sans-serif;
	font-size : 0.9em;
}
/* ~~ miscellaneous float/clear classes ~~ */
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the #footer is removed or taken out of the #container */
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0px;
}
@import url(http://fonts.googleapis.com/css?family=Rajdhani:300,400);
.marching-ants {
  padding: 5px;
  margin: 10px;
  background-size: 20px 2px, 20px 2px, 2px 20px, 2px 20px;
  background-position: 0 0,  0 100%,  0 0,  100% 0;
  background-repeat: repeat-x,  repeat-x,  repeat-y,  repeat-y;
  -webkit-animation: marching-ants-1 1s;
          animation: marching-ants-1 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
.marching-ants:hover, .marching-ants.marching {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.marching-ants.reverse {
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}
.marching-ants.bnw {
  background-image: -webkit-linear-gradient(left, #fff 50%, #000 50%), -webkit-linear-gradient(left, #fff 50%, #000 50%), -webkit-linear-gradient(top, #fff 50%, #000 50%), -webkit-linear-gradient(top, #fff 50%, #000 50%);
  background-image: linear-gradient(to right, #fff 50%, #000 50%), linear-gradient(to right, #fff 50%, #000 50%), linear-gradient(to bottom, #fff 50%, #000 50%), linear-gradient(to bottom, #fff 50%, #000 50%);
}
.marching-ants.headline {
  background-image: -webkit-linear-gradient(left, #fff 50%, #444 50%), -webkit-linear-gradient(left, #fff 50%, #444 50%), -webkit-linear-gradient(top, #fff 50%, #444 50%), -webkit-linear-gradient(top, #fff 50%, #444 50%);
  background-image: linear-gradient(to right, #fff 50%, #444 50%), linear-gradient(to right, #fff 50%, #444 50%), linear-gradient(to bottom, #fff 50%, #444 50%), linear-gradient(to bottom, #fff 50%, #444 50%);
  color: #fff;
}
.marching-ants.info {
  background-image: -webkit-linear-gradient(left, #dd2 50%, transparent 50%), -webkit-linear-gradient(left, #dd2 50%, transparent 50%), -webkit-linear-gradient(top, #dd2 50%, transparent 50%), -webkit-linear-gradient(top, #dd2 50%, transparent 50%);
  background-image: linear-gradient(to right, #dd2 50%, transparent 50%), linear-gradient(to right, #dd2 50%, transparent 50%), linear-gradient(to bottom, #dd2 50%, transparent 50%), linear-gradient(to bottom, #dd2 50%, transparent 50%);
  background-color: #ffa;
  color: #dd2;
}
.marching-ants.warning {
  padding: 10px;
  margin: 0px;
  background-size: 20px 5px, 20px 5px, 5px 20px, 5px 20px;
  background-position: 0px 0,  0 100%,  0 0,  100% 0;
  background-repeat: repeat-x,  repeat-x,  repeat-y,  repeat-y;
  -webkit-animation: marching-ants-2 1s;
          animation: marching-ants-2 1s;
  -webkit-animation-timing-function: linear;
          animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
  background-image: -webkit-linear-gradient(left, #000 50%, #c9d451 50%), -webkit-linear-gradient(left, #000 50%, #c9d451 50%), -webkit-linear-gradient(top, #000 50%, #c9d451 50%), -webkit-linear-gradient(top, #000 50%, #c9d451 50%);
  background-image: linear-gradient(to right, #000 50%, #c9d451 50%), linear-gradient(to right, #000 50%, #c9d451 50%), linear-gradient(to bottom, #000 50%, #c9d451 50%), linear-gradient(to bottom, #000 50%, #c9d451 50%);
  color: #a00;
  background-color: #c9d451;
}

.marching-ants.warning:hover, .marching-ants.warning.marching {
  -webkit-animation-play-state: running;
          animation-play-state: running;
}
.marching-ants.warning.reverse {
  -webkit-animation-direction: reverse;
          animation-direction: reverse;
}

@-webkit-keyframes marching-ants-1 {
  0% {
    background-position: 0 0,  0 100%,  0 0,  100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}

@keyframes marching-ants-1 {
  0% {
    background-position: 0 0,  0 100%,  0 0,  100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}
@-webkit-keyframes marching-ants-2 {
  0% {
    background-position: 0 0,  0 100%,  0 0,  100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}
@keyframes marching-ants-2 {
  0% {
    background-position: 0 0,  0 100%,  0 0,  100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}
@-webkit-keyframes marching-ants-3 {
  0% {
    background-position: 0 0,  0 100%,  0 0,  100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}
@keyframes marching-ants-3 {
  0% {
    background-position: 0 0,  0 100%,  0 0,  100% 0;
  }
  100% {
    background-position: 40px 0, -40px 100%, 0 -40px, 100% 40px;
  }
}