
/* ------------------------------------------------------------------------
	File Format:
	
	Any comment can appear before the first "Colour Start" comment.  
	Each colour should be described by 4 lines:

		1. A "Colour Start" comment
		2. A description of the colour
		3. The elements, classes, and id's that that colour applies to
		4. The colour itself written as an RGB value like this: { color: #XXXXXX; }	
   		(Note: this means common english names like "white" and "black" are not
   		acceptable, use #ffffff and #000000)
   		
   Any comments can appear between colour descriptions (after the RGB value but
   before the next "Colour Start" tag.
   
   To change the colour for a group of elements, modify only the 6 digits after 
   the "color:" tag.  Ensure that the 6 digits are preceeded by a # and 
   followed by a ;
------------------------------------------------------------------------ */



/* Colour Start */
/* Main Text Colour */
body, body a, body a.hover, .forminput
{ color: #540024; }

/* Colour Start */
/* Dark Text Colour */
.title_text, .navigation *, .navigation_item, .navigation_item_chosen, .linklist_head *, .news_title, .title_language *
{ color: #ff549c; }

/* Colour Start */
/* Light Text Colour */
.title_quote, .news_date 
{ color: #ff98c4; }



/* Colour Start */
/* Dark Border Colour */
.col_data, .mainbody, .navigation_item, .navigation_item_chosen, .linklist_head, .retirement
{ border-color: #ff549c; }




/* Colour Start */
/* Body Background Colour */
body, .navigation_item {
/*{ background-color: #ffffff; }*/
	background-image: url(http://www.alialegs.com/files/img/back_lighter.jpg);
	background-repeat: repeat-y;
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;	
}

/* Light Background Colour */
.light, .col_data, .mainbody, .navigation_item_chosen, .navigation_item a:hover {
/*{ background-color: #ffffff; }*/
	background-image: url(http://www.alialegs.com/files/img/back_light.jpg);
	background-repeat: repeat-y;
	background-size: cover;
	background-attachment: fixed;
	background-position: top center;	
}

/* Colour Start */
/* Medium Bright Background Colour */
.entry_list a:hover, .linklist_head, .linklist_item a:hover, .linklist_item_chosen a, .guestbookentry, .guestbookinputsubmit, .guestbookinputname, .guestbookinputmessage, .entry_nextprev a:hover, .entry_comment_add a:hover
{ background-color: #fff6fa; }

/* Colour Start */
/* Medium Background Colour */
.medium, .guestbookbottom, .forminput, .alternate
{ background-color: #f3e8ed; }

/* Colour Start */
/* Darker Background Colour */
.dark, .linklist_head a:hover
{ background-color: #ded8da; }

/* Colour Start */
/* Form input background colour */
input, textarea, input.alternate, textarea.alternate
{ background-color: #ffffff; }




/* The following colour entries are structural, do not edit them */


/* Colour Start */
/* Black Border Colour */
.nothing
{ border-color: #000000; }

/* The following is an IE hack.  By forcing a border to be drawn we ensure proper
   formatting.  The light border should be the same colour as the light background
*/
/* Colour Start */
/* Light Border Colour */
* html .title
{ border-color: #ffffff; }

