/*
Theme Name: IPS
Author: Duncan Mountford
Description: A custom theme for 
Version: 1.00
*/
@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Aleo|Montserrat:300,300i,400,400i,500,500i,600,600i,700,700i');

/* CSS Document */
/* RESET */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;	
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
/* END RESET */

/* 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%; /* Image does not overflow the content area */
    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 p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important; /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
	background-color: #eee;
	clip: auto !important;
	clip-path: none;
	color: #444;
	display: block;
	font-size: 1em;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
	/* Above WP toolbar. */
}

.wp-block-columns {
	max-width: 1650px;
    margin: 0 auto;
	padding: 15px 50px 0px;
}

#single .wp-block-columns h1, #single .wp-block-columns h2, #single .wp-block-columns h3, #single .wp-block-columns h4 {
	padding:0;
}  

#single .wp-block-columns p {
	padding:10px 0;
}

#single .wp-block-columns p.button {
	padding:5px;
	margin:10px 0;
}

#single .wp-block-columns ul {
	padding:15px 50px;
}

#single .wp-block-gallery .blocks-gallery-item {
	margin:0 5px 10px;
}
/* END WORDPRESS CORE */

/* SLIDEOUT */
.slideout-menu {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 500px;
  min-height: 100vh;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  z-index: 0;
  display: none;
}

#mobile-menu-wrap {  
	width: 500px;
	min-width: 500px;
	opacity: 0;
	visibility: hidden;
}

#mobile-menu-wrap.visible {
	opacity: 1;
	visibility: visible;
}

.slideout-menu-left {
  left: 0;
}

.slideout-menu-right {
  right: 0;
}

.slideout-panel {
  position: relative;
  z-index: 1;
  background-color: #FFF; /* A background-color is required */
  min-height: 100vh;
}

.slideout-open,
.slideout-open body,
.slideout-open .slideout-panel {
  overflow: hidden;
}

.slideout-open .slideout-menu {
  display: block;
}

#panel:before {
  content: '';
  display: block;
  background-color: rgba(0,0,0,0);
  transition: background-color 0.5s ease-in-out;
}

#panel.panel-open:before {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  background-color: rgba(0,0,0,.5);
  z-index: 99;
}

#close-mobile {
	height: 45px;
    background:#f9f5ea;
    text-align: right;
    padding:0 25px;
    box-sizing: border-box;
	margin-bottom:25px;
	display: flex;
	justify-content: space-between;
}

#close-mobile a {
	display: inline-block;
	color:#435d1a;
	font-size:26px;
	line-height: 48px;
}

#mobile-menu-back {
	visibility: hidden;
}

#mobile-menu-back.active {
	visibility: visible;
}

#mobileSearch {
	display:block;
	width:100%;
	margin-bottom:30px;
	text-align: center;
}

#mobileSearch .searchForm input[type="text"] {
	width:85%;
}

#mobile-menu {
	padding:0 25px;
	box-sizing: border-box;
	margin-bottom:60px;
}

#mobile-menu li {
	border-bottom:1px solid #dbd9d2;
	padding:25px 0;
}

#mobile-menu li a {
	display: inline-block;
	width:90%;
	font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    text-transform: uppercase;
}

#mobile-menu li ul {
	display:none;
	position: absolute;
    height: 100%;
    width: 100%;
    background: #fff;
    top: 61px;
    left: 0px;
	padding-left: 25px;
	box-sizing: border-box;
}

#mobile-menu li ul.expanded {
	display:block;
	z-index: 20;
}

#mobile-menu li ul.expanded ul.expanded {
	top:0;
}

#mobile-menu .menu-item-has-children:after {
	display:inline-block;
	content: "\f054";
    font-family: "Font Awesome 5 Pro";
    color: #455e2b;
	position: absolute;
	right:30px;
	z-index: 10;
}

#mobile-menu-wrap .button {
	display: block;
	width:200px;
	margin:0 auto 15px;
	text-align: center;
}

#mobileCTA {
	display:none;
	justify-content: center;
	padding-top:50px;
}

#mobile-menu li.button {
	background:none;
	border: none;
	box-shadow: none;
}

.mobileCTAButton, #mobile-menu li.button a {
	font-family: 'Montserrat', sans-serif;
	background: #455e2b;
    padding: 20px;
    font-size: 18px;
    box-shadow: none;
    width: 100%;
    max-width: 250px;
    color: #FFF;
    border: none;
	border-radius: 5px;
    -webkit-box-shadow: 0px 10px 5px 0px rgb(0 0 0 / 34%);
    -moz-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.34);
    box-shadow: 0px 10px 5px 0px rgb(0 0 0 / 34%);
    display: inline-block;
	box-sizing: border-box;
    text-align: center;
	text-decoration: none;
}
/* END SLIDEOUT */

/* GENERAL */
img {
	max-width: 100%;
	height: auto;
}

.button, #single .button {
	font-family: 'Montserrat', sans-serif;
	font-size:16px;
	font-weight: 500;
	color:#fff;
	text-decoration: none;
	background: rgb(39, 106, 31);
	padding:8px 0px;
	border:2px solid rgb(39, 106, 31);
	border-radius: 5px;
	-webkit-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.34);
	-moz-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.34);
	box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.34);
	display: inline-block;
	max-width:270px;
	width:100%;
	box-sizing: border-box;
	text-align: center;
}

.button.white, #single .button.white {
	color:rgb(39, 106, 31);
	background: #fff;
}

.button.squared {
	border-radius: 0;
}

.button.whiteborder {
	border:2px solid #fff;
}

main {
	padding-top:150px;
}

#single h1, #single h2 {
	font-family: "Montserrat", sans-serif;
}

#single h1 {
	font-size: 32px;
	font-weight: 500;
	margin: 10px auto 25px;
	max-width: 1650px;
	padding:0 15px;
	line-height: 40px;
	color:#666;
}

#single h2 {
	font-size: 26px;
	font-weight: 500;
	margin: 25px auto 15px;
	padding:0 50px;
	max-width: 1650px;
	color:rgb(39, 106, 31);
}

#single h3 {
	font-family: "Montserrat", sans-serif;
	color:#000;
	padding:0 50px;
	font-size: 24px;
	font-weight: 500;
	margin:15px auto;
	max-width: 1650px;
}

#single h4 {
	font-family: "Montserrat", sans-serif;
	padding:0 50px;
	font-size: 20px;
	margin:15px auto;
	max-width: 1650px;
}

#single a {
	color:rgb(39, 106, 31);
	font-family: "Montserrat", sans-serif;
	font-weight: 500;
	text-decoration: none;
}

#single .button a {
	color: #fff;
}

#single .button.white a {
	color:#165a87;
}

#single ul, #single ol {
	padding:10px 75px;
	margin:0 auto 0 auto;
	font-family: "Montserrat", sans-serif;
	max-width: 1600px;
}

#single ul {
	list-style: disc;
}

#single ul ul {
	padding:15px 25px;
	list-style: circle;
}

#single ol {
	list-style: lower-roman;
}

#single ol ol {
	padding:10px;
	list-style: lower-alpha;
}

#single ul li, #single ol li {
	margin:0 0 10px;
	line-height: 25px;
}

main p {
	padding:15px 50px;
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	font-weight: 400;
	line-height: 26px;
	max-width: 1650px;
	margin:0 auto;
}

#single .wp-block-table {
	padding:15px 50px;
}

#single table {
	max-width:1650px;
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	font-weight: 400;
	line-height: 26px;
	margin:0 auto;
}

#single table thead {
	background:rgb(39, 106, 31);
	color:#fff;
	text-align: left;
}

#single table thead th {
	border:2px solid #fff;
	padding:10px;
}

#single table td {
	padding:10px;
}

.searchForm input[type="text"] {
    width: 200px;
    height: 31px;
	padding-left:15px;
    position: relative;
    z-index: 1;
	border:2px solid #e8e8e8;
}
.searchForm input[type="submit"] {
    margin-left: -50px;
    height: 20px;
    width: 50px;
    position: relative;
    z-index: 10;
    background-image: url(img/caccn-magnify.png);
    background-color: transparent;
    border: none;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    color: transparent;
	cursor: pointer;
}
/* END GENERAL */

/* HEADER */
#mainHeader {
	position: fixed;
	width:100%;
	height:150px;
	background:#435d1a;
	z-index: 90;
}

#topBar {
	display:flex;
	justify-content: space-between;
	padding:10px 30px;
	box-sizing: border-box;
	background:#f9f5ea;
	align-items: center;
}

#topBar .topSocial ul {
	display:flex;
	align-items: center;
}

#topBar .topSocial li a {
	color:#000;
	font-size:20px;
	margin-right:20px;
}

#topBar .topSocial li:nth-child(2) {
	padding-top:5px;
}

#topBar .topMenu ul {
	display:flex;
	justify-content: center;
}

#topBar .topMenu li a {
	color:#000;
	font-size:13px;
	text-decoration:none;
	margin-left:20px;
	font-family:"Montserrat", sans-serif;
	letter-spacing: 1px;
}

#logoNav {
	display:flex;
	justify-content: space-between;
	padding:12px 30px 0;
	box-sizing: border-box;
	background:#435d1a;
	align-items: center;
}

#logoNav #logo {
	width:25%;
	min-width:315px;
}

#logoNav #mainMenu {
	width:75%;
}

#logoNav #mainMenu ul {
	display:flex;
	justify-content: flex-end;
	align-items: center;
}

#logoNav #mainMenu ul ul {
	display: none;
}

#logoNav #mainMenu li {
	margin-left:25px;
}

#logoNav #mainMenu li a {
	color:#fff;
	font-family:"Montserrat", sans-serif;
	text-decoration: none;
	letter-spacing: 1px;
	font-weight: 400;
	padding-bottom: 5px;
}

#logoNav #mainMenu li.active a {
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#logoNav #mainMenu li.button {
	background:#fff;
	border-radius: 0;
	width:auto;
	max-width:100%;
	padding:5px 11px;
	border:none;	
	box-shadow: none;
	border-radius: 5px;
}

#logoNav #mainMenu li.button a {
	color:#000;
	font-weight:400;
}

#mobileMenuButton {
	display: none;
}

#mobileMenuButton a {
	color:#fff;
	text-decoration: none;
	font-size:28px;
}

#subMenu {
	display: block;
    opacity: 0;
    padding: 10px;
    position: absolute;
    top: 132px;
    left: 0;
    background: #f9f5ea;
    z-index: 99;
    transition: .3s ease;
    -webkit-box-shadow: 0px 13px 10px 0px rgb(20 21 23 / 15%);
    -moz-box-shadow: 0px 13px 10px 0px rgba(20,21,23,.15);
    box-shadow: 0px 13px 10px 0px rgb(20 21 23 / 15%);
    border-radius: 0px 0px 5px 5px;
	margin-left:25px;
}

#subMenu.active {
	opacity: 1;
}

#subMenuItems {
    opacity: 0;
    transition: .3s ease;
}

#subMenuItems.active {
	opacity:1;
}

#logoNav #mainMenu #subMenuItems ul {
	display:block;
}

#logoNav #mainMenu #subMenuItems li {
	padding:10px 0;
	list-style: none;
	margin:0 15px;
}

#subMenuItems li a {
	font-family: "Montserrat", sans-serif;
	color:#000 !important;
	font-weight: 400;
	font-size:14px;
	line-height: 20px;
	text-decoration: none;
}
/* END HEADER */

/* BLOCKS */
.ctaBreak {
	width: 100%;
	max-width:1200px;	
	margin:-100px auto 0;
	padding:50px 25px;
	box-sizing: border-box;
	background: #FFF;
	-webkit-box-shadow: 0px 10px 5px 0px rgb(0 0 0 / 34%);
    -moz-box-shadow: 0px 10px 5px 0px rgba(0,0,0,0.34);
    box-shadow: 0px 10px 5px 0px rgb(0 0 0 / 34%);
	position: relative;
	z-index:10;
}

.ctaBreak h2 {
	text-align: center;
	margin-bottom:50px;
	font-size:28px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.ctaIcons ul {
	display:flex;
	flex-wrap: wrap;
	width:88%;
	justify-content: space-between;
	margin: 0 auto;
}

.ctaIcons li {
	width:30%;
}

.ctaIcons li a {
	display: flex;
	align-items: center;
	color:#000;
	text-decoration: none;
}

.ctaIcons li a img {
	width:100px;
	height:auto;
}

.ctaIcons li a p {
	padding:0;
	margin:0 0 0 15px;
	font-weight: 500;
}

.postList {
	display:block;
	width:100%;
	max-width:1750px;
	margin:50px auto;
	padding:50px 25px;
	box-sizing: border-box;
	text-align: center;
}

.postList h2 {
	margin-bottom:15px;
	font-size:28px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.postList a {
	margin-bottom:50px;
	display:inline-block;
	color:#a54c20;
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	font-weight:300;
}

.postList div {
	display:flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.postList article {
	width:30%;
	text-align: left;
}

.postList article img {
	padding-bottom:30px;
}

.postList article h2, .postList article p, .postList article a {
	padding:0 15px;
	margin:15px auto;
	box-sizing: border-box;
}

.postList article h2 {
	font-size:22px;
}

.featuredPubs {
	width:100%;
	padding:0px 25px;
	box-sizing: border-box;
}

.pubsInner {
	width:100%;
	max-width:1850px;
	margin:0 auto;
	padding:50px 25px;
	box-sizing: border-box;
	background: #f9f5ea;
	text-align: center;
}

.pubsInner h2 {
	text-align: center;
	margin-bottom:15px;
	font-size:22px;
	font-family: "Montserrat", sans-serif;
	font-weight: 400;
}

.pubsInner a {
	margin-bottom:50px;
	display:inline-block;
	color:#a54c20;
	font-family: "Montserrat", sans-serif;
	text-decoration: none;
	font-weight:300;
}

.pubsContent {
	width:100%;
	max-width:1750px;
	display: block;
	margin:0 auto;
}

.pubsContent .wp-block-columns {
	align-items: center;
}

.pubsContent .wp-block-columns .wp-block-column:first-of-type {
	width:40%;
	flex-basis: auto;
}

.pubsContent .wp-block-columns .wp-block-column:last-of-type {
	width:50%;
	flex-basis: auto;
}

.pubsList {
	text-align: left;
}

.pubsList article {
	margin-bottom:50px;
	padding-bottom:50px;
}

.pubsList article:first-of-type {
	border-bottom:1px solid #d7d3ca;
}

.pubsList article:last-of-type {
	margin-bottom:0px;
	padding-bottom:0px;
}

.pubsList article h2 {
	text-align: left;
	line-height:30px;
}

.pubsList article p {
	padding:10px 0;
}

.pubsList article a {
	margin-bottom:5px;
}

.linkList li {
	border-bottom:1px solid #d7d3ca;
	padding-bottom:30px;
	margin-bottom:30px;
	box-sizing: border-box;
}

.linkList li:last-of-type {
	margin-bottom:0;
}

.linkList li a {
	color:#000;
	text-decoration: none;
	font-family: "Montserrat", sans-serif;
	font-size:18px;
	display:inline-block;
	width:97%;
	position: relative;
	
}

.linkList li a:after {
	display:inline-block;
	content:"\f054";
	font-family: "Font Awesome 5 Pro";
	color:#455e2b;
	position: absolute;
	right:0px;
	font-weight: 500;
	top:50%;
	transform: translateY(-50%);
}

.wp-block-button a.has-white-color, #single .wp-block-button a.has-white-color {
	color:#fff;
}

.wp-block-file {
	max-width:1650px;
	padding:0 50px;
	margin:0 auto 15px;
}

.wp-block-kadence-accordion.alignnone {
	margin:5px auto 20px;
}
/* END BLOCKS */

/* ARCHIVE */
#archiveList .post {
	max-width:1650px;
	margin: 0 auto 75px;
}

#archiveList .post a {
	padding:0 50px;
}
/* END ARCHIVE */

/* X-CD FOR WP */
.x-cd-login-wrapper- {
	padding-top:15px;
}

.x-cd-login-slim-form input {
	background: none;
	border:none;
	border-bottom:1px solid;
	margin-bottom:15px;
}

.x-cd-login-slim-form input.x-cd-slim-login-submit {
	background:#455e2b;
	color:#fff;
	border-radius:5px;
	border:none;
	cursor: pointer;
}


.featherlight .featherlight-content {
	background:#f9f5ea !important;
	border-radius: 5px;
}
/* END X-CD FOR WP */

/* FOOTER */
footer {
	background:#455e2b;
	margin-top:75px;
}

#footerCTA {
	display:block;
	max-width:1500px;
	padding:50px 25px 35px;
	margin:0 auto;
	box-sizing: border-box;
	text-align: center;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#footerCTA .button {
	background:#f9f5ea;
	padding:20px;
	font-size:18px;
	box-shadow: none;
	width:100%;
	max-width: 250px;
	color:#000;
	border:none;
}

#footerNav {
	display: block;
	max-width:1300px;
	margin:0 auto;
	padding:15px 25px 35px;
	box-sizing: border-box;
}

#footerNav ul {
	display: flex;
	justify-content:center;
	width:100%;
}

#footerNav ul li {
	padding:0 10px;
}

#footerNav ul li.button {
	padding:0 10px;
	width:auto;
	max-width:none;
	border-radius: 0;
	border:none;
	background:none;
	box-shadow: none;
}

#footerNav ul li a {
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	color:#fff;
	text-decoration: none;
}

#footerNav ul li ul {
	display:none;
}

#footerSocial {
	display:block;
	max-width:1500px;
	margin:0  auto;
	padding:35px 25px 60px;
	box-sizing: border-box;
	border-bottom: 1px solid rgba(255, 255, 255, .5);
}

#footerSocial ul {
	display:flex;
	justify-content: center;
}

#footerSocial ul li {
	padding:0px 15px;
}

#footerSocial ul li a {
	color:#fff;
	font-size:28px;
}

#legalInfo {
	max-width:1200px;
	padding:35px 25px;
	margin:0 auto;
	color:#fff;
	text-align: center;
	font-family: "Montserrat", sans-serif;
	font-size:14px;
	line-height: 18px;
}

#legalInfo ul {
	display:flex;
	justify-content: center;
	padding:10px 0;
}

#legalInfo li {
	margin:0px 10px;
}

#legalInfo li a {
	color:#fff;
	text-decoration: none;
}
/* END FOOTER */

@media screen and (max-width:1400px) {
	#logoNav #mainMenu li a {
		font-size:14px;
	}

	#logoNav #mainMenu li, #subMenu {
		margin-left:10px;
	}

	#subMenu {
		top:120px;
	}
}

@media screen and (max-width:1200px) {
	#logoNav #mainMenu li a {
		font-size:13px;
	}

	#logoNav #mainMenu li, #subMenu {
		margin-left:7px;
	}

	#subMenu {
		top:118px;
	}
}

@media screen and (max-width:1110px) {
	#logoNav #mainMenu {
		display:none;
	}

	#logoNav #logo {
		width:50%;
		min-width:400px;
	}

	#logoNav #mobileMenuButton {
		display: block;
	}

	.pubsContent .wp-block-columns {
		flex-wrap:wrap  !important;
	}

	.pubsContent .wp-block-columns .wp-block-column {
		width:100% !important;
	}

	.pubsList {
		margin-bottom:50px;
	}
}

@media screen and (max-width:1024px) {
	.ctaBreak {
		margin:0 auto;
		box-shadow: none;
	}

	.ctaIcons ul {
		display:block;
	}

	.ctaIcons li {
		display:block;
		width:300px;
		margin:10px auto;
	}

	#footerNav ul li a {
		font-size:12px;
	}
}

@media screen and (max-width:900px) { 
	.postList article {
		width:100%;
		margin-bottom:50px;
	}

	.postList article img {
		width:100%;
		display:block;
		margin:0 auto;
	}

	#footerNav ul li a {
		font-size:11px;
	}
}

@media screen and (max-width:750px) {
	#footerNav {
		display:none;
	}
}


@media screen and (max-width:650px) {
	#topBar .topMenu li a {
		font-size:11px;
		margin-left:10px
	}
}

@media screen and (max-width:600px) {
	#logoNav #logo {
		width:75%;
		min-width:200px;
	}
}

@media screen and (max-width:560px) {
	#topBar {
		justify-content: center;
	}

	#topBar .topMenu {
		display:none;
	}
}

@media screen and (max-width:500px) {
	#mobile-menu-wrap {
		min-width: 100%;
		max-width:100%;
		width:100%;
	}
}

