/******************************************************************
Site Name: 
Author: 

Stylesheet: IE Stylesheet

So instead of using the respond.js file to add media query support
to IE, we're going to use LESS to create an easily readable css file.
Here, we import all the styles the standard stylesheet gets, only
without the media queries. No need to worry about editing anything!

******************************************************************/
/*
Remember, all the BASE styles are called already since IE can
read those. Below, we need to import only the stuff IE can't 
understand (what's inside the media queries). We also need to
import the mixins file so LESS can understand the variables.
*/
/* import mixins */
/******************************************************************
Site Name: 
Author: 

Stylesheet: Mixins & Constants Stylesheet

This is where you can take advantage of LESS' great features: 
Mixins & Constants. I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques like box shadow and
border-radius.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more. 

******************************************************************/
/*********************
CLEARFIXIN'
*********************/
/* Contain floats: nicolasgallagher.com/micro-clearfix-hack/ */
.clearfix {
  /* for IE */
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
}
/*********************
TOOLS
*********************/
/* http://www.zeldman.com/2012/03/01/replacing-the-9999px-hack-new-image-replacement/ */
.image-replacement {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*********************
TYPOGRAPHY
*********************/
/* 	To embed your own fonts, use this syntax
	and place your fonts inside the 
	library/fonts folder. For more information
	on embedding fonts, go to:
	http://www.fontsquirrel.com/
	Be sure to remove the comment brackets.
*/
/*	@font-face {
    	font-family: 'Font Name';
    	src: url('../fonts/font-name.eot');
    	src: url('../fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('../fonts/font-name.woff') format('woff'),
             url('../fonts/font-name.ttf') format('truetype'),
             url('../fonts/font-name.svg#font-name') format('svg');
    	font-weight: normal;
    	font-style: normal;
	}
*/
/* 
use the best ampersand 
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville, 'Goudy Old Style', Palatino, 'Book Antiqua', serif;
  font-style: italic;
}
/* text alignment */
.text-left {
  text-align: left;
}
.text-center {
  text-align: center;
}
.text-right {
  text-align: right;
}
/* alerts & notices */
.alert {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid;
}
.info {
  border-color: #bfe4f4;
  background: #d5edf8;
}
.error {
  border-color: #f8cdce;
  background: #fbe3e4;
}
.success {
  border-color: #deeaae;
  background: #e6efc2;
}
/*********************
BORDER RADIUS
*********************/
/* 
NOTE: For older browser support (and some mobile), 
don't use the shorthand to define *different* corners. 

USAGE: .rounded(4px); 

*/
/* 
Instead of having a seperate mixin for the different
borders, we're using the mixin from 320 & Up to make
things easier to use.

USAGE: .border-radius(4px,4px,0,0);

*/
/*********************
TRANISTION
*********************/
/* .transition(all,2s); */
/*********************
CSS3 GRADIENTS
Be careful with these since they can 
really slow down your CSS. Don't overdue it.
*********************/
/* .css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* .boxSizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So 
probably best not to use it. I mean, were you going to anyway? */
/*********************
BOX SHADOW
*********************/
/* .boxShadow(0 0 4px #444); */
/*********************
BUTTONS
*********************/
.blue-button,
.blue-button:visited {
  border-color: #1472ad;
  text-shadow: 0 1px 1px #1472ad;
  background-color: #1681c4;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1990db), to(#1681c4));
  background-image: -webkit-linear-gradient(top, #1990db, #1681c4);
  background-image: -moz-linear-gradient(top, #1990db, #1681c4);
  background-image: -o-linear-gradient(top, #1990db, #1681c4);
  background-image: linear-gradient(to bottom, #1990db, #1681c4);
  -webkit-box-shadow: inset 0 0 3px #59b3ec;
  -moz-box-shadow: inset 0 0 3px #59b3ec;
  box-shadow: inset 0 0 3px #59b3ec;
}
.blue-button:hover,
.blue-button:visited:hover,
.blue-button:focus,
.blue-button:visited:focus {
  border-color: #116396;
  background-color: #1472ad;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1784c9), to(#1472ad));
  background-image: -webkit-linear-gradient(top, #1784c9, #1472ad);
  background-image: -moz-linear-gradient(top, #1784c9, #1472ad);
  background-image: -o-linear-gradient(top, #1784c9, #1472ad);
  background-image: linear-gradient(to bottom, #1784c9, #1472ad);
}
.blue-button:active,
.blue-button:visited:active {
  background-color: #1990db;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#1681c4), to(#1990db));
  background-image: -webkit-linear-gradient(top, #1681c4, #1990db);
  background-image: -moz-linear-gradient(top, #1681c4, #1990db);
  background-image: -o-linear-gradient(top, #1681c4, #1990db);
  background-image: linear-gradient(to bottom, #1681c4, #1990db);
}
/* 
you can call the larger styles if you want, but there's really no need 
*/
/******************************************************************
ADDITIONAL IE FIXES
These fixes are now ONLY seen by IE, so you don't have to worry
about using prefixes, although it's best practice. For more info
on using Modernizr classes, check out this link:
http://www.modernizr.com/docs/
******************************************************************/
/*
For example, you can use something like:

.no-textshadow .class { ... }

You can also target specific versions by using the classes applied to
the html element. These can sometimes change, so take a look inside the
header.php file to see what they are:


.lt-ie8 .class { ... }

*/
html[data-useragent*='MSIE 10.0'] .mapp-ib .mapp-body a,
html[data-useragent*='rv:11.0'] .mapp-ib .mapp-body a,
html[data-useragent*='MSIE 9.0'] .mapp-ib .mapp-body a {
  background-color: #f3b800;
}
html[data-useragent*='MSIE 10.0'] .gform_footer input[type='submit'],
html[data-useragent*='rv:11.0'] .gform_footer input[type='submit'],
html[data-useragent*='MSIE 9.0'] .gform_footer input[type='submit'],
html[data-useragent*='MSIE 10.0'] .gform_footer .button,
html[data-useragent*='rv:11.0'] .gform_footer .button,
html[data-useragent*='MSIE 9.0'] .gform_footer .button,
html[data-useragent*='MSIE 10.0'] .gform_footer .button:visited,
html[data-useragent*='rv:11.0'] .gform_footer .button:visited,
html[data-useragent*='MSIE 9.0'] .gform_footer .button:visited {
  background-color: #f3b800 !important;
  border-top: 2px solid #f6cb45 !important;
}
html[data-useragent*='MSIE 10.0'] .gform_footer input[type='submit']:hover,
html[data-useragent*='rv:11.0'] .gform_footer input[type='submit']:hover,
html[data-useragent*='MSIE 9.0'] .gform_footer input[type='submit']:hover,
html[data-useragent*='MSIE 10.0'] .gform_footer .button:hover,
html[data-useragent*='rv:11.0'] .gform_footer .button:hover,
html[data-useragent*='MSIE 9.0'] .gform_footer .button:hover,
html[data-useragent*='MSIE 10.0'] .gform_footer .button:visited:hover,
html[data-useragent*='rv:11.0'] .gform_footer .button:visited:hover,
html[data-useragent*='MSIE 9.0'] .gform_footer .button:visited:hover {
  background-color: #f3b800 !important;
  border-top: 2px solid #f6cb45 !important;
}
html[data-useragent*='MSIE 10.0'] .page-template-events-php #main article section #calendrier #wpfc-calendar-wrapper .fc-header tbody tr .fc-header-left .ui-state-default,
html[data-useragent*='rv:11.0'] .page-template-events-php #main article section #calendrier #wpfc-calendar-wrapper .fc-header tbody tr .fc-header-left .ui-state-default,
html[data-useragent*='MSIE 9.0'] .page-template-events-php #main article section #calendrier #wpfc-calendar-wrapper .fc-header tbody tr .fc-header-left .ui-state-default,
html[data-useragent*='MSIE 10.0'] .page-template-events-php #main article section #calendrier #wpfc-calendar-wrapper .fc-header tbody tr .fc-header-right .ui-state-default,
html[data-useragent*='rv:11.0'] .page-template-events-php #main article section #calendrier #wpfc-calendar-wrapper .fc-header tbody tr .fc-header-right .ui-state-default,
html[data-useragent*='MSIE 9.0'] .page-template-events-php #main article section #calendrier #wpfc-calendar-wrapper .fc-header tbody tr .fc-header-right .ui-state-default {
  background: none #f2b600 !important;
}
html[data-useragent*='MSIE 10.0'] .page-template-events-php #main article section #liste article section h2,
html[data-useragent*='rv:11.0'] .page-template-events-php #main article section #liste article section h2,
html[data-useragent*='MSIE 9.0'] .page-template-events-php #main article section #liste article section h2 {
  margin-top: -25px;
}
html[data-useragent*='MSIE 8.0'] #main {
  background: none #e0eaf0 !important;
}
html[data-useragent*='MSIE 8.0'] #gform_wrapper_3 #gform_3 input.medium,
html[data-useragent*='MSIE 8.0'] #gform_wrapper_3 #gform_3 textarea.medium {
  width: 97.5% !important;
}
html[data-useragent*='MSIE 8.0'] #gform_wrapper_3 #gform_3 .gform_footer input[type='submit'],
html[data-useragent*='MSIE 8.0'] #gform_wrapper_3 #gform_3 .button {
  background-color: #f3b800 !important;
  border-top: 2px solid #f6cb45 !important;
  margin: 9px 0 0 0;
}
html[data-useragent*='MSIE 8.0'] #mappress {
  height: 800px !important;
}
html[data-useragent*='MSIE 8.0'] #mappress .mapp-layout {
  height: 800px !important;
}
html[data-useragent*='MSIE 8.0'] #mappress .mapp-layout #mapp0 {
  height: 800px !important;
}
