/*
File Name: sitestyles.css
URL: http://www.gemsofhope.org/css/sitestyles.css
Standard CSS site styles for the Gems of Hoope web site
*/

/*
  Standard colours used in this site:
		Sand (orange-red): 			#FF6600
		GEMS red: 							#E5261D
		Dark grey: 							#7B7B7B
		Page background (grey): #999999
*/

/* page background and font style is set here */
body {
	color: #3f3f3f;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10pt;
	background-color: #999999;
	margin-top: 15px;
	background-image: url(../images/img-page-bkgd.jpg);
	background-repeat: repeat-x;
	}

.text-faq-questions {
	font-weight: bold;
	color: #EF261D;
}
	
.text-callout-centre-red {
	font-size: 14px;
	text-align: center;
	margin-top: 15px;
	margin-bottom: 15px;
	color: #E5261D;
}

/* Text boxes used on sidebar */	
.textbox-header-fill-red {
	background-image: url(../images/menu-red.jpg);
	background-repeat: repeat-x;
}

.textbox-header-fill-sand {
	background-image: url(../images/img-box-fill-sand.jpg);
	background-repeat: repeat-x;
}

.textbox-border {
	border: 1px solid #B6B6B6;
}

.textbox-padding {
	padding-top: 0px;
	padding-right: 7px;
	padding-bottom: 7px;
	padding-left: 7px;
}

.text-team-names {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	margin-top: 8px;
	border-top-style: none;
	border-left-width: 5px;
	border-left-style: solid;
	border-left-color: #FF9900;
}

/* common style settings for the header text */
h1, h2, h3, h4 {
	color: #E5261D;
	font-weight: normal;
	letter-spacing: 1px;
	font-family: Georgia, "Times New Roman", Times, serif;
	}
	
/* Individual header text styles based on common style above */
h1 {
	font-size: 16pt;
	font-weight: bold;
	margin-top: 5px;
	margin-bottom: 5px;
	line-height: 32pt;
}

h2 {
	font-size: 11pt;
	font-weight: bold;
	margin-bottom: 2px;
	margin-top: 15px;
	line-height: 22px;
	font-variant: normal;
}

h3 {
	font-size: 10pt;
	font-weight: bold;
	margin-bottom: 5px;
	margin-top: 1px;
	font-variant: normal;
}

/* Paragraph text style based on body style above */
p {
	line-height: 120%;
	font-size: 1em;
	margin-top: 3px;
	margin-bottom: 10px;
	}

/* standard link styles for the site */
a:link {												/* unvisited link - sand */
	color: #FF6600;
	text-decoration: underline;
	}
	
a:active {											/* link when clicked - sand */
	color: #FF6600;
	text-decoration: underline;
	}
	
a:visited {											/* visited link - dark grey */
	color: #7B7B7B;
	text-decoration: underline;
	}
	
a:hover {												/* on mouse-over state - GEMS red */
	text-decoration: underline;
	color: #E5261D;
	}	

/* Text style used on page banner at top beside the logo */
.banner-title {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: normal;
	color: #000000;
	}

/* 1px border style for any elemet. It's used to outline the entire page. */
.border-black {
	border: 1px solid #333333;
}

/* Form styles */
form {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	margin-bottom: 0px;
	margin-top: 0px;
}

form input {
	width:auto;
	font-size: 12px;
	margin-top: 3px;
	margin-right: 0px;
	margin-bottom: 5px;
	margin-left: 0px;
}

/* Define the image buttons used on the mailing list form */
#button-submit { 
height: 27px; 
width: 77px; 
overflow: hidden;
margin-right: 8px; 
background: url(../en/images/img-button-add.jpg) top left no-repeat; 
} 
  
#button-submit:hover{ 
background-position: bottom left; 
} 

#button-remove { 
height: 27px; 
width: 77px; 
overflow: hidden; 
background: url(../en/images/img-button-remove.jpg) top left no-repeat; 
} 
  
#button-remove:hover{ 
background-position: bottom left; 
}

/* Language link styles - used to select site language and sit in upper right corner of each page. */
.lang-links {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #E5261D;
	text-decoration: none;
}

a.lang-links:link {
	color: #E5261D;
	text-decoration: none;
}

a.lang-links:active {
	color: #E5261D;
	text-decoration: none;
}

a.lang-links:visited {
	color: #E5261D;
	text-decoration: none;
}

a.lang-links:hover {
	color: #FF9966;
	text-decoration: underline;
}

/* Style for text links located in the footer of every page for site navigation. */
.footer-links {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 10px;
}

/* define spacing around images to keep text and other elements from getting too close */
img.photos-tl {					/* top left placement */
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 0px;
}

img.photos-tr {					/* top right placement */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
}

img.photos-br {					/* bottom right placement */
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 10px;
}

img.photos-bm {					/* bottom middle placement */
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 10px;
}

img.photos-bl {					/* bottom left placement */
	margin-top: 0px;
	margin-right: 10px;
	margin-bottom: 0px;
	margin-left: 0px;
}

img.photos-rm {					/* right middle placement */
	margin-top: 10px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 10px;
}

img.photos-lm {					/* left middle placement */
	margin-top: 10px;
	margin-right: 20px;
	margin-bottom: 10px;
	margin-left: 0px;
}

img.photos-t {					/* top placement - margin on bottom only */
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 10px;
	margin-left: 0px;
}

img.photos-all {				/* margins on all sides of image */
	margin-top: 10px;
	margin-right: 10px;
	margin-bottom: 10px;
	margin-left: 10px;

/* unordered bullet list */
}li {
	color: #333333;
	list-style-image: url(../images/bullet-logo.jpg);
	list-style-type: none;
	margin-left: -5px;
	line-height: 120%;
}
.fill-photo-collage {
	background-image: url(../images/photo-collage-1.jpg);
	background-repeat: no-repeat;
	background-position: center center;
}

