/* index.css - the CSS styles for the home page. */

/* Stuff for columns */

#left_side

	{

	float: left;

	width: 200px;

	}

#content

	{

	float: left;
	width: 298px;

	}
	
#content2

	{
	float: left;
	position: relative;
	margin-bottom: 10px;
	top: 0px;
	left: 50px;
	width: 589px;

	}	

#right_side

	{

	float: left;

	width: 211px;

	}

#main_box

	{

	width: 739px;

	}

/* we need this for IE 5.01 - otherwise the main_box does not expand to the

necessary height (unless fixed, this problem becomes even more acute 

weirdness as the method is enhanced */

#main_box

	{

/* Normally a Holly-style hack height: 1% would suffice but that causes 

IE 5.01 to completely collapse the main_box - instead we float it */

	float: left;

/* NB. possibly only IE 5.01 needs to get this float value - otherwise 5.5 sometimes 

(I saw it happen many moons ago) makes the width of main_box too small 

the float: none with the comment is ignored by 5.01,

5.5 and above see it and carry on about their business

It's probably fine to just remove it, but it's left here 

just in case that many moons ago problem rears its head again */

	float/**/: none;

	}

/* easy clearing */

#main_box:after

	{

	content: '[DO NOT LEAVE IT IS NOT REAL]'; 

	display: block; 

	height: 0; 

	clear: both; 

	visibility: hidden;

	}

#main_box

	{

	display: inline-block;

	}

/*\*/

#main_box

	{

	display: block;

	}

/* end easy clearing

#footer

	{

	clear: both;

	}

#header, #footer

	{

	width: 739px;

	}
*/
 
/* Other stuff */

div#testimonial {
    margin:             10px auto 3px auto;
    padding:            10px;
    border-top:         1px solid #02CE02;
    border-bottom:      1px solid #02CE02;
    text-align:         center;
    font-size:          10pt;
    background:         transparent url('../images/quote_open.gif') no-repeat scroll left top;
}

div#testimonial #testimonial-quote {
    background:         transparent url('../images/quote_close.gif') no-repeat scroll right bottom;
    padding:            0 15px;
    height:             40px;
}

/* for non-IE only - min-height hack */
html>body div#testimonial #testimonial-quote {

    height:             auto;

    min-height:         40px;

}

div#testimonial #testimonial-name {
    position:           relative;
    margin-top:         10px;
    left:               150px;
    text-align:         left;
    font-style:         italic;
    font-size:          9pt;
}

div#testimonial-footer {
    width:              100%;
    text-align:         right;
	right:				50px;
	font-size:          8pt;
    padding-bottom:     9px;
}

div#msg_board {
    margin:             10px 0;
    width:              211px;
    height:             97px;
    background:         #FFF url('../images/main_message_board.gif') no-repeat;
}

div#msg_board-content {
    position:           relative;
    color:              #6646CF;
    width:              125px;
    left:               10px;
    top:                35px;
    text-align:         right;
    overflow:           hidden;
}

div#msg_board-content #msg_board-register {
    font-size:          8pt;
}

div#fhm {
    margin:             10px 0;
    height:             122px;
    font-size:          8pt;
}

div#fhm .fhm-logo {
    float:              left;
    margin-right:       5px;
}

div#fhm .countries {
    font-size:          10pt;
    font-weight:        bold;
}

div#right_side a:link {
    color:              #FA0101;
}

div#right_side a:hover {
    color:              #02CE02;
}

div#right_side a:visited {
    color:              #CC0101;
}
