/*  phpBB 3.0 Style Sheet
    --------------------------------------------------------------
   phpBB style name:    Artodia ColorizeIt
   Based on style:      prosilver (this is the default phpBB3 style)
   Prosilver author:    Tom Beddard ( http://www.subBlue.com/ )
   ColorizeIt author:	Vjacheslav Trushkin ( http://www.artodia.com/ )

   NOTE: This page was generated by phpBB, the free open-source bulletin board package.
         The phpBB Group is not responsible for the content of this page and forum. For more information
         about phpBB please visit http://www.phpbb.com
    --------------------------------------------------------------
*/

/*
    Uncomment line below to set fixed width to style
*/
/* body { max-width: 900px; } */

/*
    Change "none" to "block" (without quotes) to show website title and description in header
*/
#site-description p, #site-description h1 { display: none; }


/*
    Include css files
*/
/*
* www.KNACSS.com V2.8b (2013-09) @author: Raphael Goetter, Alsacreations
* Licence CC-BY http://creativecommons.org/licenses/by/3.0/fr/ 
*/

/* ----------------------------- */
/* ==reset                       */
/* ----------------------------- */

/* base font-size corresponds to 10px and is adapted to rem unit */
html {
	font-size: 62.5%;
}
body {
	background-color: #fff;
	color: #000;
	font-family: helvetica, arial, sans-serif;
	font-size: 1.4em; /* equiv 14px */
	line-height: 1.5; /* adapt to your design */
}

/* font-sizing for content */
/* preserves vertical-rythm, thanks to http://soqr.fr/vertical-rhythm/ */
p,
ul,
ol,
dl,
blockquote,
pre,
td,
th,
label,
textarea,
caption,
details,
figure {
	margin: .75em 0 0;
	line-height: 1.5;
}
h1, .h1-like {
	margin: 0.6563em 0 0 0;
	font-size: 2.2857em; /* equiv 32px */
	line-height: 1.3126;
	font-weight: 400;
}
h2, .h2-like {
	margin: 0.75em 0 0 0;
	font-size: 2em; /* equiv 28px */
	line-height: 1.5;
	font-weight: 400;
}
h3, .h3-like {
	margin: 0.875em 0 0 0;
	font-size: 1.7143em; /* equiv 24px */
	line-height: 1.75;
	font-weight: 400;
}
h4, .h4-like {
	margin: 1.05em 0 0 0;
	font-size: 1.4286em; /* equiv 20px */
	line-height: 1.05;
	font-weight: 400;
}
h5, .h5-like {
	margin: 1.1667em 0 0 0;
	font-size: 1.2857em; /* equiv 18px */
	line-height: 1.1667;
	font-weight: 400;
}
h6, .h6-like {
	margin: 1.3125em 0 0 0;
	font-size: 1.1429em; /* equiv 16px */
	line-height: 1.3125;
	font-weight: 400;
}

/* alternate font-sizing */
.smaller {
	font-size: .7143em; /* equiv 10px */
}
.small {
	font-size: .8571em; /* equiv 12px */
}
.big {
	font-size: 1.1429em; /* equiv 16px */
}
.bigger {
	font-size: 1.2857em; /* equiv 18px */
}
.biggest {
	font-size: 1.4286em; /* equiv 20px */
}

/* soft reset */
html,
body,
textarea,
figure,
label {
	margin: 0;
	padding: 0;
}
ul,
ol {
	padding-left: 2em;
}
ul.unstyled {
	list-style: none;
}
code, 
pre,
samp,
kbd {
	white-space: pre-wrap;
	font-family: consolas, 'DejaVu Sans Mono', courier, monospace;
	line-height: 1em;
}
code, kbd, mark {
	border-radius: 2px;
}
em {
	font-style: italic;
}
strong {
	font-weight: bold;
}
i,
b {
	font-style: normal;
	font-weight: normal;
}
kbd {
	padding: 0 2px;
	border: 1px solid #999;
}
code {
	padding: 2px 4px;
	background: rgba(0,0,0,.04);
	color: #b11; 
}
mark {
	padding:2px 4px;
	background: #ff0;
}
sup,
sub {
	vertical-align: 0;
	position: relative;
}
sup {
	bottom: 1ex;
}
sub {
	top: .5ex;
}

table { margin-bottom: 1.5em; }

/* avoid top margins on first content element */
p:first-child,
ul:first-child,
ol:first-child,
dl:first-child,
blockquote:first-child,
pre:first-child,
h1:first-child,
h2:first-child,
h3:first-child,
h4:first-child,
h5:first-child,
h6:first-child {
	margin-top: 0;
}

/* avoid margins on nested elements */
li p,
li ul,
li ol {
	margin-top: 0;
	margin-bottom: 0;
}

/* max values */
img, table, td, blockquote, code, pre, textarea, input, video {
	max-width: 100%;
}
/* pictures */
img {
	height: auto;
	vertical-align: middle;
}
/* Gmap3 bug fix on images */
.gm-style img,
.gmnoscreen img,
.gmnoprint img {max-width: none !important;}

a img { border: 0; }

/* scripts */
body > script {display: none !important;}

/* skip-links */
.skip-links {
	position: absolute;
}
.skip-links a {
	position: absolute;
	left: -7000px;
	padding: 0.5em;
	background: #000;
	color:#fff;
	text-decoration: none;
}
.skip-links a:focus {
	position: static;
}

/* ----------------------------- */
/* ==layout and modules          */
/* ----------------------------- */

/* switching box model for all elements */
* {
	-webkit-box-sizing: border-box;
	   -moz-box-sizing: border-box;
	        box-sizing: border-box;
}

/* float layout */
/* module, gains superpower "BFC" Block Formating Context */
.mod { 
	overflow: hidden;
}

/* blocks that needs to be placed under floats */
.clear,
.line,
.row {
	clear: both;
}

/* blocks that must contain floats */
.clearfix:after,
.line:after,
.mod:after {
	content: "";
	display: table;
	clear: both;
}

/* table layout */
.row {
	display: table;
	table-layout: fixed;
	width: 100%;
}
.row > *,
.col {
	display: table-cell;
	vertical-align: top;
}

/* inline-block */
.inbl {
	display: inline-block;
	vertical-align: top;
}

/* alignments (blocks and inline) */
/* ------------------------------ */

/* left elements */
.left {
	float: left;
}
img.left {
	margin-right: 1em;
}

/* right elements */
.right {
	float: right;
}
img.right {
	margin-left: 1em;
}

img.left, img.right {
	margin-bottom: 5px;
}

.center    { margin-left: auto; margin-right: auto; }
.txtleft   { text-align: left; }
.txtright  { text-align: right; }
.txtcenter { text-align: center; }

/* blocks widths (percentages and pixels) */
.w10    { width: 10%; }
.w20    { width: 20%; }
.w25    { width: 25%; }
.w30    { width: 30%; }
.w33    { width: 33.3333%; }
.w40    { width: 40%; }
.w50    { width: 50%; }
.w60    { width: 60%; }
.w66    { width: 66.6666%; }
.w70    { width: 70%; }
.w75    { width: 75%; }
.w80    { width: 80%; }
.w90    { width: 90%; }
.w100   { width: 100%; }

.w50p   { width: 50px; }
.w100p  { width: 100px; }
.w150p  { width: 150px; }
.w200p  { width: 200px; }
.w300p  { width: 300px; }
.w400p  { width: 400px; }
.w500p  { width: 500px; }
.w600p  { width: 600px; }
.w700p  { width: 700px; }
.w800p  { width: 800px; }
.w960p  { width: 960px; }
.mw960p { max-width: 960px; }
.w1140p  { width: 1140px; }
.mw1140p { max-width: 1140px; }

/* spacing helpers
p,m = padding,margin
a,t,r,b,l = all,top,right,bottom,left
s,m,l,n,0 = small(10px),medium(20px),large(30px), zero or none(0)
source https://github.com/stubbornella/oocss/blob/master/core/spacing/space.css
*/
.m-reset, .ma0 { margin: 0; }
.p-reset, .pa0 { padding: 0; }
.ma1, .mas { margin: 10px; }
.ma2, .mam { margin: 20px; }
.ma3, .mal { margin: 30px; }
.pa1, .pas { padding: 10px; }
.pa2, .pam { padding: 20px; }
.pa3, .pal { padding: 30px; }

.mt0, .mtn { margin-top: 0; }
.mt1, .mts { margin-top: 10px; }
.mt2, .mtm { margin-top: 20px; }
.mt3, .mtl { margin-top: 30px; }
.mr0, .mrn { margin-right: 0; }
.mr1, .mrs { margin-right: 10px; }
.mr2, .mrm { margin-right: 20px; }
.mr3, .mrl { margin-right: 30px; }
.mb0, .mbn { margin-bottom: 0; }
.mb1, .mbs { margin-bottom: 10px; }
.mb2, .mbm { margin-bottom: 20px; }
.mb3, .mbl { margin-bottom: 30px; }
.ml0, .mln { margin-left: 0; }
.ml1, .mls { margin-left: 10px; }
.ml2, .mlm { margin-left: 20px; }
.ml3, .mll { margin-left: 30px; }

.pt0, .ptn { padding-top: 0; }
.pt1, .pts { padding-top: 10px; }
.pt2, .ptm { padding-top: 20px; }
.pt3, .ptl { padding-top: 30px; }
.pr0, .prn { padding-right: 0; }
.pr1, .prs { padding-right: 10px; }
.pr2, .prm { padding-right: 20px; }
.pr3, .prl { padding-right: 30px; }
.pb0, .pbn { padding-bottom: 0; }
.pb1, .pbs { padding-bottom: 10px; }
.pb2, .pbm { padding-bottom: 20px; }
.pb3, .pbl { padding-bottom: 30px; }
.pl0, .pln { padding-left: 0; }
.pl1, .pls { padding-left: 10px; }
.pl2, .plm { padding-left: 20px; }
.pl3, .pll { padding-left: 30px; }

/* hiding content */
.visually-hidden {
	position: absolute;
	left: -7000px;
	overflow: hidden;
}
[dir=rtl] .visually-hidden {
	left: auto;
	right: -7000px;
}

.desktop-hidden { display: none; } /* hidden on desktop */

/* ----------------------------- */
/* ==iefix                       */
/* ----------------------------- */

/* hasLayout for IE6/IE7 */
.ie67 .clearfix,
.ie67 .line,
.ie67 .mod,
.ie67 .row,
.ie67 .col {
	zoom: 1;
}

/* inline-block and table-cell for IE6/IE7 */
/* warning: .col needs a width on IE6/IE7 */
.ie67 .btn,
.ie67 .col,
.ie67 .inbl {
	display: inline;
	zoom: 1;
}
.ie8 img {
	width: auto; /* @bugfix for IE8 */
}

/* Active box-sizing for IE6/IE7 */
/* @source https://github.com/Schepp/box-sizing-polyfill */
/*
.ie67 * {
	behavior: url(/js/boxsizing.htc);
}
*/

/* ----------------------------- */
/* ==print                       */
/* ----------------------------- */

/* quick print reset */
@media print {
	p,
	blockquote {
		orphans: 2;
		widows: 2;
	}
	blockquote,
	ul,
	ol {
		page-break-inside: avoid;
	}
	h1,
	h2,
	h3,
	caption {
		page-break-after: avoid;
	}
}

/* debug helper */
.knacss-debug {
	background: pink;
	outline: 3px solid maroon;
}

/* orientation iOS font-size fix */
@media (orientation: landscape) and (max-device-width: 768px) {
	html,
	body {
		-webkit-text-size-adjust: 100%;
	}
}

/* ----------------------------- */
/* ==own stylesheet              */
/* ----------------------------- */

/* Here should go your own CSS styles */
/* You can link them with an @import or, better for webperf, just paste them here */

/* @import url(my-styles.css); */


/* ----------------------------- */
/* ==grids                       */
/* ----------------------------- */

/* grids inspired from SUIT https://github.com/suitcss/suit */

.grid {overflow: hidden;}
.grid > * {
	display: block;
	padding: 0;
	margin: 0 -10px; /* half gutter value */
	text-align: left;
	letter-spacing: -0.31em;
	word-spacing: -0.43em;
	text-rendering: optimizespeed;
}
.grid > * > * {
	width: 100%;
	display: inline-block;
	padding: 0 10px; /* half gutter value */
	margin-left: 0;
	vertical-align: top;
	text-align: left;
	letter-spacing: normal;
	word-spacing: normal;
	text-rendering: auto;
	*display: inline; *zoom: 1; /* IE67 hack */
}

.grid2 > * {width: 50%;}
.grid3 > * {width: 33.333%;}
.grid4 > * {width: 25%;}
.grid5 > * {width: 20%;}
.grid6 > * {width: 16.667%;}
.grid8 > * {width: 12.5%;}
.grid10 > * {width: 10%;}
.grid12 > * {width: 8.333%;}

/* unequal grids (1-2, 2-1, 1-3 and 3-1) for 2 blocks */
.grid2-1 > *:first-child,
.grid1-2 > * + * { width: 66.666%; }
.grid1-2 > *:first-child,
.grid2-1 > * + * { width: 33.333%; }
.grid1-3 > *:first-child,
.grid3-1 > * + * { width: 25%; }
.grid3-1 > *:first-child,
.grid1-3 > * + * { width: 75%; }

/* Responsiv-o-matic */

@media (max-width: 1024px) {
	.grid5 > *,
	.grid6 > *,
	.grid8 > *,
	.grid10 > *,
	.grid12 > * {width: 33.333%}
}
@media (max-width: 768px) {
	.grid3 > *,
	.grid4 > *,
	.grid5 > *,
	.grid6 > *,
	.grid8 > *,
	.grid10 > *,
	.grid12 > * {width: 50%}
}
@media (max-width: 640px) {
	.grid > * > * {width: 100%}
}
/* ----------------------------- */
/* ==tables                      */
/* ----------------------------- */

table,
.table {
	max-width : 100%;
	table-layout: fixed;
	border-collapse: collapse;
	vertical-align: top;
}
table {
	width: 100%;
}
.table {
	display: table;
}
table#recaptcha_table,
table.table-auto {
	table-layout:auto;
}
caption {
	padding: 10px;
	color: #555;
	font-style: italic;	
}
table { 
	border: 1px solid #ccc;
}
tr > * + * {
	border-left: 1px solid #ccc;
}
th,
td {
	padding: .3em .8em;
	text-align: left;
	border-bottom: 1px solid #ccc;
}
td {
	color: #333;
}

/* alternate tables */
.alternate { border: 0; }
.alternate tbody { 
	border: 1px solid #ccc; 
}
.alternate thead tr > * + * {
	border-left: 0;
}
.alternate tbody tr > * + * {
	border-left: 1px solid #ccc;
}

/* alternate-vert tables */
.alternate-vert { 
	border: 0;
	border-right: 1px solid #ccc;
}
.alternate-vert tr > :first-child {
	border-bottom: 0;
}
.alternate-vert tr > * + * {
	border-top: 1px solid #ccc;
}

/* striped tables */
.striped tbody tr:nth-child(odd) {
	background: #eee;
	background: rgba(0, 0, 0, .05);
}

/* striped-vert tables */
.striped-vert tr > :first-child {
	background: #eee;
	background: rgba(0, 0, 0, .05);
}
/* ----------------------------- */
/* ==forms                       */
/* ----------------------------- */

/* thanks to HTML5boilerplate,
* github.com/nathansmith/formalize 
* and www.sitepen.com
*/


/* buttons */
.btn {
	display: inline-block;
}

/* forms items */
form,
fieldset {
	border: none;
}
input,
button,
select,
label,
.btn {
	vertical-align: middle;
	font-family: inherit;
	font-size: inherit;
}
label { 
	display: inline-block;
	vertical-align: middle;
	cursor: pointer;
}
legend {
	border: 0;
	white-space: normal;
}
textarea {
	overflow: auto; /* Removes default vertical scrollbar on empty textarea in IE6/7/8/9 */
	min-height: 5em;
	vertical-align: top;
	font-family: inherit;
	font-size: inherit;
	resize: vertical;
}
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	cursor: pointer;
	-webkit-appearance: button; /* clickable input types in iOS */
}
input[type="checkbox"],
input[type="radio"] {
	padding: 0; /* Corrects excess space around these inputs in IE8/9 */
}
input[type="search"] {
	-webkit-appearance: textfield;
}

/* if select styling bugs on WebKit */
/* select { -webkit-appearance: none; } */

/* 'x' appears on right of search input when text is entered. This removes it */
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
	display: none;
}
::-webkit-input-placeholder {
	color: #777;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
	color: #777;
}

/* Removes inner padding and border in FF3+ */
button::-moz-focus-inner,
input[type='button']::-moz-focus-inner,
input[type='reset']::-moz-focus-inner,
input[type='submit']::-moz-focus-inner {
	border: 0;
	padding: 0;
}

/* ----------------------------- */
/* ==icons and bullets	         */
/* ----------------------------- */

.icon {display: inline-block;}

.icon:before,
.icon.after:after {
	content: "";
	display: inline-block;
	vertical-align: middle;
	position: relative; top: -.1em;
	margin: 0 0.3em 0 0;
	font: 1.4em/1 sans-serif;
	color: #000;
	text-shadow: 1px 1px 0 rgba(0,0,0,.1);
	speak: none;
}

@media (min-device-width: 768px) {
	.icon:before,
	.icon.after:after {
	font: 1em/0.6 sans-serif;
	-webkit-transform: rotateZ(0.05deg);
	}
}

.icon.after:after {
	margin: 0 0 0 8px;
}
.icon.after:before {
	content: "" !important
}
.icon-rate:before,
.icon-rate.after:after {
	content: "\2605";
}
.icon-unrate:before,
.icon-unrate.after:after{
	content: "\2606";
}
.icon-check:before,
.icon-check.after:after{
	content: "\2713";
}
.icon-uncheck:before,
.icon-uncheck.after:after{
	content: "\2717";
}
.icon-cloud:before,
.icon-cloud.after:after {
	content: "\2601";
}
.icon-dl:before,
.icon-dl.after:after {
	content: "\21E3";
	font-weight: bold;
}
.icon-cross:before,
.icon-cross.after:after {
	content: "\2716";
	font-weight: bold;
}
.icon-arrow1:before, 
.icon-arrow1.after:after {
	content: "\2192";
	position: relative; 
		top: -0.15em;
}
.icon-arrow2:before,
.icon-arrow2.after:after {
	content: "\279E";
}
.icon-arrow3:before,
.icon-arrow3.after:after {
	content: "\279A";
}
.icon-bracket1:before,
.icon-bracket1.after:after {
	content: "\2039";
	font-weight: bold;
	font-size: 1.6em;
	position: relative; 
		top: -0.15em;
}
.icon-bracket2:before,
.icon-bracket2.after:after {
	content: "\203A";
	font-weight: bold;
	font-size: 1.6em;
	position: relative; 
		top: -0.15em;
}
.icon-up:before,
.icon-up.after:after {
	content: "\25B2";
}
.icon-down:before,
.icon-down.after:after {
	content: "\25BC";
}
.icon-bull:before,
.icon-bull.after:after {
	content: "\2022";
	font-size: 1.2em;
	top: -0.05em;
}
.icon-bull2:before,
.icon-bull2.after:after {
	content: "\25E6";
	top: -0.05em;
}
.icon-bull3:before,
.icon-bull3.after:after{
	content: "\2023";
	font-size: 1.6em;
	top: -0.05em;
}
.icon-nav:before,
.icon-nav.after:after {
	content: "\2261";
	font-weight: bold;
}
.icon-losange:before,
.icon-losange.after:after {
	content: "\25C6";
}
.icon-asteri:before,
.icon-asteri.after:after {
	content: "\2731";
	font-weight: bold;
}
.icon-mail:before,
.icon-mail.after:after {
	content: "\2709";
	font-size: 1.6em;
	top: -.05em;
}


/* ----------------------------- */
/* ==flexbox classes */
/* ----------------------------- */

/* flexbox layout context on container */
.flex {
	display: -webkit-box;
	display: -moz-box;
	display: -ms-flexbox;
	display: -webkit-flex;
	display: flex;
}
/* horizontal alignment */
.flex-h {
	    -webkit-box-orient: horizontal;
	       -moz-box-orient: horizontal;
	-webkit-flex-direction: row;
	    -ms-flex-direction: row;
	        flex-direction: row;
}
/* vertical alignment */
.flex-v {
	    -webkit-box-orient: vertical;
	       -moz-box-orient: vertical;
	-webkit-flex-direction: column;
	    -ms-flex-direction: column;
	        flex-direction: column;
}
/* for fluid items */
.flex-fluid {
	-moz-box-flex: 1;
	 -webkit-flex: 1;
	    -moz-flex: 1;
	     -ms-flex: 1;
	         flex: 1;
}
/* for items that must appear first */
.flex-start {
	-webkit-box-ordinal-group: -1;
	   -moz-box-ordinal-group: 0;
	           -ms-flex-order: -1;
	            -webkit-order: -1;
	               -moz-order: -1;
	                    order: -1;
}
/* for items that must appear middle */
.flex-mid {
	-webkit-box-ordinal-group: 1;
	   -moz-box-ordinal-group: 1;
	           -ms-flex-order: 1;
	            -webkit-order: 1;
	               -moz-order: 1;
	                    order: 1;
}
/* for items that must appear at the end */
.flex-end {
	-webkit-box-ordinal-group: 42;
	   -moz-box-ordinal-group: 42;
	           -ms-flex-order: 42;
	            -webkit-order: 42;
			       -moz-order: 42;
	                    order: 42;
}

/* ----------------------------- */
/* ==viewport fixing for RWD     */
/* ----------------------------- */
@-webkit-viewport {
	width: device-width;
	zoom: 1.0;
}
@-moz-viewport {
	width: device-width;
	zoom: 1.0;
}
@-ms-viewport {
	width: device-width;
	zoom: 1.0;
}
@-o-viewport {
	width: device-width;
	zoom: 1.0;
}
@viewport {
	width: device-width;
	zoom: 1.0;
}

/* ----------------------------- */
/* ==desktop and retina medias   */
/* ----------------------------- */

@media (min-width: 641px) {
/* here go rules for big resources and big screens like: background-images, font-faces, etc. */
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi), (min-resolution: 2dppx) {
/* Style adjustments for retina devices */
}

/* ---------------------------------- */
/* ==Responsive large / small / tiny  */
/* ---------------------------------- */

@media (min-width: 1280px) {

	/* layouts for large (l) screens */
	.large-hidden,
	.tablet-hidden { display: none !important; }
	.large-visible { display: block !important; }
	.large-no-float {float: none; }
	.large-inbl {
		display: inline-block;
		float: none;
		vertical-align: top;
	}
	.large-row {
		display: table;
		table-layout: fixed;
		width: 100% !important;
	}
	.large-col {
		display: table-cell;
		vertical-align: top;
	}

	/* widths for large (l) screens */
	.large-w25 { width: 25% !important; }
	.large-w33 { width: 33.3333% !important; }
	.large-w50 { width: 50% !important; }
	.large-w66 { width: 66.6666% !important; }
	.large-w75 { width: 75% !important; }
	.large-w100 {
		display: block !important;
		float: none !important;
		clear: none !important;
		width: auto !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		border: 0;		
	}

	/* margins for large (l) screens */
	.large-ma0 { margin: 0 !important; }
}

@media (max-width: 768px) {

	/* quick tablet reset */
	.w600p,
	.w700p,
	.w800p,
	.w960p,
	.mw960p,
	.small-wauto { 
		width: auto;
		float: none;
		} 

	/* you shall not pass */
	div, textarea, table, td, th, code, pre, samp {
		word-wrap: break-word;
		-webkit-hyphens: auto;
		   -moz-hyphens: auto;
		    -ms-hyphens: auto;
		     -o-hyphens: auto;
		        hyphens: auto;
	}

	/* layouts for small (s) screens */
	.small-hidden,
	.tablet-hidden { display: none !important; }
	.small-visible { display: block !important; }
	.small-no-float {float: none; }
	.small-inbl {
		display: inline-block;
		float: none;
		vertical-align: top;
	}
	.small-row {
		display: table !important;
		table-layout: fixed !important;
		width: 100% !important;
	}
	.small-col {
		display: table-cell !important;
		vertical-align: top !important;
	}

	/* widths for small (s) screens */
	.small-w25 { width: 25% !important; }
	.small-w33 { width: 33.3333% !important; }
	.small-w50 { width: 50% !important; }
	.small-w66 { width: 66.6666% !important; }
	.small-w75 { width: 75% !important; }
	.small-w100 {
		display: block !important;
		float: none !important;
		clear: none !important;
		width: auto !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		border: 0;		
	}
	/* margins for small (s) screens */
	.small-ma0 { margin: 0 !important; }
}

@media (max-width: 640px) {

	/* quick smartphone reset */
	.mod,
	.col,
	fieldset {
		display: block !important;
		float: none !important;
		clear: none !important;
		width: auto !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		border: 0;
	}
	.w300p,
	.w400p,
	.w500p {
		width: auto;
		float: none;
	}
	.row { 
		display: block !important;
		width: 100% !important;
	}

	/* layouts for tiny (t) screens */
	.tiny-hidden,
	.phone-hidden { display: none !important; }
	.tiny-visible { display: block !important; }
	.tiny-no-float {float: none;}
	.tiny-inbl {
		display: inline-block;
		float: none;
		vertical-align: top;
	}
	.tiny-row {
		display: table !important;
		table-layout: fixed !important;
		width: 100% !important;
	}
	.tiny-col {
		display: table-cell !important;
		vertical-align: top !important;
	}
	th,
	td {
		display: block !important;
		width: auto !important;
		text-align: left !important;
	}
	thead { display: none; }

	/* widths for tiny (t) screens */
	.tiny-w25 { width: 25% !important; }
	.tiny-w33 { width: 33.3333% !important; }
	.tiny-w50 { width: 50% !important; }
	.tiny-w66 { width: 66.6666% !important; }
	.tiny-w75 { width: 75% !important; }
	.tiny-w100 { 
		display: block !important;
		float: none !important;
		clear: none !important;
		width: auto !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
		border: 0;
	}
	/* margins for tiny (t) screens */
	.tiny-ma0 { margin: 0 !important; }
}

/*
    Main stuff
*/
* { margin: 0; padding: 0; }
html {
    width: 100%;
    /*height: 100%;*/
}
body {
    margin: 0 auto;
    padding: 0 8px;
    position: relative;
    min-height: 100%;
    font-family: Verdana,Helvetica,Arial,sans-serif;
    line-height: 1.2em;
    font-size: 15px;
    color: #444;
}
body.simple {
    width: auto;
    margin: 0;
    padding: 8px;
}
html, body.simple, body.rounded #page-wrapper, body.rounded > footer {
    /*background: #f1f1f1 url("./styles/Ludopathes4/theme/images/bg.png");*/
}

a, a:visited {
    color: #694a3d;
    text-decoration: none;
    transition: color 0.25s ease;
    -webkit-transition: color 0.25s ease;
    -moz-transition: color 0.25s ease;
    -o-transition: color 0.25s ease;
}
a:hover { color: #a88f77; }
a:active {
    color: #b91b36;
    transform: translate(0, 1px);
    -moz-transform: translate(0, 1px);
    -webkit-transform: translate(0, 1px);
    -o-transform: translate(0, 1px);
    -ms-transform: translate(0, 1px);
}
.buttons a:active, .profile-icons a:active {
    transform: none;
    -moz-transform: none;
    -webkit-transform: none;
    -o-transform: none;
    -ms-transform: none;
}

img { border-width: 0; }

/*
    HTML5 "support" for Opera and old IE
*/
header, footer, section, figure, legend, nav {
    display: block;
    margin: 0;
    padding: 0;
}

/*
    Rounded blocks, transitions
*/
nav.nav-links, div.rules, div.forabg, div.forumbg, div.post, .panel, .cp-mini {
    /*border: 2px solid #ddd;*/
    /*background: rgba(255, 255, 255, 0.3) url("./styles/Ludopathes4/theme/images/roundedbg.png") 0 0 repeat-x;*/
    /*border-radius: 8px;
    -moz-border-radius: 8px;
	background-color: #f9f2e7;*/
}
.old-ie nav.nav-links, .old-ie div.rules, .old-ie div.forabg, .old-ie div.forumbg, .old-ie div.post, .old-ie .panel, .old-ie .cp-mini {
    background-color: #fafafa;
}
nav.nav-links:hover {
    border-color: #cccfbc;
}

.corners-top, .corners-bottom { display: none; }

div.rules, div.forabg, div.forumbg, div.post, .panel, .cp-mini, .mobile-style-switch a {
    transition: opacity 2s ease;
    -webkit-transition: opacity 2s ease;
    -moz-transition: opacity 2s ease;
    -o-transition: opacity 2s ease;
}
body.transform nav.nav-links, .mobile-style-switch a {
    transition-property: border-color, background-color, opacity;
    -webkit-transition-property: border-color, background-color, opacity;
    -moz-transition-property: border-color, background-color, opacity;
    -o-transition-property: border-color, background-color, opacity;
    transition-duration: 0.5s, 0.5s, 2s;
    -webkit-transition-duration: 0.5s, 0.5s, 2s;
    -moz-transition-duration: 0.5s, 0.5s, 2s;
    -o-transition-duration: 0.5s, 0.5s, 2s;
}
body.transform nav.nav-links, body.transform img, body.transform .topic-actions, body.transform .profile-icons { opacity: 1; }


div.post.bg2, div.postbg2:hover {
background-color: #F5F7F8;
}

/*
    Arrow links
*/
a.up		{ background: url("./styles/Ludopathes4/theme/images/arrow_up.gif") no-repeat left center; }
a.down		{ background: url("./styles/Ludopathes4/theme/images/arrow_down.gif") no-repeat right center; }
a.left		{ background: url("./styles/Ludopathes4/theme/images/arrow_left.gif") no-repeat 3px 60%; }
a.right		{ background: url("./styles/Ludopathes4/theme/images/arrow_right.gif")  no-repeat 95% 60%; }

a.up, a.up:link, a.up:active, a.up:visited {
	padding-left: 10px;
	text-decoration: none;
	border-bottom-width: 0;
}

a.up:hover {
	background-position: left top;
	background-color: transparent;
}

a.down, a.down:link, a.down:active, a.down:visited {
	padding-right: 10px;
}

a.down:hover {
	background-position: right bottom;
	text-decoration: none;
}

a.left, a.left:active, a.left:visited {
	padding-left: 12px;
}

a.left:hover {
	text-decoration: none;
	background-position: 0 60%;
}

a.right, a.right:active, a.right:visited {
	padding-right: 12px;
}

a.right:hover {
	text-decoration: none;
	background-position: 100% 60%;
}

.back2top {
	clear: both;
	height: 11px;
	text-align: right;
}

a.top {
	background: url("./styles/Ludopathes4/imageset/icon_back_top.gif") no-repeat top left;
	text-decoration: none;
	width: 11px;
	height: 11px;
	display: block;
	float: right;
	overflow: hidden;
	letter-spacing: 1000px;
	text-indent: 11px;
}

a.top2 {
	background: url("./styles/Ludopathes4/imageset/icon_back_top.gif") no-repeat 0 center;
	text-decoration: none;
	padding-left: 14px;
	line-height: 1em;
	margin: 4px 0;
	display: inline-block;
}

a.up, a.down, a.left, a.right, a.top, a.top2 {
    transition-property: color, background-position;
    -webkit-transition-property: color, background-position;
    -moz-transition-property: color, background-position;
    -o-transition-property: color, background-position;
    transition-duration: 0.25s;
    -webkit-transition-duration: 0.25s;
    -moz-transition-duration: 0.25s;
    -o-transition-duration: 0.25s;
    transition-timing-function: ease;
    -webkit-transition-timing-function: ease;
    -moz-transition-timing-function: ease;
    -o-transition-timing-function: ease;
}





/*
    Misc stuff
*/
.clear { clear: both; }

.rightside, .right-box {
    text-align: right;
}

.left-box {
    float: left;
    text-align: left;
    width: auto;
}

p.rightside, li.rightside, ul.rightside, ul.linklist li.rightside, .right-box {
    float: right;
    margin-left: 5px;
    margin-right: 0;
}

ul.leftside {
	float: left;
	margin-left: 0;
	margin-right: 5px;
	text-align: left;
}

hr {
    background-color: none;
    border: solid 1px transparent;
    border-bottom-color: #ccc;
    border-top-color: #fff;
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

hr.dashed {
	border-top-style: dashed;
	border-bottom-style: dashed;
}

.clearfix, #tabs, #minitabs, fieldset dl, ul.topiclist dl, dl.polls {
    min-height: 1px;
    overflow: hidden;
}
span.corners-bottom {
    display: block;
    clear: both;
}

dl.details {
	font-size: 12px;
}

dl.details dt {
	float: left;
	clear: left;
	width: 30%;
	text-align: right;
	color: #a2b347;
	display: block;
}

dl.details dd {
	margin-left: 0;
	padding-left: 5px;
	margin-bottom: 5px;
	color: #444;
	float: left;
	width: 65%;
}

/*
    Main blocks without rounded container
*/
#page-body > h2, #page-body > form > h2, #page-body > h3, #page-body > form > h3, div#message h2, #confirm h2, #agreement h2,.stats h3 {
    font-size: 20px;
    font-weight: normal;
    /*text-shadow: #ddd 2px 3px 1px;*/
    margin: 20px 2px 10px;
}
#page-body > h2, #page-body > form > h2, #page-body > h3, #page-body > form > h3, div#message h2, #confirm h2, #agreement h2,.stats h3,
#page-body h2.title a, #page-body h2.title a:visited { color: #b91b36; }
#page-body h2.title a:hover { color: #a88f77; }

/*
    Forms
*/
fieldset {
    margin: 0;
    padding: 0;
    border-width: 0;
}
fieldset.display-options {
    margin: 5px 0;
    text-align: center;
}

/*
    Errors
*/
.error {
	color: #b91b36;
	font-weight: bold;
	font-size: 12px;
}

#oldie, #old-browser {
    margin: 0 -8px;
    padding: 6px;
    font-size: 14px;
    font-family: Arial;
    line-height: 1.2em;
    text-align: center;
    background-color: #ac210f;
    color: #fff;
}
#old-browser a, #old-browser a:visited { color: #fff; }
/*
    Header and footer
*/
body > header, #header {
    position: relative;
    margin: 8px 0 10px;
    padding: 0;
    background: #a2b347 url("./styles/Ludopathes4/theme/images/header.png") 0 0 repeat-x;
    background-size: 128px 100%;
    min-height: 62px;
    overflow: hidden;
    border: solid 0px #bbc67d;
    border-radius: 8px;
    -moz-border-radius: 8px;

	display: none;
}

body.rounded > header, body.rounded #header {
    margin-top: 8px;
    margin-bottom: 0;
    border-bottom-right-radius: 0;
    -moz-border-radius-bottomright: 0;
    border-bottom-left-radius: 0;
    -moz-border-radius-bottomleft: 0;
}

body > header .inner:after, #header .inner:after, #site-description:after {
	content: '';
	display: block;
	clear: both;
}

body > header .inner, #header .inner {
	background: url("./styles/Ludopathes4/theme/images/pattern.png") 0 0 repeat;
}

#site-description {
    vertical-align: center;
    float: left;
    position: relative;
    left: 50%;
}
#site-description > div {
	margin-left: -50%;
}
#site-description #logo, #site-description .site-description-data {
	display: block;
	float: left;
	text-align: left;
    padding: 0;
    text-decoration: none;
    border-width: 0;
}
#site-description #logo img {
	display: block;
}
#site-description p, #site-description h1 {
	text-align: left;
    padding-left: 8px;
    white-space: nowrap;
    font-weight: normal;
    line-height: 1.4em;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
    text-shadow: rgba(0, 0, 0, 0.2) 1px 2px 1px;
}

#site-description h1 {
	padding-top: 5px;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
}
#site-description p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}
#site-description .skiplink { display: none; }

body > header nav, .old-ie header nav {
    display: block;
    position: relative;
    bottom: -1px;
    float: left;
    clear: both;
    left: 50%;
    font-size: 12px;
    line-height: 1em;
    color: #ced2b7;
    white-space: nowrap;
}
body > header nav div {
	margin-left: -50%;
}
body > header nav a, body > header nav a:visited, body > header nav span {
    display: inline-block;
    padding-bottom: 8px;
    color: #eeefe6;
    text-decoration: none;
}
body > header nav a:hover {
    color: #fff;
    background: url("./styles/Ludopathes4/theme/images/menu_border.gif") bottom left repeat-x;
}
body > header nav strong { font-weight: normal; }


#search-box {
    position: absolute;
    bottom: auto;
    top: 8px;
    right: 8px;
    background: rgba(172, 186, 93,  0.3) url("./styles/Ludopathes4/theme/images/search.png") center left no-repeat;
    border: solid 1px #98a550;
    -moz-border-radius: 8px;
    border-radius: 8px;
    padding-left: 17px;
}
#search-box.focused {
    background-color: rgba(172, 186, 93,  0.5);
}
#search-box form {
    display: inline;
    border-width: 0;
    margin: 0;
    padding: 0;
}
#search-box input[type="text"] {
    margin: 0;
    padding: 4px 3px;
    border-width: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: transparent;
    height: 16px;
    width: 140px;
    line-height: 1em;
    font-size: 11px;
    color: #eeefe5;
    outline-style: none;
    -webkit-appearance: none;
}
#search-box input[type="text"]:hover, #search-box input[type="text"]:focus {
    color: #fff;
}
.browser-ie #search-box {
    padding-top: 2px;
}
.browser-ie #search-box input[type="text"] {
    height: 14px;
}

/*
    Footer
*/
body > footer {
    /*position: absolute;
    bottom: 0;
    left: 0;
    right: 0;*/
    text-align: center;
    vertical-align: bottom;
    line-height: 1.3em;
    margin: 0;
    padding: 8px;
    padding-bottom: 6px;
    font-size: 11px;
    color: #666;
}

body.simple .copyright {
    text-align: center;
    color: #666;
    font-size: 11px;
}

.copyright .copy-left {
    float: left;
    text-align: left;
    padding-left: 4px;
}
.copyright .copy-right {
    float: right;
    text-align: right;
    padding-right: 4px;
}

/*
    Wrapper
*/
#page-body { padding-bottom: 0px; }
body.simple #page-body { padding-bottom: 0; }
#page-body > p { margin: 6px 4px; }
#page-body > p.rightside { margin: 0; }

body.rounded #page-wrapper {
    border: solid 1px #bbc67d;
    border-width: 0 2px;
    padding: 10px;
}
body.rounded #page-header, body.rounded #page-body, body.rounded #page-header .nav-links { margin: 0; }
body.rounded #page-body { padding-bottom: 0; }
body.rounded > footer {
    position: relative;
    margin-bottom: 8px;
    padding: 10px;
    border: solid 2px #bbc67d;
    border-top-width: 0;
    border-radius: 8px;
    -moz-border-radius: 8px;
    border-top-right-radius: 0;
    -moz-border-radius-topright: 0;
    border-top-left-radius: 0;
    -moz-border-radius-topleft: 0;
}

/*
    Navigation
*/
nav.nav-links {
    margin: 14px 0 6px;
    top: 4px;
    padding: 6px 8px;
    color: #999;
    text-align: left;
}
nav.nav-links .rightside { float: right; }
nav.nav-links .time { color: #666; }

nav.nav-extra {
    text-align: right;
    /*font-size: 12px;*/
    margin: 8px 4px 4px;
    color: #999;
}

footer nav.nav-links { position: relative; }
footer nav.nav-links .rightside {
    position: absolute;
    top: 6px;
    right: 10px;
}

/*
    Rules
*/
div.rules {
    margin: 6px 0;
    padding: 6px;
    background: rgba(197, 76, 97,  0.15);
    border-color: #c54c61;
}
div.rules > .inner > strong {
    color: #a2b347;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
    font-size: 14px;
    font-weight: normal;
    line-height: 1.4em;
}
#information {
    text-align: center;
    padding: 20px;
}

/*
	Link to switch to mobile style
*/
.mobile-style-switch a {
	padding: 5px 10px 6px;
	border: 2px solid #ddd;
	border-radius: 10px;
	background: #fafafa;
}
.mobile-style-switch a:hover {
	border-color: #cccfbc;
}
/* Form Styles
---------------------------------------- */

/* General form styles
----------------------------------------*/
fieldset {
	border-width: 0;
}

input[type="text"], input[type="password"], select, textarea {
	font-weight: normal;
    background: #f2f2f2;
    color: #444;
    outline-style: none;
    border: solid 1px #d4d4d4;
    font-family: Verdana,Helvetica,Arial,sans-serif;
    line-height: 1em;
    font-size: 12px;
    transition-property: border-color, background-color, color;
    -webkit-transition-property: border-color, background-color, color;
    -moz-transition-property: border-color, background-color, color;
    -o-transition-property: border-color, background-color, color;
    transition-duration: 0.5s;
    -webkit-transition-duration: 0.5s;
    -moz-transition-duration: 0.5s;
    -o-transition-duration: 0.5s;
}

input[type="text"]:hover, input[type="password"]:hover, select:hover, textarea:hover {
    color: #666;
    border-color: #694a3d;
    background-color: #f8f8f8;
}
input[type="text"]:focus, input[type="password"]:focus, select:focus, textarea:focus {
    border-color: #a88f77;
    background-color: #f8f8f8;
    color: #444;
}


input {
	cursor: pointer;
	vertical-align: middle;
	padding: 0 3px;
	font-size: 12px;
}

select {
	cursor: pointer;
	vertical-align: middle;
	padding: 1px;
	max-width: 400px;
}

option {
	padding-right: 1em;
}

option.disabled-option {
	color: #999;
}

textarea {
	width: 60%;
	padding: 2px;
	line-height: 1.4em;
}

label {
	cursor: default;
	padding-right: 5px;
}

label input {
	vertical-align: middle;
}

label img {
	vertical-align: middle;
}

/* Definition list layout for forms
---------------------------------------- */
fieldset dl {
	padding: 4px 0;
}

fieldset dt {
	float: left;	
	width: 40%;
	text-align: left;
	display: block;
}

fieldset dd {
	margin-left: 41%;
	vertical-align: top;
	margin-bottom: 3px;
}

/* Specific layout 1 */
fieldset.fields1 dt {
	width: 15em;
	border-right-width: 0;
}

fieldset.fields1 dd {
	margin-left: 15em;
	border-left-width: 0;
}

fieldset.fields1 {
	background-color: transparent;
}

fieldset.fields1 div {
	margin-bottom: 3px;
}

/* Set it back to 0px for the reCaptcha divs: PHPBB3-9587 */
fieldset.fields1 #recaptcha_widget_div div {
	margin-bottom: 0;
}

/* Specific layout 2 */
fieldset.fields2 dt {
	width: 15em;
	border-right-width: 0;
}

fieldset.fields2 dd {
	margin-left: 16em;
	border-left-width: 0;
}

/* Form elements */
dt label {
	font-weight: bold;
	color: #a2b347;
	font-size: 12px;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
	text-align: left;
}

dd label {
	white-space: nowrap;
}

dd input, dd textarea {
	margin-right: 3px;
}

dd select {
	width: auto;
}

dd textarea {
	width: 85%;
}

#timezone {
	width: 95%;
}

/* Quick-login on index page */
fieldset.quick-login {
	margin-top: 5px;
}

fieldset.quick-login input {
	width: auto;
}

fieldset.quick-login input.inputbox {
	width: 15%;
	vertical-align: middle;
	margin-right: 5px;
}

fieldset.quick-login label {
	white-space: nowrap;
	padding-right: 2px;
}

/* Display options on viewtopic/viewforum pages  */
fieldset.display-options {
	text-align: center;
	margin: 3px 0 5px 0;
}

fieldset.display-options label {
	white-space: nowrap;
	padding-right: 2px;
}

fieldset.display-options a {
	margin-top: 3px;
}

/* Display actions for ucp and mcp pages */
fieldset.display-actions {
	text-align: right;
	line-height: 2em;
	white-space: nowrap;
	padding-right: 1em;
}

fieldset.display-actions label {
	white-space: nowrap;
	padding-right: 2px;
}

fieldset.sort-options {
	line-height: 2em;
}

/* MCP forum selection*/
fieldset.forum-selection {
	margin: 5px 0 3px 0;
	float: right;
}

fieldset.forum-selection2 {
	margin: 13px 0 3px 0;
	float: right;
}

/* Jumpbox */
fieldset.jumpbox {
	text-align: right;
	margin-top: 15px;
	height: 2.5em;
}

fieldset.quickmod {
	width: 50%;
	float: right;
	text-align: right;
	height: 2.5em;
}

/* Submit button fieldset */
fieldset.submit-buttons {
	text-align: center;
	vertical-align: middle;
	margin: 5px 0;
}

fieldset.submit-buttons input {
	vertical-align: middle;
	padding-top: 3px;
	padding-bottom: 3px;
}

/* Posting page styles
----------------------------------------*/

/* Buttons used in the editor */
#format-buttons {
	margin: 15px 0 2px 0;
}

#format-buttons input, #format-buttons select {
	vertical-align: middle;
}

/* Main message box */
#message-box {
	width: 80%;
}

#message-box textarea {
	width: 100%;
}

/* Emoticons panel */
#smiley-box {
	width: 18%;
	float: right;
}

#smiley-box img {
	margin: 3px;
}

/* Input field styles
---------------------------------------- */
.inputbox {
	padding: 2px;
	cursor: text;
}

input.inputbox	{ width: 85%; }
input.medium	{ width: 50%; }
input.narrow	{ width: 25%; }
input.tiny		{ width: 125px; }

textarea.inputbox {
	width: 85%;
}

.autowidth {
	width: auto !important;
}

/* Form button styles
---------------------------------------- */
input.button1, input.button2 {
	font-size: 1em;
}

a.button1, input.button1, input.button3, a.button2, input.button2 {
	width: auto !important;
	padding-top: 1px;
	padding-bottom: 1px;
}
.browser-webkit a.button1, .browser-webkit input.button1, .browser-webkit input.button3, .browser-webkit a.button2, .browser-webkit input.button2 {
    padding-top: 2px;
    padding-bottom: 2px;
}

a.button1, input.button1 {
	font-weight: bold;
	color: #694a3d;
    background: #f2f2f2;
    border: solid 1px #d4d4d4;
}

input.button3 {
	padding: 0;
	margin: 0;
	line-height: 5px;
	height: 12px;
	font-variant: small-caps;
}

/* Alternative button */
a.button2, input.button2, input.button3 {
	border: 1px solid #f2f2f2;
    background: #f2f2f2;
	color: #666;
	padding-left: 6px;
	padding-right: 6px;
	font-size: 12px;
}

/* <a> button in the style of the form buttons */
a.button1, a.button1:link, a.button1:visited, a.button1:active, a.button2, a.button2:link, a.button2:visited, a.button2:active {
	text-decoration: none;
	color: #694a3d;
	padding: 2px 8px;
	line-height: 250%;
	vertical-align: text-bottom;
}

/* Hover states */
a.button1:hover, input.button1:hover, a.button2:hover, input.button2:hover, input.button3:hover {
    color: #FFF;    
    background-color: #888;
}

input.disabled {
	font-weight: normal;
	color: #666666;
}

/* Topic and forum Search */
.search-box {
	margin-top: 3px;
	margin-left: 5px;
	float: left;
}

.search-box input {
}

input.search {
	background-image: url("./styles/Ludopathes4/theme/images/search_mini.gif");
	background-repeat: no-repeat;
	background-position: 3px 4px;
	padding-left: 18px;
}

.full { width: 95%; }
.medium { width: 50%;}
.narrow { width: 25%;}
.tiny { width: 10%;}
/*
    Website index, forum view
*/
div.forabg, div.forumbg, .panel, .post {
    clear: both;
	margin: 30px 0 !important;
}

ul.linklist {
    display: block;
    height: 14px;
    margin: 6px 4px;
}
ul.linklist li {
    display: block;
    float: left;
    list-style-type: none;
    margin-right: 5px;
}

div.forabg, div.forumbg {
    margin: 6px 0;
}

ul.topiclist {
    display: block;
    clear: both;
    list-style-type: none;
    margin: 0;
}
ul.topiclist li {
    display: block;
    list-style-type: none;
    margin: 0;
}
ul.topiclist li.header {
    margin: 2px 2px 0;
    color: #FFFFFF;
	padding: 10px;
	background-color: #a0b046;
}

/*Public*/
ul.topiclist li.forum-style3,
ul.topiclist li.forum-style4{
		background-color: #1693a7;
}

/*Ludopathes*/
ul.topiclist li.forum-style13,
ul.topiclist li.forum-style14{
		background-color: #e6791e;
}

/*Bouge*/
ul.topiclist li.forum-style29,
ul.topiclist li.forum-style30{
		background-color: #6a4a3d;
}

/*CA*/
ul.topiclist li.forum-style18,
ul.topiclist li.forum-style19,
ul.topiclist li.forum-style20{
		background-color: #bb1b37;
}

ul.topiclist li.header a, ul.topiclist li.header a:visited {
    /*color: rgba(255, 255, 255, 0.8);*/
	color: #FFF;
    /*text-decoration: underline;*/
}
ul.topiclist li.header a:hover, ul.topiclist li.header a:active {
    /*color: #fff;*/
	color: #6A4A3D;
}
.old-ie ul.topiclist li.header, .old-ie ul.topiclist li.header a {
    color: #fff !important;
}
ul.topiclist li.header dt, ul.topiclist li.header dd {
    font-size: 12px;
    line-height: 1.2em;
}

ul.topiclist dl {
    overflow: hidden;
    position: relative;
}
ul.topiclist li.row dl {
	padding: 2px 0;
	width: 100%;
}

ul.topiclist dt {
	display: block;
	float: left;
	width: 50%;
	padding-left: 5px;
	padding-right: 5px;
}

ul.topiclist dd {
	display: block;
	float: left;
	border-left: 1px solid rgba(214, 214, 214, 0.3);
	padding: 4px 0;
}
.old-ie ul.topiclist dd {
    border-left: 1px solid #eee;
}
.old-ie ul.topiclist .header dd { border-left-color: transparent; }

ul.topiclist dfn {
	/* Labels for post/view counts */
	position: absolute;
	left: -999px;
	width: 990px;
}

ul.topiclist li.row dt a.subforum {
	background-position: 0 50%;
	background-repeat: no-repeat;
	position: relative;
	white-space: nowrap;
	padding: 0 0 0 12px;
}

ul.topiclist li.row dt a.subforum.read {
	background-image: url("./styles/Ludopathes4/imageset/icon_topic_latest.gif");
}

ul.topiclist li.row dt a.subforum.unread {
	background-image: url("./styles/Ludopathes4/imageset/icon_topic_newest.gif");
}

.forum-image {
	float: left;
	padding-top: 5px;
	margin-right: 5px;
}

li.row {
	border-bottom: 1px solid rgba(214, 214, 214, 0.5);
	background-color: rgba(250, 250, 250, 0.01);
    transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    -moz-transition: background-color 0.5s ease;
    -o-transition: background-color 0.5s ease;
}

li.row.bg2, li.row.bg2:hover, table.table1 tbody tr.bg2, table1 tbody tr.bg2:hover {
	background-color: #F5F7F8;
}

.old-ie li.row {
    border-bottom: 1px solid #eee;
}

li.row strong {
	font-weight: normal;
}

li.row:hover {
	background-color: #fafafa;
}

li.header dt, li.header dd {
    /*color: rgba(255, 255, 255, 0.8) !important;*/
	color: #FFF !important;
	line-height: 1em;
	border-left-width: 0;
	margin: 0;
	padding: 4px 0;
}
.old-ie li.header dt, .old-ie li.header dd {
    color: #fff;
}

li.header dd {
	margin-left: 1px;
}

li.header dl {
	min-height: 0;
	padding-left: 6px;
	width: 100%;
}

li.header dl.icon dt {
	/* Tweak for headers alignment when folder icon used */
	padding-left: 0;
	padding-right: 50px;
}

/* Forum list column styles */
dl.icon {
	min-height: 35px;
	background-position: 9px 50%;		/* Position of folder icon */
	background-repeat: no-repeat;
}

dl.icon dt {
	padding-left: 45px;					/* Space for folder icon */
	background-repeat: no-repeat;
	background-position: 5px 95%;		/* Position of topic icon */
	font-size: 13px;
}
dl.icon dt div.extra {
    float: right;
    padding-top: 4px;
}

dd.posts, dd.topics, dd.views {
	width: 8%;
	text-align: center;
	line-height: 2.2em;
	font-size: 12px;
}

a.forumtitle, a.topictitle {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.3em;
    /*font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;*/
}
.unread a.forumtitle, .unread a.forumtitle:visited,
.unread a.topictitle, .unread a.topictitle:visited,
.reported a.topictitle, .reported a.topictitle:visited,
a.subforum.unread, a.subforum.unread:visited {
    color: #b91b36;
}
.forum-link a.forumtitle, .forum-link a.forumtitle:visited,
.forum-link a.topictitle, .forum-link a.topictitle:visited,
.unapproved a.topictitle, .unapproved a.topictitle:visited {
    color: #a2b347;
}
.unread a.forumtitle:hover, .unread a.topictitle:hover,
.forum-link a.forumtitle:hover, .forum-link a.topictitle:hover,
.reported a.topictitle:hover, .unapproved a.topictitle:hover,
a.subforum.unread:hover {
    color: #a88f77;
}


/* List in forum description */
dl.icon dt ol,
dl.icon dt ul {
	list-style-position: inside;
	margin-left: 1em;
}

dl.icon dt li {
	display: list-item;
	list-style-type: inherit;
}

dd.lastpost {
	width: 25%;
	font-size: 12px;
}

dd.redirect {
	font-size: 12px;
	line-height: 2.5em;
}

dd.redirect.empty {
    display: none;
}

dd.moderation {
	font-size: 11px;
}

dd.lastpost span, ul.topiclist dd.searchby span, ul.topiclist dd.info span, ul.topiclist dd.time span, dd.redirect span, dd.moderation span {
	display: block;
	padding-left: 5px;
}

dd.time {
	width: auto;
	line-height: 200%;
	font-size: 11px;
}

dd.extra {
	width: 12%;
	line-height: 200%;
	text-align: center;
	font-size: 11px;
}

dd.mark {
	float: right !important;
	width: 9%;
	text-align: center;
	line-height: 200%;
	font-size: 11px;
}

dd.info {
	width: 30%;
}

dd.option {
	width: 15%;
	line-height: 200%;
	text-align: center;
	font-size: 11px;
}

dd.searchby {
	width: 47%;
	font-size: 11px;
	line-height: 1em;
}

ul.topiclist dd.searchextra {
	margin-left: 5px;
	padding: 0.2em 0;
	font-size: 11px;
	color: #333333;
	border-left: none;
	clear: both;
	width: 98%;
	overflow: hidden;
}

/* Container for post/reply buttons */
.topic-actions {
	margin-bottom: 3px;
	font-size: 11px;
	height: 28px;
	min-height: 28px;
}
div[class].topic-actions {
	height: auto;
}

/* Buttons */
.buttons {
    float: left;
}
.buttons div {
	float: left;
	margin: 0 5px 0 0;
	background-position: 0 100%;
}
.buttons div a {
    font-size: 13px;
    line-height: 1em;
    white-space: nowrap;
    display: inline-block;
    position: relative;
    margin: 0 0 0 10px;
    padding: 6px 12px 6px 2px;
    /*height: 20px;*/
    text-decoration: none;
    text-align: center;
	background-color: #F5F7F8;
}
.browser-ie .buttons div a {
    line-height: 21.49px;
    padding-top: 2px;
    height: 24px;
}
.buttons div.locked-icon a, .buttons div.locked-icon a:visited { color: #FFF; }
.buttons div.locked-icon a:hover { color: #FFF; }

.buttons div a, .buttons div a:hover, .buttons div a:active {
    text-decoration: none;
    border-width: 0;
    outline-style: none;
}
.buttons div a span {
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: -10px;
    width: 10px;
    background: inherit;
    background-position: top left;
}

.buttons div a:hover {
    background-position: right -30px;
}
.buttons div a:active {
    background-position: right bottom;
}
.buttons div a:hover span {
    background-position: left -30px;
}
.buttons div a:active span {
    background-position: left bottom;
}


/* Pagination
---------------------------------------- */
.pagination {
	width: auto;
	text-align: right;
	margin-top: 5px;
	margin-bottom: 3px;
	float: right;
}

.pagination span.page-sep {
	display: none;
}

li.pagination {
	margin-top: 0;
}

.pagination strong, .pagination b {
	font-weight: normal;
}

.pagination span strong {
	padding: 0 2px;
	margin: 0 2px;
	font-weight: normal;
    border: 1px solid #cccfbc;
    background-color: #a2b347;
    color: #fff;
}

.pagination span a, .pagination span a:link, .pagination span a:visited, .pagination span a:active {
	font-weight: normal;
	text-decoration: none;
	margin: 0 2px;
	padding: 0 2px;
    border: solid 1px #ccc;
    background-color: #f8f8f8;
	line-height: 1.5em;
    transition: none;
    -webkit-transition: none;
    -moz-transition: none;
    -o-transition: none;
}

.pagination span a:hover {
    border-color: #c3b9b0;
    background-color: #a88f77;
    color: #fff;
	text-decoration: none;
}
.pagination span a:active {
    border-color: #c54c61;
    background-color: #b91b36;
    color: #fff;
}

.pagination img {
	vertical-align: middle;
}

/* Pagination in viewforum for multipage topics */
.row .pagination {
	display: block;
	float: right;
	width: auto;
	margin-top: 0;
	padding: 1px 0 1px 15px;
	font-size: 0.9em;
	background: none 0 50% no-repeat;
}

/* Miscellaneous styles
---------------------------------------- */
#forum-permissions {
	float: right;
	width: auto;
	padding-left: 5px;
	margin-left: 5px;
	margin-top: 10px;
	text-align: right;
}

/* Login on index */
body.section-index #page-body > form > h3 { display: none; }

/* RSS feed */
a.feed-icon-forum {
	display: block;
	float: right;
	overflow: hidden;
	background: url("./styles/Ludopathes4/theme/images/rss.png") 0 0 no-repeat;
	width: 0;
	height: 0;
	margin: 0;
	padding: 18px 0 0 18px;
}
a.feed-icon-forum:hover { background-position: 0 -20px; }

.stats{
	float: left;
	width: 49%;
	margin-right:1%;
}

/**
	Scrollbar
**/
::-webkit-scrollbar {
    background: transparent;
}
::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.2);
    border: solid whiteSmoke 4px;
}
::-webkit-scrollbar-thumb:hover {
    background-color: rgba(0, 0, 0, 0.3);
}
/*
    Layout for posts
*/

.post, .panel {
    margin-bottom: 4px;
}
#preview {
    margin-top: 4px;
}
.post > div, .panel > div {
    padding: 5px 10px;
}

.online .inner { background: url("./styles/Ludopathes4/imageset/fr/icon_user_online.gif") 100% 0 no-repeat; }


.postbody {
	padding: 0;
	line-height: 1.48em;
	width: 76%;
	float: left;
	clear: both;
	word-wrap: break-word;
}

.postbody .ignore {
}

.postbody h3.first, .postbody h3.first a {
	/* The first post on the page uses this */
    color: #b91b36 !important;
}

.postbody h3 {
	/* Postbody requires a different h3 format - so change it here */
	padding: 2px 0 0 0;
	margin: 0 0 2px 0 !important;
	text-transform: none;
	border: none;
	line-height: 125%;
	font-weight: normal;
	font-size: 16px;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
}
.postbody h3, .postbody h3 a, .postbody h3 a:visited { color: #a2b347; }
.postbody h3 a:hover { color: #a88f77; }

.postbody h3 img {
	/* Also see tweaks.css */
	vertical-align: bottom;
}

.postbody .content {
	/*font-size: 12px;*/
}

.search .postbody {
	width: 68%
}

.content {
	min-height: 3em;
	overflow: hidden;
	line-height: 1.4em;
	padding-bottom: 1px;
}

.content h2, .panel h2, .panel > div > h3, .panel .content > h3 {
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
	font-weight: normal;
	margin: 4px 0;
	padding: 0;
	font-size: 16px;
	color: #a2b347;
}

.postbody > .notice {
    clear: left;
    margin-top: 10px;
    font-size: 11px;
    font-style: italic;
}

/*
Theme ludopathes
*/
#page-body > h2.ludop-style{
	padding: 10px;
}
#page-body > h2.ludop-style a{
	color:#FFF !important;
}

/*Public*/
#page-body > h2.forum-3,
#page-body > h2.forum-4,
#page-body > h2.forum-5,
#page-body > h2.forum-6,
#page-body > h2.forum-7,
#page-body > h2.forum-8,
#page-body > h2.forum-9,
#page-body > h2.forum-10,
#page-body > h2.forum-11,
#page-body > h2.forum-12,
#page-body > h2.forum-27,
#page-body > h2.forum-28{
		background-color: #1693a7;
}

/*Ludopathes*/
#page-body > h2.forum-13,
#page-body > h2.forum-14,
#page-body > h2.forum-15,
#page-body > h2.forum-16,
#page-body > h2.forum-17,
#page-body > h2.forum-34{
		background-color: #e6791e;
}

/*Bouge*/
#page-body > h2.forum-29,
#page-body > h2.forum-30,
#page-body > h2.forum-31,
#page-body > h2.forum-33{
		background-color: #6a4a3d;
}

/*CA*/
#page-body > h2.forum-18,
#page-body > h2.forum-19,
#page-body > h2.forum-20,
#page-body > h2.forum-21,
#page-body > h2.forum-22,
#page-body > h2.forum-23{
	background-color: #bb1b37;
}

/* Poster profile icons
----------------------------------------*/
ul.profile-icons {
	padding-top: 10px;
	list-style: none;
}

/* Rollover state */
ul.profile-icons li {
	float: left;
	margin: 0 2px 3px 0;
	background-position: 0 100%;
}

/* Rolloff state */
ul.profile-icons li a {
	display: block;
	width: 100%;
	height: 100%;
	background-position: 0 0;
}

/* Hide <a> text and hide off-state image when rolling over (prevents flicker in IE) */
ul.profile-icons li span { display:none; }
ul.profile-icons li a:hover { background: none; }

/* Positioning of moderator icons */
.postbody ul.profile-icons {
	float: right;
	width: auto;
	padding: 0;
	padding-bottom: 5px;
}

.postbody ul.profile-icons li {
	margin: 0 3px;
}


/* Profile & navigation icons */
.email-icon, .email-icon a		{ background: url("./styles/Ludopathes4/imageset/icon_contact_email.gif") top left no-repeat; }
.aim-icon, .aim-icon a			{ background: url("./styles/Ludopathes4/imageset/icon_contact_aim.gif") top left no-repeat; }
.yahoo-icon, .yahoo-icon a		{ background: url("./styles/Ludopathes4/imageset/icon_contact_yahoo.gif") top left no-repeat; }
.web-icon, .web-icon a			{ background: url("./styles/Ludopathes4/imageset/icon_contact_www.gif") top left no-repeat; }
.msnm-icon, .msnm-icon a			{ background: url("./styles/Ludopathes4/imageset/icon_contact_msnm.gif") top left no-repeat; }
.icq-icon, .icq-icon a			{ background: url("./styles/Ludopathes4/imageset/icon_contact_icq.gif") top left no-repeat; }
.jabber-icon, .jabber-icon a		{ background: url("./styles/Ludopathes4/imageset/icon_contact_jabber.gif") top left no-repeat; }
.pm-icon, .pm-icon a				{ background: url("./styles/Ludopathes4/imageset/icon_contact_pm.gif") top left no-repeat; }
.quote-icon, .quote-icon a		{ background: url("./styles/Ludopathes4/imageset/fr/icon_post_quote.gif") top left no-repeat; }

/* Moderator icons */
.report-icon, .report-icon a		{ background: url("./styles/Ludopathes4/imageset/icon_post_report.gif") top left no-repeat; }
.warn-icon, .warn-icon a			{ background: url("./styles/Ludopathes4/imageset/icon_user_warn.gif") top left no-repeat; }
.edit-icon, .edit-icon a			{ background: url("./styles/Ludopathes4/imageset/fr/icon_post_edit.gif") top left no-repeat; }
.delete-icon, .delete-icon a		{ background: url("./styles/Ludopathes4/imageset/icon_post_delete.gif") top left no-repeat; }
.info-icon, .info-icon a			{ background: url("./styles/Ludopathes4/imageset/icon_post_info.gif") top left no-repeat; }

/* Set profile icon dimensions */
ul.profile-icons li.email-icon		{ width: 20px; height: 20px; }
ul.profile-icons li.aim-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.yahoo-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.web-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.msnm-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.icq-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.jabber-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.pm-icon		{ width: 20px; height: 20px; }
ul.profile-icons li.quote-icon	{ width: 58px; height: 20px; }
ul.profile-icons li.report-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.edit-icon	{ width: 65px; height: 20px; }
ul.profile-icons li.delete-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.info-icon	{ width: 20px; height: 20px; }
ul.profile-icons li.warn-icon	{ width: 20px; height: 20px; }

/* Fix profile icon default margins */
/* ul.profile-icons li.edit-icon	{ margin: 0 0 0 3px; }
ul.profile-icons li.quote-icon	{ margin: 0 0 0 10px; }
ul.profile-icons li.info-icon, ul.profile-icons li.report-icon	{ margin: 0 3px 0 0; } */

/* Post author */
p.author {
	margin: 0;
	padding: 0 0 5px;
	font-size: 11px;
	line-height: 1.2em;
	color: #999;
}
p.author img { margin-right: 4px; }
p.author strong { font-weight: normal; }
p.author a, p.author a:visited { color: #a2b347; }
p.author a:hover { color: #a88f77; }

/* Post signature */
.signature {
	margin-top: 1.5em;
	padding-top: 0.2em;
	font-size: 11px;
	color: #888;
	border-top: 1px solid #ddd;
	clear: left;
	line-height: 140%;
	overflow: hidden;
	width: 100%;
}

dd .signature {
	margin: 0;
	padding: 0;
	clear: none;
	border: none;
}

.signature li {
	list-style-type: inherit;
}

.signature ul, .signature ol {
	margin-bottom: 1em;
	margin-left: 3em;
}

/* Poster profile block
----------------------------------------*/
.postprofile {
	margin: 2px 0 10px 0;
	min-height: 80px;
	color: #666666;
	border-left: 1px solid #ddd;
	width: 22%;
	float: right;
	word-wrap: break-word;
}
.pm .postprofile {
	border-left: 1px solid #ddd;
}

.postprofile dd, .postprofile dt {
	line-height: 1.2em;
	margin-left: 8px;
	font-size: 11px;
}
.postprofile dt {
    font-size: 14px;
    line-height: 1.4em;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
}

.postprofile strong {
	font-weight: normal;
	color: #a2b347;
}

.avatar {
	border: none;
	margin-bottom: 3px;
}

/* Poster profile used by search*/
.search .postprofile {
	width: 30%;
}

/* pm list in compose message if mass pm is enabled */
dl.pmlist dt {
	width: 60% !important;
}

dl.pmlist dt textarea {
	width: 95%;
}

dl.pmlist dd {
	margin-left: 61% !important;
	margin-bottom: 2px;
}

/* Post poll styles
----------------------------------------*/
fieldset.polls dl {
	margin-top: 5px;
	border-top: 1px solid #ddd;
	padding: 5px 0 0 0;
	line-height: 120%;
}

fieldset.polls dl.voted {
	color: #b91b36;
}

fieldset.polls dt {
	text-align: left;
	float: left;
	display: block;
	width: 30%;
	border-right: none;
	padding: 0;
	margin: 0;
	font-size: 1.1em;
}

fieldset.polls dd {
	float: left;
	width: 10%;
	border-left: none;
	padding: 0 5px;
	margin-left: 0;
	font-size: 1.1em;
}

fieldset.polls dd.resultbar {
	width: 50%;
}

fieldset.polls dd input {
	margin: 2px 0;
}

fieldset.polls dd div {
	text-align: right;
	font-family: Arial, Helvetica, sans-serif;
	color: rgba(255, 255, 255, 0.8);
	font-weight: normal;
	padding: 0 3px;
	overflow: visible;
	min-width: 12px;
	background: #a2b347 url("./styles/Ludopathes4/theme/images/poll.png") 0 0 repeat-x;
	border: solid 0px transparent;
	border-radius: 6px;
	-moz-border-radius: 6px;
	border-top-color: #eee;
}

fieldset.polls dd div.pollbar2 { background-position: 0 -25px; }
fieldset.polls dd div.pollbar3 { background-position: 0 -50px; }
fieldset.polls dd div.pollbar4 { background-position: 0 -75px; }
fieldset.polls dd div.pollbar5 { background-position: 0 -100px; }
fieldset.polls dl.voted dd div { background-position: 0 -125px; }


/* BB Code styles
----------------------------------------*/
/* Quote block */
blockquote {
	background: rgba(255, 255, 255, 0.3) url("./styles/Ludopathes4/theme/images/bb_quote.gif") 5px 8px no-repeat;
	border: 1px solid #ddd;
	/*border-radius: 8px;
	-moz-border-radius: 8px;*/
	font-size: 12px;
	margin: 0.5em 1px 0 25px;
	overflow: hidden;
	padding: 5px;
}

blockquote blockquote {
	/* Nested quotes */
	background-color: #f7f7f7;
	font-size: 1em;
	margin: 0.5em 1px 0 15px;
}

blockquote blockquote blockquote {
	/* Nested quotes */
	background-color: #e4e4e4;
}

blockquote cite {
	/* Username/source of quoter */
	font-style: normal;
	font-weight: normal;
	margin-left: 20px;
	display: block;
	font-size: 11px;
	color: #999;
}

blockquote.uncited {
	padding-top: 25px;
}

/* Code block */
dl.codebox {
	padding: 3px;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px solid #ddd;
	border-radius: 8px;
	-moz-border-radius: 8px;
	margin: 0.5em 1px 0 25px;
	font-size: 1em;
}

dl.codebox dt {
	margin-bottom: 3px;
	padding-left: 2px;
	font-size: 11px;
	font-weight: normal;
	display: block;
	color: #999;
}

blockquote dl.codebox {
	margin-left: 0;
}

dl.codebox code {
	/* Also see tweaks.css */
	overflow: auto;
	display: block;
	height: auto;
	max-height: 200px;
	white-space: normal;
	padding-top: 5px;
	font: 0.9em Monaco, "Andale Mono","Courier New", Courier, mono;
	line-height: 1.3em;
	color: #666;
	margin: 2px 0;
}

.syntaxbg		{ color: #f7f7f7; }
.syntaxcomment	{ color: #000000; }
.syntaxdefault	{ color: #bcbcbc; }
.syntaxhtml		{ color: #000000; }
.syntaxkeyword	{ color: #585858; }
.syntaxstring	{ color: #a7a7a7; }

/* Attachments
----------------------------------------*/
.attachbox {
	float: left;
	width: auto;
	margin: 5px 5px 5px 0;
	padding: 6px;
	background-color: rgba(255, 255, 255, 0.5);
	border: 1px dashed #ddd;
	border-radius: 8px;
	-moz-border-radius: 8px;
	clear: left;
	max-width: 98%;
}

.attachbox dt {
	color: #999;
	font-size: 11px;
}

.attachbox dd {
	margin-top: 4px;
	padding-top: 4px;
	clear: left;
	border-top: 1px solid #ddd;
}

.attachbox dd dd {
	border: none;
}

.attachbox p {
	line-height: 110%;
	font-weight: normal;
	clear: left;
}

.attachbox p.stats
{
	line-height: 110%;
	font-weight: normal;
	clear: left;
}

.attach-image {
	margin: 3px 0;
	width: 100%;
	max-height: 350px;
	overflow: auto;
}

.attach-image img {
}

/* Inline image thumbnails */
div.inline-attachment dl.thumbnail, div.inline-attachment dl.file {
	display: block;
	margin-bottom: 4px;
}

div.inline-attachment p {
	font-size: 100%;
}

dl.file {
	display: block;
}

dl.file dt {
	text-transform: none;
	margin: 0;
	padding: 0;
	font-size: 12px;
	font-weight: normal;
}

dl.file dd {
	margin: 0;
	padding: 0;
}

dl.thumbnail img {
	padding: 3px;
	border: 1px solid #ccc;
}

dl.thumbnail dd {
	font-style: italic;
}

.attachbox dl.thumbnail dd {
	font-size: 100%;
}

dl.thumbnail dt a:hover {
}

dl.thumbnail dt a:hover img {
	border: 1px solid #aaa;
}

/*
    Reported / unapproved
*/
p.rules {
    background: rgba(255, 255, 255, 0.5);
    border: solid 2px rgba(197, 76, 97,  0.5);
    border-radius: 6px;
    -moz-border-radius: 6px;
	padding: 6px;
	margin: 5px 10px;
	font-size: 12px;
	line-height: 1.4em;
}
p.rules:hover {
    border-color: rgba(197, 76, 97,  0.7);
}

p.rules img {
	vertical-align: middle;
	padding-top: 2px;
}
p.rules strong { font-weight: normal; }

p.rules a {
	vertical-align: middle;
	clear: both;
}

/*
    Lists bbcode
*/
.content ul, .content ol {
    margin-bottom: 1em;
    margin-left: 3em;
}
.content li {
    list-style-type: inherit;
}

/*
    Post highlight
*/
.posthilit { color: #b91b36; }


/*
	Zoom in image
*/
span.zoom-container {
	position: relative;
	display: inline-block;
	min-height: 34px;
}
span.zoom-image {
	display: none;
    transition: opacity 0.25s ease;
    -webkit-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    -ms-transition: opacity 0.25s ease;
	opacity: 0.7;
}
img.zoom + span.zoom-image {
	display: block;
	position: absolute;
	top: 2px;
	left: 2px;
	width: 30px;
	height: 30px;
	background: url("./styles/Ludopathes4/theme/images/zoom.png") 0 0 no-repeat;
	cursor: pointer;
}
.zoom-container:hover span.zoom-image { opacity: 1; }
img.zoom.zoomed-in + span.zoom-image {
	background-position: 0 -30px;
	opacity: 0;
}
.zoom-container:hover img.zoom.zoomed-in + span.zoom-image { opacity: 0.7; }
/*
    Layouts for pages not covered in other css files
*/


/* notification */
div#message, #confirm .panel, #agreement .panel {
    margin: 40px 0;
    border-width: 0;
    background-color: transparent;
    background-image: none;
    font-size: 12px;
}
div#message > div, #confirm .panel > div, #agreement .panel > div { padding: 0; }
div#message h2, #confirm h2, #agreement h2 { 
    margin-left: 0; 
    margin-bottom: 20px; 
}

/*
    UCP tabs
*/
#tabs {
    margin: 10px 0 6px;
}
#navigation, #minitabs {
    margin: 4px 0;
    min-height: 1em;
}
#tabs ul, #navigation ul, #minitabs ul {
    list-style-type: none;
}
#tabs li, #navigation li, #minitabs li {
    display: block;
    float: left;
}
#tabs li a, #navigation li a, #minitabs li a {
    display: block;
    margin: 0;
    padding: 0;
    height: 24px;
    padding-left: 10px;    
	background: #f2f2f2;
    border-width: 0;
    outline-style: none;
    text-decoration: none;
}
#tabs li a span, #navigation li a span, #minitabs li a span {
    display: inline-block;
    font-size: 12px;
    line-height: 1em;
    white-space: nowrap;
    padding-top: 6px;
    padding-right: 10px;
    height: 18px;    
    color: #694a3d;
    text-shadow: rgba(0,0,0,0.1) 1px 1px 1px;
}
#tabs li a:hover, #tabs li.activetab a, #navigation li a:hover, #navigation li#active-subsection a, #minitabs li a:hover, #minitabs li.activetab a {
    background-position: bottom left;
}
#tabs li a:hover span, #tabs li.activetab a span, #navigation li a:hover span, #navigation li#active-subsection a span, #minitabs li a:hover span, #minitabs li.activetab a span {
    background-position: bottom right;
    color: #a88f77;
}
#tabs li.first a, #navigation li.first a, #minitabs li.first a {    
    padding-left: 14px;
}

#tabs li.last a, #navigation li.last a, #minitabs li.last a {
    background-position: top right;
    padding-right: 14px;
    padding-left: 0;
}
#tabs li.last a span, #navigation li.last a span, #minitabs li.last a span {    
    background-position: top left;
    padding-left: 10px;
    padding-right: 0;
}

#tabs li.last a:hover, #tabs li.activetab.last a, #navigation li.last a:hover, #navigation li#active-subsection.last a, #minitabs li.last a:hover, #minitabs li.activetab.last a {
    background-position: bottom right;
}
#tabs li.last a:hover span, #tabs li.activetab.last a span, #navigation li.last a:hover span, #navigation li#active-subsection.last a span, #minitabs li.last a:hover span, #minitabs li.activetab.last a span {
    background-position: bottom left;
}
#navigation strong, #tabs strong, #minitabs strong { 
    color: #b91b36; 
    font-weight: normal;
}
li.activetab strong, #active-subsection strong,
#navigation a:hover strong, #tabs a:hover strong, #minitabs a:hover strong {
    color: #a88f77;
}



/*
    UCP stuff
*/
p.linkmcp { color: #999; }

#cp-main > h2, #cp-main > form > h2 {
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
	font-weight: normal;
	margin: 8px 0;
	padding: 0;
	font-size: 16px;
	color: #b91b36;
    font-size: 20px;
    font-weight: normal;
    text-shadow: #ddd 2px 3px 1px;
    margin: 14px 2px;
}

#cp-main h3 {
    margin: 6px 0;
}


#cp-main .content {
	padding: 0;
}

#cp-main .panel ol {
	margin-left: 2em;
	font-size: 11px;
}

ul.cplist {
	margin-bottom: 5px;
}

#cp-main table.table1 {
	margin-bottom: 1em;
}

#cp-main .pagination {
	float: right;
	width: auto;
	padding-top: 1px;
}

#cp-main .postbody p {
	font-size: 12px;
}

#cp-main .pm-message {
	border: 1px solid #e2e2e2;
	margin: 10px 0;
	background-color: #FFFFFF;
	width: auto;
	float: none;
}

.pm-message h2 {
	padding-bottom: 5px;
}

#cp-main .postbody h3, #cp-main .box2 h3 {
	margin-top: 0;
}

#cp-main .buttons {
	margin-left: 0;
}

#cp-main ul.linklist {
	margin: 0;
}

/* MCP Specific tweaks */
.mcp-main .postbody {
	width: 100%;
}


/* Friends list */
.cp-mini {
	background-color: #f9f9f9;
	padding: 0 5px;
	margin: 5px 5px 0 0;
	float: left;
}

.cp-mini > div {
    padding: 5px 2px;
}

dl.mini dt {
	font-weight: normal;
	color: #a2b347;
	font-size: 14px;
	line-height: 1.3em;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
}

dl.mini dd {
	padding-top: 4px;
}

.friend-online {
	font-weight: bold;
}

.friend-offline {
	font-style: italic;
}

/* PM Styles
----------------------------------------*/
#pm-menu {
	line-height: 2.5em;
}

/* PM panel adjustments */
.reply-all {
	display: block; 
	padding-top: 4px; 
	clear: both;
	float: left;
}

.pm-return-to {
	padding-top: 23px;
}

#cp-main .pm-message-nav {
	margin: 0; 
	padding: 2px 10px 5px 10px; 
}

/* PM Message history */
.current {
	color: #999999;
}

/* Defined rules list for PM options */
ol.def-rules {
	padding-left: 0;
}

ol.def-rules li {
	line-height: 180%;
	padding: 1px;
}

/* PM marking colours */
.pmlist li.bg1, .pmlist li.bg2 {
	margin: 2px;
}

.pmlist li.bg1 dl, .pmlist li.bg2 dl {
    border: solid 1px rgba(214, 214, 214, 0.5);
	border-width: 0 3px;
	border-radius: 4px;
	-moz-border-radius: 4px;
}

.pmlist li.pm_message_reported_colour dl, .pm_message_reported_colour {
	border-color: #b91b36;
}

.pmlist li.pm_marked_colour dl, .pm_marked_colour {
	border-color: #a88f77;
}

.pmlist li.pm_replied_colour dl, .pm_replied_colour {
	border-color: #a2b347;
}

.pmlist li.pm_friend_colour dl, .pm_friend_colour {
	border-color: #694a3d;
}

.pmlist li.pm_foe_colour dl, .pm_foe_colour {
	border-color: #b91b36;
}



.pm-legend {
	border-left-width: 10px;
	border-left-style: solid;
	border-right-width: 0;
	margin-bottom: 3px;
	padding-left: 3px;
}

/* Avatar gallery */
#gallery label {
	position: relative;
	float: left;
	margin: 10px;
	padding: 5px;
	width: auto;
	background: #FFFFFF;
	border: 1px solid #CCC;
	text-align: center;
}

#gallery label:hover {
	background-color: #EEE;
}

/* Topic review panel
----------------------------------------*/
#review {
	margin-top: 2em;
	font-weight: normal;
	font-size: 14px;
	line-height: 1.4em;
	color: #a2b347;
}

#topicreview {
	padding-right: 5px;
	overflow: auto;
	height: 300px;
}

#topicreview .postbody {
	width: auto;
	float: none;
	margin: 0;
	height: auto;
}

#topicreview .post {
	height: auto;
}

#topicreview h2 {
	border-bottom-width: 0;
}

.post-ignore .postbody {
	display: none;
}

/* MCP Post details
----------------------------------------*/
#post_details
{
	/* This will only work in IE7+, plus the others */
	overflow: auto;
	max-height: 300px;
}

#expand
{
	clear: both;
}


/* FAQ */
dl.faq {
	margin-top: 5px;
	margin-bottom: 20px;
	line-height: 1.4em;
}

dl.faq dt {
	font-weight: normal;
    font-family: Arial, 'DejaVu Sans', 'Liberation Sans', Freesans, sans-serif;
	font-size: 14px;
	color: #a2b347;
	line-height: 1.4em;
}
dl.faq dt strong { font-weight: normal; }

.content dl.faq {
	font-size: 12px;
	margin-bottom: 0.5em;
}

.column1 {
	float: left;
	clear: left;
	width: 49%;
}

.column2 {
	float: right;
	clear: right;
	width: 49%;
}


/* Table styles
----------------------------------------*/
table.table1 {
    width: 100%;
}

#ucp-main table.table1 {
	margin: 2px;
}

table.table1 th {
	font-weight: normal;
    border: solid 1px transparent; /* rgba(162, 179, 71,  0.2); */
    background: url("./styles/Ludopathes4/theme/images/popupbg.png") 0 -2px repeat-x;
    border-radius: 6px;
    -moz-border-radius: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    line-height: 1.2em;
    padding: 2px 4px;
}
table.table1 thead th a, table.table1 thead th a:visited {
    color: rgba(255, 255, 255, 0.8);
}
table.table1 thead th a:hover {
    color: #fff;
}

table.table1 thead th span {
	padding-left: 7px;
}

table.table1 tbody tr:hover, table.table1 tbody tr.hover {
	background-color: #fafafa;
}

table.table1 td {
	font-size: 12px;
	padding: 4px;
	border: 1px solid rgba(214, 214, 214, 0.5);
	border-radius: 4px;
	-moz-border-radius: 4px;
}

/* Specific column styles */
table.table1 .name		{ text-align: left; }
table.table1 .posts		{ text-align: center !important; width: 7%; }
table.table1 .joined	{ text-align: left; width: 15%; }
table.table1 .active	{ text-align: left; width: 15%; }
table.table1 .mark		{ text-align: center; width: 7%; }
table.table1 .info		{ text-align: left; width: 30%; }
table.table1 .info div	{ width: 100%; white-space: normal; overflow: hidden; }
table.table1 .autocol	{ line-height: 2em; white-space: nowrap; }
table.table1 thead .autocol { padding-left: 1em; }

table.table1 span.rank-img {
	float: right;
	width: auto;
}

table.info td {
	padding: 3px;
}

table.info tbody th {
	padding: 3px;
	text-align: right;
	vertical-align: top;
	color: #000000;
	font-weight: normal;
}

/* Jump to post link for now */
ul.searchresults {
	list-style: none;
	text-align: right;
	clear: both;
}
.post ul.searchresults {
    width: 68%;
    clear: left;
}

/* Close popup */
body.simple #page-body > a { 
    display: block;
    text-align: center; 
    margin: 4px;
}

body{
	color: #6a4a3d;
	background: #FFFFFF;
	font: 1.5em "Century Gothic",helvetica,arial,sans-serif;
	margin: 0;
	padding: 0;
}

/* ----------------------------- */
/* ==scrollbar */
/* ----------------------------- */

::-webkit-scrollbar  {
    background: transparent;
}
::-webkit-scrollbar-thumb{
    background-color: rgba(0, 0, 0, 0.2);
    border: solid whiteSmoke 4px;
}
::-webkit-scrollbar-thumb:hover,{
    background-color: rgba(0, 0, 0, 0.3);
}




/* ----------------------------- */
/* ==tuiles */
/* ----------------------------- */

ul.tuiles{
	padding:0;
	margin:0;
}
ul.tuiles li{
	height: 18em;
	list-style: none;
	background-color: #F7BC06;
	color: #FFFFFF;
	border: 4px solid #FFFFFF;
}

ul.tuiles li.tuile-mini{
	height: 120px;
}

ul.tuiles li.tuile-small{
	height: 60px;
}

ul.tuiles li.tuile-first,
ul.tuiles li.tuile-first .mask{
height: 18em;
}

ul.tuiles li.forum{
	background-color: #a0b046;
}
ul.tuiles li.quoideneuf{
	background-color: #bb1b37;
}
ul.tuiles li.index{
	background-color: #1693a7;
}
ul.tuiles li.jeu{
	background-color: #e6791e;
}
ul.tuiles li.ludotheque{
	background-color: #e6791e;
	border: 1px solid #FFFFFF;
	height: 200px;
}
ul.tuiles li.fichier{
	background-color: #6a4a3d;
}
ul.tuiles li.association{
	background-color: #F7BC06;
}
ul.tuiles li.connexion{
	background-color: #6a4a3d;
}

ul.tuiles li.tuile-photo{
	height: 200px;
	border: 1px solid #FFFFFF;
}


.tuile {
   overflow: hidden;
   position: relative;
   text-align: center;
   /*-webkit-box-shadow: 1px 1px 2px #e6e6e6;
   -moz-box-shadow: 1px 1px 2px #e6e6e6;
   box-shadow: 1px 1px 2px #e6e6e6; */
   cursor: default;


}
.tuile .mask{
   width: 100%;
   height: 18em;
   position: absolute;
   overflow: hidden;
   top: 0;
   left: 0;
   padding: 10px;
}

.tuile-mini .mask{
	height: 10em;
}

.tuile img {
   position: relative;
}

.tuile a{
color: #fff;
}

.tuile a.info {
   display: inline-block;
   text-decoration: none;
   padding: 5px;
   margin-top:20px;
   color: #fff;
   text-transform: uppercase;
   border: 1px solid #FFFFFF;
}
.tuile a.info: hover {
   -webkit-box-shadow: 0 0 5px #000;
   -moz-box-shadow: 0 0 5px #000;
   box-shadow: 0 0 5px #000;
}

.tuile img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
.tuile .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background-color:  rgba(0, 0, 0, 0.7);
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
}


.tuile .mask {
   -webkit-transform: translateY(18em);
   -moz-transform: translateY(18em);
   -o-transform: translateY(18em);
   -ms-transform: translateY(18em);
   transform: translateY(18em);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}

.tuile a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

.tuile .auteurs{
	font-style: italic;
}

.tuile:hover img,
.tuile:hover h3 {
   -webkit-transform: scale(1.1,1.1);
   -moz-transform: scale(1.1,1.1);
   -o-transform: scale(1.1,1.1);
   -ms-transform: scale(1.1,1.1);
   transform: scale(1.1,1.1);
}

.tuile:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
.tuile:hover h1,
.tuile:hover h3,
.tuile:hover .mask,
.tuile:hover a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   -webkit-transform: translateY(0px);
   -moz-transform: translateY(0px);
   -o-transform: translateY(0px);
   -ms-transform: translateY(0px);
   transform: translateY(0px);
}
.tuile:hover .mask {
   -webkit-transition-delay: 0.1s;
   -moz-transition-delay: 0.1s;
   -o-transition-delay: 0.1s;
   -ms-transition-delay: 0.1s;
   transition-delay: 0.1s;
}
.tuile:hover a.info {
   -webkit-transition-delay: 0.2s;
   -moz-transition-delay: 0.2s;
   -o-transition-delay: 0.2s;
   -ms-transition-delay: 0.2s;
   transition-delay: 0.2s;
}


/* ----------------------------- */
/* ==forum */
/* ----------------------------- */
ul.topiclist li.header dt, ul.topiclist li.header dd {
	font-size: 1.1em;
}