/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets
  List of CSS3 Sass Mixins File to be @imported and @included as you need
  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files
  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties
------------------------------------------------------------- */
/* line 4, ../sass/main.scss */
html, body {
  background-color: #CCC;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: 'Verdana', sans-serif;
}

/* line 12, ../sass/main.scss */
a {
  text-decoration: none;
  color: #3f3fad;
  -webkit-transition: all 0.2s linear;
  -khtml-transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -ms-transition: all 0.2s linear;
  -o-transition: all 0.2s linear;
  transition: all 0.2s linear;
}
/* line 18, ../sass/main.scss */
a:visited {
  color: #3f3fad;
}

/* line 23, ../sass/main.scss */
.clear {
  clear: both;
}

/* line 27, ../sass/main.scss */
#body-wrapper {
  position: relative;
  max-width: 800px;
  padding: 0 15px;
  margin: 30px auto 20px auto;
  background-color: #CCC;
  /*border:1px solid red;	*/
}

/* line 36, ../sass/main.scss */
.pull-right {
  float: right;
}

/* line 40, ../sass/main.scss */
.btn {
  display: inline-block;
  padding: 4px 12px;
  margin-bottom: 0;
  font-size: 14px;
  line-height: 20px;
  vertical-align: middle;
  color: #333;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.75);
  background-color: #f5f5f5;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f5f5f5), to(#e6e6e6));
  background-image: -webkit-linear-gradient(top, #f5f5f5, #e6e6e6);
  background-image: -moz-linear-gradient(top, #f5f5f5, #e6e6e6);
  background-image: -ms-linear-gradient(top, #f5f5f5, #e6e6e6);
  background-image: -o-linear-gradient(top, #f5f5f5, #e6e6e6);
  background-image: linear-gradient(top, #f5f5f5, #e6e6e6);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorStr='#f5f5f5', endColorStr='#e6e6e6');
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
  border: 1px solid #ccc;
  border-bottom-color: #b3b3b3;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 2px rgba(0, 0, 0, 0.05);
  /*@include box-shadow(0 1px 0 rgba(255,255,255,.2) 1);*/
  text-align: center;
}

/* line 67, ../sass/main.scss */
.texte_rouge {
  color: #FF0000;
}

/* line 71, ../sass/main.scss */
.texte_vert {
  color: #2FCC00;
}

/* line 75, ../sass/main.scss */
.texte_jaune {
  color: #FFD100;
}

/* line 79, ../sass/main.scss */
.texte_orange {
  color: #FF7E00;
}
