/* browsers interpret margin and padding a little differently, we'll remove all default padding and margins and set them later on */
* {
	margin: 0;
	padding: 0;
}
/*Set initial font styles*/
body {
	text-align: left;
	font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;
	font-size: 85.01%;
	line-height: 1em;
}
/*set font size for all divs, this overrides some body rules*/
div {
	font-size: 1em;
}
/*if img is inside "a" it would have borders, we don't want that*/
img {
	border: 0;
}
/*default link styles*/
a, a:link a:active {
/* set all links to have underline */
	text-decoration: none;
/* css validation will give a warning if color is set without background color. this will explicitly tell this element to inherit bg colour from parent element */
	background-color: inherit;
/* this is a bluish color, you change this for all default link colors */
	color: rgb(205,150,116);
}
a:visited {
/* keeps the underline */
	text-decoration: none;
	background-color: inherit;
/* a different color is used for visited links */
	color: rgb(198,182,172);
}
a:hover {
/* remove underline on hover */
	text-decoration: none;
	background-color: inherit;
/* using a different color makes the hover obvious */
	color: #ffffff;
}
/*****************basic layout *****************/
body {
	margin: 0;
	padding: 0;
/* default text color for entire site*/
	color: rgb(244,213,181);
/* you can set your own image and background color here */
	background: rgb(10,10,10) url(https://rym-charabeh.net/rymcms/Layout/dot-deco.png) repeat-x 0px 301px;
}
div#pagewrapper {
	width: 1280px;
/* now that width is set this centers wrapper */
	margin: 0 auto;
	background-color: #000000;
	background-image: url(https://rym-charabeh.net/rymcms/Layout/deco-tiges.jpg), url(https://rym-charabeh.net/rymcms/uploads/images/pages-photo-1.jpg);
	background-position: 0px 0px, 310px bottom;
	background-repeat: repeat-y, no-repeat;
	color: rgb(244,213,181);
}
div#pagewrapper-ishtar {
	width: 1280px;
/* now that width is set this centers wrapper */
	margin: 0 auto;
	background-color: #000000;
	background-image: url(https://rym-charabeh.net/rymcms/Layout/deco-tiges.jpg), url(https://rym-charabeh.net/rymcms/uploads/images/pages-photo-2.jpg);
	background-position: 0px 0px, 310px bottom;
	background-repeat: repeat-y, no-repeat;
	color: rgb(244,213,181);
}/* header, we will hide h1 a text and replace it with an image, we assign a height for it so the image wont cut off */
div#header {
	height: 301px;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #000 url(https://rym-charabeh.net/rymcms/Layout/deco-fleurs.jpg) no-repeat left top;
	border-bottom: 10px solid rgb(138,58,9);
}
div#header_right {
	height: 301px;
	width: /*540px*/auto;
	float: right;
	margin: -311px 110px 0 /*625px*/0;
	background-color: rgb(138,58,9);
	z-index: 100;
}
div#header_right_ishtar {
	height: 301px;
	width: /*540px*/auto;
	float: right;
	margin: -311px 110px 0 /*625px*/0;
	background: rgb(138,58,9) url(https://rym-charabeh.net/rymcms/uploads/images/ishtar-titre.png) no-repeat left top;
	z-index: 100;
}div#header_PhotoHaut {
	width: 515px;
	height: 230px;
	margin: 15px 15px 5px 15px;
	display: block;
	background-color: none;
}
div#header h1 a {
/* you can set your own image here */
	background: url(https://rym-charabeh.net/rymcms/Layout/rym_header.png) no-repeat left top;
/* this will make the "a" link a solid shape */
	display: block;
/* adjust according your image size */
	height: 301px;
/* this hides the text */
	text-indent: -999em;
/* old firefox would have shown underline for the link, this explicitly hides it */
	text-decoration: none;
}
div#header h1 {
	margin: 0;
	padding: 0;
/*these keep IE6 from pushing the header to more than the set size*/
	line-height: 0;
	font-size: 0;
/* this will keep IE6 from flickering on hover */
	background: url(https://rym-charabeh.net/rymcms/Layout/rym_header.png) no-repeat left top;
}
div#header_right h2 {
/* this is where the site name is */
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(244,213,181);
	font-size: 18px;
	text-align: left;
	line-height: 25px;
	padding-left: 10px;
	padding-top: 15px;
}
div#content {
/* some air above and under menu and content */
	margin: 0 110px 0px 140px;
	height: auto;
	min-height: 743px;
	display: block;
	padding: 0;
	background: transparent /*url(https://rym-charabeh.net/rymcms/uploads/images/pages-photo-1.jpg) no-repeat 165px bottom*/;
}
div#main {
	width: 530px;
	height: auto;
	min-height: 715px;
	float: right;
	margin: -10px 0px 0px 0px;
	padding: 20px 5px 10px 10px;
	background-color: rgb(138,58,9);
	border-top: 10px solid #000;
	display: block;
}
div#sidebar {
/* set sidebar left. Change to right, float: right; instead, but you will need to change the margins. */
	float: left;
/* sidebar width, if you change this change div.back and/or div.back1 margins */
	width: 470px;
	height: 100%;
	/*min-height: 713px;*/
/* FIX IE double margin bug */
	display: /*inline*/block;
/* the 20px is on the bottom, insures space above footer if longer than content */
	margin: 5px 0px;
	padding: 0px;
/* you can set your own image here */
	/*background: url(https://rym-charabeh.net/rymcms/uploads/ngrey/mainrt1.gif) no-repeat right top;*/
	/*background-color: none;*/
}
div.footback {
/* keep footer below content and menu */
	clear: both;
/* this sets 10px on right to let the right image show, the balance 10px left on next div */
	padding: 0px 10px 0px 10px;
/* you can set your own image here */
	background-color: #000000;
}
div#footer {
	padding: 0px;
	height: 30px;
/* color of text, the link color is set below */
	color: rgb(205,150,116);
/* you can set your own image here */
	background-color: none;
}
div.leftfoot {
	float: left;
	width: 30%;
	margin-left: 20px
}
div#footer p {
/* sets different font size from default */
	font-size: 0.8em;
/* some air for footer */
	padding: 1.5em;
/* centered text */
	margin: 0;
}
div#footer p a {
/* footer link would be same color as default we want it same as footer text */
	color: rgb(244,213,181);
	text-decoration: none;
}
/* as we hid all hr for accessibility we create new hr with div class="hr" element */
div.hr {
	height: 1px;
	padding: 1em;
	border-bottom: 1px dotted black;
	margin: 1em;
}
/* relational links under content */
div.left49 {
/* combined percentages of left+right equaling 100%  might lead to rounding error on some browser */
	width: 70%;
}
div.right49 {
	float: right;
	width: 29%;
/* set right to keep text on right */
	text-align: right;
}
/********************CONTENT STYLING*********************/
/* HEADINGS */
div#content h1 {
/* font size for h1 */
	font-size: 2em;
	line-height: 1em;
	margin: 0;
}
div#content h2 {
	font-family: Arial, Helvetica, sans-serif;
	color: rgb(244,213,181);
/* font size for h2 the higher the h number the smaller the font size, most times */
	font-size: 1.5em;
	text-align: left;
/* some air around the text */
	padding-left: 0.5em;
	padding-bottom: 1px;
/* a larder than h1 line height */
	line-height: 1.5em;
/* and some air under the border */
	margin: 0 0 0.5em 0;
}
div#content h3 {
	color: #294B5F;
	font-size: 1.3em;
	line-height: 1.3em;
	margin: 0 0 0.5em 0;
}
div#content h4 {
	color: #294B5F;
	font-size: 1.2em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
div#content h5 {
	color: #294B5F;
	font-size: 1.1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
h6 {
	color: #294B5F;
	font-size: 1em;
	line-height: 1.3em;
	margin: 0 0 0.25em 0;
}
/* END HEADINGS */
/* TEXT */
p {
/* default p font size, this is set different in some other divs */
	font-size: 1em;
/* some air around p elements */
	margin: 0 0 1.5em 0;
	line-height: 1.4em;
	padding: 0;
}
blockquote {
	border-left: 10px solid #ddd;
	margin-left: 10px;
}
strong, b {
/* explicit setting for these */
	font-weight: bold;
}
em, i {
/* explicit setting for these */
	font-style: italic;
}
/* Wrapping text in <code> tags. Makes CSS not validate */
code, pre {
/* css-3 */
	white-space: pre-wrap;
/* Mozilla, since 1999 */
	white-space: -moz-pre-wrap;
/* Opera 4-6 */
	white-space: -pre-wrap;
/* Opera 7 */
	white-space: -o-pre-wrap;
/* Internet Explorer 5.5+ */
	word-wrap: break-word;
	font-family: "Courier New", Courier, monospace;
	font-size: 1em;
}
pre {
/* black border for pre blocks */
	border: 1px solid #000;
/* set different from surroundings to stand out */
	background-color: #ddd;
	margin: 0 1em 1em 1em;
	padding: 0.5em;
	line-height: 1.5em;
	font-size: 90%;
}
/* Separating the divs on the template explanation page */
div.templatecode {
	margin: 0 0 2.5em;
}
/* END TEXT */
/* LISTS */
/* lists in content need some margins to look nice */
div#main ul,
div#main ol,
div#main dl {
	font-size: 1.0em;
	line-height: 1.4em;
	margin: 0 0 1.5em 0;
}
div#main ul li,
div#main ol li {
	margin: 0 0 0.25em 3em;
}
/* definition lists topics on bold */
div#main dl {
	margin-bottom: 2em;
	padding-bottom: 1em;
	border-bottom: 1px solid #c0c0c0;
}
div#main dl dt {
	font-weight: bold;
	margin: 0 0 0 1em;
}
div#main dl dd {
	margin: 0 0 1em 1em;
}
/* END LISTS */


/******************************* MenuVertical *******************************/
/* d'après theme orangeclean */
#menu_vert {
   padding-left: 0;
   margin-left: 0px;
   z-index: 100;
   width: auto;
   display: inline;
}

#menu_vert li {
   list-style: none;
   margin: 0;
   display: block;
}

#menu_vert ul ul li {
   border: none;
}

/** fix stupid ie bug with display:block; **/
* html #menu_vert li a { height: 1%; } 
* html #menu_vert li hr { height: 1%; }
/** end fix **/

/* first level links */
div#menu_vert a {
   text-decoration:none;
   display: block;
   padding: 0.8em 0.5em 0.8em 15px;
   /* color: #cc6714;  */
   color: rgb(205,150,116);
   min-height:1em;
}

/* second level */
div#menu_vert ul ul a {
   padding: 0.6em 0.5em 0.6em 30px;
   /*background: url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_sub1.gif) no-repeat 5% 51%;*/
}

/* third level */
div#menu_vert ul ul ul a {
   padding: 0.6em 0.5em 0.6em 15px;
   /*background: url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_sub2.gif) no-repeat 12% 51%;*/
}

/* hover first level */
div#menu_vert ul a:hover {
   /*background: transparent url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_arrows2.gif) no-repeat 96% 51%;*/
   background: transparent url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_arrows2.gif) no-repeat 0px 51%;
   color: rgb(244,213,181);
}

/* hover second level */
div#menu_vert ul ul a:hover {
  /*background: transparent url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_sub1.gif) no-repeat 5% 51%;*/
   background: transparent url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_arrows2.gif) no-repeat 15px 51%;
  color: rgb(244,213,181);
}

/* hover third level */
div#menu_vert ul ul ul a:hover {
  /*background: transparent url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_sub2.gif) no-repeat 12% 51%;*/
   background: transparent url(https://rym-charabeh.net/rymcms/uploads/Clean_Orange/menu_arrows2.gif) no-repeat 30px 51%;
  color: rgb(244,213,181);
}

/* section header 1st level */
div#menu_vert li.sectionheader {
   border-right: none;
   padding: 0.6em 0.5em 0.6em 15px;
   background-color: none;
   line-height: 1em;
   margin: 0;
   text-align:left;
}

/* separator */
div#menu_vert li.separator {
   height: 1px !important;
   margin-top: -1px;
   margin-bottom: 0;
   padding:2px 0 2px 0;
   background-color: #000;
   overflow:hidden !important;
   line-height:1px !important;
   font-size:1px; /* for ie */
}

div#menu_vert li.separator hr {
   display: none;
}
}
/***************************** Fin MenuVertical **************************/

/************************** News *********************************/
div#news {
/* margin for the entire div surrounding the news items */
	margin: 2em 0 1em 1em;
/* border set here */
	border: 1px solid #909799;
/* sets it off from surroundings */
	background: #f5f5f5;
}
div#news h2 {
	line-height: 2em;
/* you can set your own image here */
	background: url(https://rym-charabeh.net/rymcms/uploads/ngrey/darknav.png) repeat-x left center;
	color: #f5f5f5;
	border: none
}
.NewsSummary {
/* padding for the news article summary */
	padding: 0.5em 0.5em 1em;
/* margin to the bottom of the news article summary */
	margin: 0 0.5em 1em 0.5em;
	border-bottom: 1px solid #ccc;
}
.NewsSummaryPostdate {
/* smaller than default text size */
	font-size: 90%;
/* bold to set it off from text */
	font-weight: bold;
}
.NewsSummaryLink {
/* bold to set it off from text */
	font-weight: bold;
/* little more room at top */
	padding-top: 0.2em;
}
.NewsSummaryCategory {
/* italic to set it off from text */
	font-style: italic;
	margin: 5px 0;
}
.NewsSummaryAuthor {
/* italic to set it off from text */
	font-style: italic;
	padding-bottom: 0.5em;
}
.NewsSummarySummary, .NewsSummaryContent {
/* larger than default text */
	line-height: 140%;
}
.NewsSummaryMorelink {
	padding-top: 0.5em;
}
#NewsPostDetailDate {
/* smaller text */
	font-size: 90%;
	margin-bottom: 5px;
/* bold to set it off from text */
	font-weight: bold;
}
#NewsPostDetailSummary {
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailCategory {
/* italic to set it off from text */
	font-style: italic;
	border-top: 1px solid #ccc;
	margin-top: 0.5em;
	padding: 0.2em 0;
}
#NewsPostDetailContent {
	margin-bottom: 15px;
/* larger than default text */
	line-height: 150%;
}
#NewsPostDetailAuthor {
	padding-bottom: 1.5em;
/* italic to set it off from text */
	font-style: italic;
}
/* more divs, left unstyled, just so you know the IDs of them */ 
#NewsPostDetailTitle {
}
#NewsPostDetailHorizRule {
}
#NewsPostDetailPrintLink {
}
#NewsPostDetailReturnLink {
}
div#news ul li {
	padding: 2px 2px 2px 5px;
	margin-left: 20px;
}
/*************************** Fin News ***************************/

/* Stylesheet: 1_Layout_rym Modified On 2015-11-03 09:13:35 */
