/*
  Bootstrap v1.1
  Variables and mixins to bootstrap any new web development project.
*/
/* Variables
-------------------------------------------------- */
/* Mixins
-------------------------------------------------- */
.clearfix {
  zoom: 1;
}
.clearfix:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
.center-block {
  display: block;
  margin: 0 auto;
}
.container {
  width: 940px;
  margin: 0 auto;
  zoom: 1;
}
.container:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
.box-sizing {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}
#flexbox .display-box {
  display: -moz-box;
  display: -webkit-box;
  display: box;
}
/* formee styles
-------------------------------------------------------------- */
/* fieldset and legend */
fieldset {
  padding: 0 20px;
  margin: 0 0 20px;
  background: #fff;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
legend {
  font-weight: normal;
  font-size: 19px;
  padding: 0 10px;
}
/* form elements  */
label .required,
.label .required {
  font-weight: bold;
  font-style: normal;
  color: #9d261d;
}
input[type="text"],
input[type="password"],
input[type="file"],
textarea,
select {
  border-color: #c6c6c6 #dadada #eaeaea;
  border-width: 1px;
  border-style: solid;
  padding: 5px;
  background: #fafafa;
  color: #999;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  line-height: 1.2;
}
.ie7 input[type="text"],
.ie7 input[type="password"],
.ie7 input[type="file"],
.ie7 textarea,
.ie7 select {
  width: 90%;
}
input[type="text"]:hover,
input[type="password"]:hover,
input[type="file"]:hover,
textarea:hover,
select:hover {
  color: #666;
  background: #fff none;
  border-color: #c6c6c6;
}
input[type="text"]:focus,
input[type="password"]:focus,
input[type="file"]:focus,
textarea:focus,
select:focus {
  color: #333;
  background: #fff none;
  border-color: #ff9026 #f27600 #f27600 #ff9026;
  outline: 0;
}
/* form msg status  */
.msg-info,
.msg-warning,
.msg-error,
.msg-success {
  color: #2b2b2b;
  -moz-border-radius: 4px;
  border-radius: 4px;
  clear: both;
  margin: 20px 0;
  padding: 20px 20px 20px 50px;
}
.msg-info ul,
.msg-warning ul,
.msg-error ul,
.msg-success ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.msg-info h3,
.msg-warning h3,
.msg-error h3,
.msg-success h3 {
  font-size: 17px;
  font-weight: bold;
  margin: 0 0 5px;
  line-height: 1;
}
.msg-info {
  background: #d1ecf7 url(../images/layout/sprites-forms.png) no-repeat -164px 20px;
  border-color: #bcdfef;
}
.msg-warning {
  background: #fff6bf url(../images/layout/sprites-forms.png) no-repeat -114px -30px;
  border-color: #fceb77;
}
.msg-error {
  background: #fad0d0 url(../images/layout/sprites-forms.png) no-repeat -64px -80px;
  border-color: #f6abab;
}
.msg-success {
  background: #e5f8ce url(../images/layout/sprites-forms.png) no-repeat -16px -127px;
  border-color: #d0f1a6;
}
.msg-success strong,
.msg-success a {
  color: #62b548;
}
.msg-info strong,
.msg-info a {
  color: #11689e;
}
.msg-warning strong,
.msg-warning a {
  color: #957210;
}
.msg-error strong,
.msg-error a {
  color: #b01717;
}
/* form validation */
.field-error {
  border-color: #FAD0D0 !important;
  color: #b01717 !important;
  -webkit-box-shadow: 0 0 1px 0 rgba(176, 23, 23, 0.4);
  -moz-box-shadow: 0 0 1px 0 rgba(176, 23, 23, 0.4);
  box-shadow: 0 0 1px 0 rgba(176, 23, 23, 0.4);
}
.form-error {
  color: #b01717;
  font-size: 13px;
  display: block;
}
/* form buttons */
.buttons {
  margin: 20px 0;
  text-align: right;
}
.buttons input[type="submit"],
.buttons input[type="button"],
.buttons input[type="reset"] {
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #ff6600;
  background: #ff9026;
  background-color: #f27600;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ff9026), to(#f27600));
  /* Konqueror */
  background-image: -moz-linear-gradient(#ff9026, #f27600);
  /* FF 3.6+ */
  background-image: -ms-linear-gradient(#ff9026, #f27600);
  /* IE10 */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff9026), color-stop(100%, #f27600));
  /* Safari 4+, Chrome 2+ */
  background-image: -webkit-linear-gradient(#ff9026, #f27600);
  /* Safari 5.1+, Chrome 10+ */
  background-image: -o-linear-gradient(#ff9026, #f27600);
  /* Opera 11.10 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9026', endColorstr='#f27600', GradientType=0);
  /* IE6 & IE7 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9026', endColorstr='#f27600', GradientType=0)";
  /* IE8+ */
  background-image: linear-gradient(#ff9026, #f27600);
  /* the standard */
  -moz-border-radius: 4px;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  -moz-box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  box-shadow: inset 0 1px 0 0 rgba(255, 255, 255, 0.4);
  cursor: pointer;
  display: inline-block;
  padding: 8px 15px 9px;
  text-align: center;
}
.buttons input:hover,
.buttons input[type="submit"]:hover,
.buttons input[type="button"]:hover,
.buttons input[type="reset"]:hover {
  background: #f27600;
  background-color: #ff9026;
  background-repeat: repeat-x;
  background-image: -khtml-gradient(linear, left top, left bottom, from(#ff9d40), to(#ff9026));
  /* Konqueror */
  background-image: -moz-linear-gradient(#ff9d40, #ff9026);
  /* FF 3.6+ */
  background-image: -ms-linear-gradient(#ff9d40, #ff9026);
  /* IE10 */
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #ff9d40), color-stop(100%, #ff9026));
  /* Safari 4+, Chrome 2+ */
  background-image: -webkit-linear-gradient(#ff9d40, #ff9026);
  /* Safari 5.1+, Chrome 10+ */
  background-image: -o-linear-gradient(#ff9d40, #ff9026);
  /* Opera 11.10 */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9d40', endColorstr='#ff9026', GradientType=0);
  /* IE6 & IE7 */
  -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff9d40', endColorstr='#ff9026', GradientType=0)";
  /* IE8+ */
  background-image: linear-gradient(#ff9d40, #ff9026);
  /* the standard */
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  -moz-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.25);
}
/* forms
-------------------------------------------------------------- */
/* full width, label above field */
.form-style-a .form-item {
  margin: 20px 0;
}
.form-style-a label {
  display: block;
  margin: 0 0 3px;
}
.form-style-a ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-style-a li {
  margin: 5px 0 0;
}
.form-style-a li label {
  display: inline-block;
  display: inline;
}
.form-style-a li input {
  display: inline-block;
  display: inline;
  margin: 0 5px 0 0;
}
/* two col, label above field */
.form-style-b .form-row {
  zoom: 1;
}
.form-style-b .form-row:after {
  display: block;
  visibility: hidden;
  height: 0;
  clear: both;
  content: ".";
}
.form-style-b .form-item {
  margin: 20px 0;
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px 0 0;
}
.form-style-b .form-item.last {
  position: relative;
  top: 0;
  right: -10px;
}
.form-style-b label {
  display: block;
  margin: 0 0 3px;
}
.form-style-b ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-style-b li {
  margin: 5px 0 0;
}
.form-style-b li label {
  display: inline-block;
  display: inline;
}
.form-style-b li input {
  display: inline-block;
  display: inline;
  margin: 0 5px 0 0;
}
.ie7 .form-style-b .form-item {
  width: 40%;
}
/* radio and checkboxes inline */
.form-style-c .form-item {
  margin: 20px 0;
}
.form-style-c label {
  display: block;
  margin: 0 0 3px;
}
.form-style-c ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.form-style-c li {
  margin: 5px 10px 0 0;
  display: inline-block;
  display: inline;
}
.form-style-c li label {
  display: inline-block;
  display: inline;
}
.form-style-c li input {
  display: inline-block;
  display: inline;
  margin: 0 5px 0 0;
}
/* 
=================================================================
   Media Queries
================================================================= 
*/
/* 480
-------------------------------------------------------------- */
/* 600
-------------------------------------------------------------- */
/* 768
-------------------------------------------------------------- */
/* 992
-------------------------------------------------------------- */
/* 1382
-------------------------------------------------------------- */
/* retina displays
-------------------------------------------------------------- */
/* 
=================================================================
   Generate Media Queries
================================================================= 
*/
