/*
	Theme Name: The_Light
	Theme URI: http://www.thelight.cl
	Description: The_Light WordPress Theme
	Version: 1.0
	Author: @judith TheLight Medias & grafics
	Author URI: http://www.thelight.cl
	Tags: Blank, HTML5, CSS3, Materialize

*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

:root{
	--vert-fonce: #414b3b;
	--vert-clair: #8ca87c;
	--beige-or: #ab8742;
	--beige-fond: #fff9f3;
	--violet: #910bf9;
    --perinat: #f1c0a8;
    --bleu: #5369af;
}
/* html element 62.5% font-size for REM use */
html {
    background: var(--beige-fond);
    color: var(--vert-fonce);
    
}
body {
	font-family:'Montserrat', sans-serif;
	font-size: 17px;
	font-weight: 400;
	color: var(--vert-fonce);
}
/* clear */
.clear:before,
.clear:after {
    content:' ';
    display:table;
}

.clear:after {
    clear:both;
}
.clear {
    *zoom:1;
}
img {
	max-width:100%;
	vertical-align:bottom;
}
a:focus {
	outline:0;
}
a:hover,
a:active {
	outline:0;
}
input:focus {
	outline:0;
	/* border:1px solid #04A4CC; */
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 1280px;
	width: 95%;
	height: 100vh;
	margin: 0 auto;
	position:relative;
    display: grid;
    /* grid-template-columns: repeat(3, 1fr);*/
    gap: 15px;
	grid-template-areas:
    "head head"
    "main  main"
    "foot  foot";
  	grid-template-rows: auto 1fr 80px;
  	grid-template-columns: 1fr;
}
/* header */

/* logo */
.logo {
    grid-column: 1 / 2;
}

/* nav */
.header-droite {
    grid-column: 2 / 7;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}
.header-droite .adresse{
	font-size: 15px;
}
nav{
    height: 40px;
    line-height: 40px;
}
.nav{
    box-shadow: none;
    background-color: transparent;
}  
.nav ul{
    display: flex;
    justify-content: space-around;
	max-width: 60%;
    align-items: center;
    margin: 0 auto;
}
.nav ul li.menu-item-has-children{
    position: relative;
}   
.nav ul li.menu-item-has-children:hover ul.sub-menu{
    display: block;
}   
.nav ul li{
    border: solid 1px var(--beige-fond);
}
.nav ul li a{
	font-weight: 400;
    color: var(--beige-or);
    text-transform: uppercase;
	border: solid 1px var(--beige-fond);
	background-color: var(--beige-fond);
}
.nav ul.sub-menu{
	display: none;
	position: absolute;
	z-index: 1;
    max-width: 160%;
    width: 160%;
    
}
.nav ul.sub-menu li{
    width: 100%;
}
.nav ul.sub-menu li a{
	display: block;
    float: left;
    font-weight: 600;
    font-size: 14px;
    text-align: left;
    line-height: 25px;
    width: 100%;
    color: var(--vert-clair);
}

.nav ul li a:hover{
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    border: solid 1px var(--beige-or);
    background-color: var(--beige-fond);
}
.nav ul li.current-menu-item a{
	color: var(--vert-clair);
}

/* footer */


.flex{
	display: flex;
    justify-content: space-between;
}

.int-beige{
  margin: 0 25px 25px 25px;
  background-color: var(--beige-fond);
  padding: 40px 25px;
}
.int-vert{
    margin: 0 25px 25px 25px;
    padding: 40px 25px;
}
.col-beige{
	color: var(--beige-fond);
}
section.vert, div.vert{
    background-color: var(--vert-clair);
}

h2.vert{
	color: var(--vert-clair);
}
section.beige, div.beige{
    background-color: var(--beige-fond);
}
section.vertf{
    background-color: var(--vert-fonce);
}
section.or{
    background-color: var(--beige-or); 
}section.violet, div.violet{
	background-color: var(--violet);
}
h1.violet{
	color: var(--violet);
}
section.un{
    grid-column: 1 / 3;
}
section.deux{
    grid-column: 3 / 4; 
}
section.trois{
    grid-column: 1/2;
}
section.quatre{
    grid-column: 2 / 4;
}

h1{
    text-transform: uppercase;
    font-size: 1.9rem;
    font-weight: 500;
    padding-left: 35px;
}
h2{
    color: var(--beige-fond);
    text-transform: uppercase;
    font-size: 1.5rem;
    font-weight: 500;
    padding-left: 20px;
}
.mas{
	display: flex;
	align-items: center;
	font-weight: 700;
  background-color: var(--beige-or);
  display: flex;
  position: absolute;
  right: 30px;
  bottom: 30px;
  border-radius: 100%;
  width: 65px;
  height: 65px;
  text-align: center;
  line-height: 35px;
  color: var(--beige-fond);
}
.mas .material-icons{
	font-size: 55px;
	margin: 0 auto;
}
.button{
	padding: 25px;
	background-color: var(--beige-or);
	color: var(--beige-fond);
	font-weight: 800;
	border-radius: 30px 0 30px 0;
	-webkit-border-radius: 30px 0 30px 0;
	-moz-border-radius: 30px 0 30px 0;
	-ms-border-radius: 30px 0 30px 0;
	-o-border-radius: 30px 0 30px 0;
}
.scrollable{
	max-height: 50vh;
	overflow-y: scroll;
	scrollbar-color: var(--perinat) var(--beige-fond);
  scrollbar-width: thin;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
#home-slide{
	position:relative;
}
#evenements > div.flex > h2{
	width: 80%;
}
#evenements .day{
	font-size: 38px;
	color: var(--beige-or);
	line-height: 30px;
	font-weight: 400;
	text-align: center;
}
#evenements .mois{
	font-size: 20px;
	font-weight: 300;
	color: var(--beige-or);
	text-transform: uppercase;
	text-align: center;
}
#evenements .an{
	font-size: 18px;
	color: var(--beige-or);
	line-height: 10px;
	text-align: center;
}
#evenements h3{
	color: var(--beige-or);
	font-family: 'Montserrat';
	font-weight: 600;
	text-transform: uppercase;
	font-size: 18px;
	margin: 0!important;
}
#evenements .resume{ 
    margin-bottom: 25px;
}
#evenements .resume a{ 
    margin-bottom: 25px;
    color: var(--vert-fonce);
}
#evenements :first-of-type{
    border-radius: 0 38px;
    -moz-border-radius: 0 38px;
    -ms-border-radius: 0 38px;
    -o-border-radius: 0 38px;
}
#evenements :last-of-type{
    border-radius: 0 38px;
    -moz-border-radius: 0 38px;
    -ms-border-radius: 0 38px;
    -o-border-radius: 0 38px;
}
#evenements .titre-text{
    width: 80%;
}
body.bienveillance{
	background-image: url("http://amsar.fr/wp-content/uploads/2024/11/FndPlan-de-travail-2.png");
	background-size: cover;
	background-position: top center;
}
#bienveillance div.titre, #ecrans div.titre{
	grid-area: 1 /1 / 2 / 3;
    align-content: center;
    justify-content: center;
}
#bienveillance div.present, #ecrans div.present{
	grid-area: 1/3/2/6;
}
#bienveillance article:first-of-type, #ecrans article:first-of-type {
	grid-area: 2/ 1 / 4 / 4;
	background-color: var(--vert-clair);
	border-radius: 60px 0;
  }
#bienveillance article:first-of-type .int-beige, #ecrans article:first-of-type .int-beige{
	border-radius: 38px 0;
	-moz-border-radius: 38px 0;
	-ms-border-radius: 38px 0;
	-o-border-radius: 38px 0;
}
#bienveillance article:nth-of-type(even){
	background-color: var(--vert-clair);
	border-radius: 60px 0;
    color: var(--violet);
    grid-area: 2/4/4/6;
  }

#ecrans article:nth-of-type(even){
	background-color: var(--vert-clair);
	border-radius: 60px 0;
    color: var(--bleu);
    grid-area: 2/4/4/6;
  }

#bienveillance article:nth-of-type(even) .int-beige, #ecrans article:nth-of-type(even) .int-beige{
	border-radius: 38px 0;
	-moz-border-radius: 38px 0;
	-ms-border-radius: 38px 0;
	-o-border-radius: 38px 0;
}
#bienveillance .article, #ecrans .article{
	position: relative;
}
#perinatalite .present{
    grid-area: 1/3/3/6;
}
#perinatalite .present .int-beige, #bienveillance .present .int-beige, #ecran .present .int-beige, section.form > div{
    margin-top: 25px;
}
#perinatalite .titre{
    grid-area: 1/1/3/3;
}
#perinatalite .equipe{
    background-color: var(--vert-fonce);
  grid-area: 3/1/5/6;
}
#perinatalite .equipe p strong{
    color: var(--perinat);
    font-weight: 800;
  
}
#perinatalite h2{color: var(--perinat);}
body.contact main, body.single main{
	display: flex;
}
body.single article{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

body.single article p{ 
	width: 100%;
}

section.form select{
	display:block;
}
section.form .wpcf7-form-control-wrap input[type=text]:focus + label {
	color: var(--vert-fonce) !important;
}
/* label underline focus color */
  .wpcf7-form-control-wrap input[type=text]:focus, .wpcf7-form-control-wrap input[type=email]:focus {
	border-bottom: 1px solid var(--vert-fonce) !important;
	box-shadow: 0 1px 0 0 var(--vert-fonce) !important;
  }
  .wpcf7-form-control-wrap textarea.wpcf7-textarea{

  }
  input:not([type]), input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="time"], input[type="date"], input[type="datetime"], input[type="datetime-local"], input[type="tel"], input[type="number"], input[type="search"] {
	background-color: transparent;
  border: none;
    border-bottom-width: medium;
    border-bottom-style: none;
    border-bottom-color: currentcolor;
  border-bottom: 1px solid var(--vert-fonce) !important;
  border-radius: 0;
  outline: none;
  height: 3rem;
  width: 100%;
  font-size: 1rem;
  margin: 0 0 20px 0;
  padding: 0;
  box-shadow: none;
  box-sizing: content-box;
  transition: all 0.3s;
  }
  input[type="submit"]{
	background-color: var(--vert-fonce);
	font-weight: 700;
	color: var(--beige-fond);
	padding: 15px;
	border: none;
	border-radius: 0 10px 0 10px;
	-moz-border-radius: 0 10px 0 10px;
	-ms-border-radius: 0 10px 0 10px;
	-o-border-radius: 0 10px 0 10px;
}



body.single main img:hover {

	-webkit-filter: blur(2px);
	/*Safari6.0-9.0*/filter: blur(2px);
}
/*------------------------------------*\
    IMAGES
\*------------------------------------*/



@keyframes tonext {
	75% {
	  left: 0;
	}
	95% {
	  left: 100%;
	}
	98% {
	  left: 100%;
	}
	99% {
	  left: 0;
	}
  }
  
  @keyframes tostart {
	75% {
	  left: 0;
	}
	95% {
	  left: -300%;
	}
	98% {
	  left: -300%;
	}
	99% {
	  left: 0;
	}
  }
  
  @keyframes snap {
	96% {
	  scroll-snap-align: center;
	}
	97% {
	  scroll-snap-align: none;
	}
	99% {
	  scroll-snap-align: none;
	}
	100% {
	  scroll-snap-align: center;
	}
  }
    
  * {
	box-sizing: border-box;
	scrollbar-color: transparent transparent; /* thumb and track color */
	scrollbar-width: 0px;
  }
  
  *::-webkit-scrollbar {
	width: 0;
  }
  
  *::-webkit-scrollbar-track {
	background: transparent;
  }
  
  *::-webkit-scrollbar-thumb {
	background: transparent;
	border: none;
  }
  * {
	-ms-overflow-style: none;
  }
  
  ol, li {
	list-style: none;
	margin: 0;
	padding: 0;
  }
  
  .carousel {
	position: relative;
	padding-top: 55%;
	filter: drop-shadow(0 0 10px #0003);
	perspective: 100px;
  }
  
  .carousel__viewport {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	overflow-x: scroll;
	counter-reset: item;
	scroll-behavior: smooth;
	scroll-snap-type: x mandatory;
  }
  
  .carousel__slide {
	position: relative;
	flex: 0 0 100%;
	width: 100%;
	/* background-color: #f99; */
	/* counter-increment: item; */
  }
  
  .carousel__slide:nth-child(even) {
	/* background-color: var(--vert-clair); */
  }
  
  .carousel__slide:before {
	/* content: counter(item); */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate3d(-50%,-40%,70px);
	color: var(--vert-fonce);
	font-size: 2em;
  }
  .carrousel_slide{
	border-radius: 60px;
	-webkit-border-radius: 60px;
	-moz-border-radius: 60px;
	-ms-border-radius: 60px;
	-o-border-radius: 60px;
  }
  
  .carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
  display: flex;
  flex-wrap: wrap;
  align-items: start;
}
  .slide-droit{
	width: 60%;
  }
  .slide-gauche{
	width: 40%;
	padding: 25px;
  }
  
  @media (hover: hover) {
	.carousel__snapper {
	  animation-name: tonext, snap;
	  animation-timing-function: ease;
	  animation-duration: 4s;
	  animation-iteration-count: infinite;
	}
  
	.carousel__slide:last-child .carousel__snapper {
	  animation-name: tostart, snap;
	}
  }
  
  @media (prefers-reduced-motion: reduce) {
	.carousel__snapper {
	  animation-name: none;
	}
  }
  
  .carousel:hover .carousel__snapper,
  .carousel:focus-within .carousel__snapper {
	animation-name: none;
  }
  
  .carousel__navigation {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	text-align: center;
  }
  
  .carousel__navigation-list,
  .carousel__navigation-item {
	display: inline-block;
  }
  
  .carousel__navigation-button {
	display: inline-block;
	width: 1.5rem;
	height: 1.5rem;
	background-color: var(--beige-fond);
	background-clip: content-box;
	border: 0.25rem solid transparent;
	border-radius: 50%;
	font-size: 0;
	transition: transform 0.1s;
  }
  
  .carousel::before,
  .carousel::after,
  .carousel__prev,
  .carousel__next {
	position: absolute;
	top: 0;
	margin-top: 37.5%;
	width: 4rem;
	height: 4rem;
	transform: translateY(-50%);
	border-radius: 50%;
	font-size: 0;
	outline: 0;
  }
  
  .carousel::before,
  .carousel__prev {
	left: -1rem;
  }
  
  .carousel::after,
  .carousel__next {
	right: -1rem;
  }
  
  .carousel::before,
  .carousel::after {
	content: '';
	z-index: 1;
	background-color: var(--vert-fonce);
	background-size: 1.5rem 1.5rem;
	background-repeat: no-repeat;
	background-position: center center;
	color: var(--beige-fond);
	font-size: 2.5rem;
	line-height: 4rem;
	text-align: center;
	pointer-events: none;
  }
  
  .carousel::before {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='0,50 80,100 80,0' fill='%23fff'/%3E%3C/svg%3E");
  }
  
  .carousel::after {
	background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolygon points='100,50 20,100 20,0' fill='%23fff'/%3E%3C/svg%3E");
  }
  
  

/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

/* @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;
} */




@font-face {
	font-family:'Montserrat';
	font-display: swap;
    font-stretch: PERCENTAGE_RANGE_LOW_TO_HIGH; /* Note that font-stretch is a % of normal width */
	font-style: NORMAL_OR_ITALIC; /* See note below */
	font-weight: NUMERIC_RANGE_LOW_TO_HIGH;
	src:url('../fonts/Montserrat-VariableFont_wght.ttf') format('truetype');
}


/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:320px) {
	.header {
		grid-area: head;
		display: block;
		text-transform: uppercase;
		text-align: center;
	}
	#bienveillance, #perinatalite, #ecrans{
		grid-column: 1 / 4;
		grid-row: 2;
		display: flex;
 		align-items: center;
 		flex-wrap: wrap;
		margin: 10px;
	}
	#home-slide{
		width: 100%;
	}
	main{
		grid-column: 1 / 4;
		grid-row: 2;
		display: flex;
		flex-wrap: wrap;
	}
	main section{
		margin: 10px;
	}
	.gauche{
		border-radius: 20px 0 20px 0;
		-moz-border-radius: 20px 0 20px 0;
		-ms-border-radius: 20px 0 20px 0;
		-o-border-radius: 20px 0 20px 0;
}
		.int-beige.gauche{
			border-radius: 18px 0;
			-moz-border-radius: 18px 0;
			-ms-border-radius: 18px 0;
			-o-border-radius: 18px 0;
}
		.droite{
			border-radius: 0 20px 0 20px ;
			-moz-border-radius: 0 20px 0 260px ;
			-ms-border-radius: 0 20px 0 260px ;
			-o-border-radius: 0 20px 0 260px ;
}
		.int-beige.droite{
		 border-radius: 0 18px;
		 -moz-border-radius: 0 18px;
		 -ms-border-radius: 0 18px;
		 -o-border-radius: 0 18px;
}
.news article{
	margin: 0;
	padding: 15px;

}
.news article h2{
	padding: 0;
	margin: 5px;
}
	.footer{
		grid-column: 1 / 4;
		grid-row: 3;
		display: flex;
		flex-wrap: wrap;
		height: fit-content;
		font-size: 12px;
		justify-content: space-around;
		align-items: center;
		text-transform: uppercase;
		text-align: center;
		background-color: var(--vert-clair);
		border-radius: 20px 0 20px 0;
		-moz-border-radius: 20px 0 20px 0;
		-ms-border-radius: 20px 0 20px 0;
		-o-border-radius: 20px 0 20px 0;
}
	section.form{
		margin: 25px auto;
	}
	#bienveillance article{
		margin: 10px;
	}
	body.single section img, body.single article h1{
		width: 100%;
	}
	body.single section img {
		border-radius: 20px 0 20px 0 ;
		-moz-border-radius: 20px 0 20px 0 ;
		-ms-border-radius: 20px 0 20px 0 ;
		-o-border-radius: 20px 0 20px 0 ;
}
h1.or{
	color: var(--beige-or);
	border: 2px solid  var(--vert-clair);
	border-radius: 0 20px 0 20px;
	-moz-border-radius: 0 20px 0 20px;
	-ms-border-radius: 0 20px 0 20px;
	-o-border-radius: 0 20px 0 20px;
	padding: 20px 5px;
}
.int-beige.droite{
	border-radius: 0 18px;
	-moz-border-radius: 0 18px;
	-ms-border-radius: 0 18px;
	-o-border-radius: 0 18px;
}
.carousel__snapper{
	flex-wrap: nowrap;
}
.slide-droit{
	width: 100%;
}
.slide-gauche{
	width: 100%;
}
.sp-button{
	border: 2px solid var(--vert-fonce);
}
.sp-selected-button{
	background-color: var(--vert-fonce);
}
}
@media only screen and (min-width:480px) {
	
}
@media only screen and (min-width:768px) {
	.header {
		display: grid;
		grid-template-columns: repeat(6, 1fr);
		gap: 10px;
	}
	main{
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 25px;
	}
	.gauche{
		border-radius: 60px 0 60px 0;
			-moz-border-radius: 60px 0 60px 0;
			-ms-border-radius: 60px 0 60px 0;
			-o-border-radius: 60px 0 60px 0;
		}
		.int-beige.gauche{
			border-radius: 38px 0;
			-moz-border-radius: 38px 0;
			-ms-border-radius: 38px 0;
			-o-border-radius: 38px 0;
		}
		.droite{
			border-radius: 0 60px 0 60px ;
			-moz-border-radius: 0 60px 0 60px ;
			-ms-border-radius: 0 60px 0 60px ;
			-o-border-radius: 0 60px 0 60px ;
		}
		.int-beige.droite{
		 border-radius: 0 38px;
		 -moz-border-radius: 0 38px;
		 -ms-border-radius: 0 38px;
		 -o-border-radius: 0 38px;
		}
	.footer {
		font-size: 15px;
		flex-wrap: nowrap;
	}
	#bienveillance, #perinatalite, #ecrans{
		display: grid;
		grid-template-columns: repeat(5, 1fr);
		grid-template-rows: auto;
		gap: 15px;
		align-items: center;
	}
	body.single section img{
		width: 40%;
	}
	body.single article h1{
		width: 55%;
		text-align: center;
	}
	section.form{
		width: 64%;
	}
	body.single section img {
	
		border-radius: 60px 0 60px 0 ;
		-moz-border-radius: 60px 0 60px 0 ;
		-ms-border-radius: 60px 0 60px 0 ;
		-o-border-radius: 60px 0 60px 0 ;
	}
	h1.or{
		border-radius: 0 60px 0 60px;
		-moz-border-radius: 0 60px 0 60px;
		-ms-border-radius: 0 60px 0 60px;
		-o-border-radius: 0 60px 0 60px;
		padding: 60px 25px;
	}
	.carousel__snapper{
		flex-wrap: wrap;
	}
	.slide-droit{
		width: 60%;
	}
	.slide-gauche{
		width: 40%;
	}
}
@media only screen and (min-width:1024px) {

}
@media only screen and (min-width:1140px) {

}
@media only screen and (min-width:1280px) {

}
@media only screen and (-webkit-min-device-pixel-ratio:1.5),
	   only screen and (min-resolution:144dpi) {

}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-webkit-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}
::-moz-selection {
	background:#04A4CC;
	color:#FFF;
	text-shadow:none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin:5px 20px 20px 0;
}
.aligncenter,
div.aligncenter {
	display:block;
	margin:5px auto 5px auto;
}
.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.alignright {
	float:right;
	margin:5px 0 20px 20px;
}
a img.alignnone {
	margin:5px 20px 20px 0;
}
a img.alignleft {
	float:left;
	margin:5px 20px 20px 0;
}
a img.aligncenter {
	display:block;
	margin-left:auto;
	margin-right:auto;
}
.wp-caption {
	background:#FFF;
	border:1px solid #F0F0F0;
	max-width:96%;
	padding:5px 3px 10px;
	text-align:center;
}
.wp-caption.alignnone {
	margin:5px 20px 20px 0;
}
.wp-caption.alignleft {
	margin:5px 20px 20px 0;
}
.wp-caption.alignright {
	margin:5px 0 20px 20px;
}
.wp-caption img {
	border:0 none;
	height:auto;
	margin:0;
	max-width:98.5%;
	padding:0;
	width:auto;
}
.wp-caption .wp-caption-text,
.gallery-caption {
	font-size:11px;
	line-height:17px;
	margin:0;
	padding:0 4px 5px;
}
/* .sticky {

}
.bypostauthor {

} */

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background:transparent !important;
		color:#000 !important;
		box-shadow:none !important;
		text-shadow:none !important;
	}
	a,
	a:visited {
		text-decoration:underline;
	}
	a[href]:after {
		content:" (" attr(href) ")";
	}
	abbr[title]:after {
		content:" (" attr(title) ")";
	}
	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content:"";
	}
	pre,blockquote {
		border:1px solid #999;
		page-break-inside:avoid;
	}
	thead {
		display:table-header-group;
	}
	tr,img {
		page-break-inside:avoid;
	}
	img {
		max-width:100% !important;
	}
	@page {
		margin:0.5cm;
	}
	p,
	h2,
	h3 {
		orphans:3;
		widows:3;
	}
	h2,
	h3 {
		page-break-after:avoid;
	}
}
