/*
//////////// Main Page layout settings /////////////////////////////////////////
*/

	/* body: Basic founding values used to setup the page */
	body {
		margin : 0px;
		padding : 0px;
		background-color : #FFFFFF;
	        color : #000000;
		width : 100%;
		height : 100%;
	}
	
	/* all images have no border */
	img { border : 0px; }
	
	/* page: central section position, design and layout settings */
	div.page {
		position : absolute;
		   /*background-image : url(img/line.gif);
	        background-repeat : repeat-x;
	        border-top :4px solid #C0C0C0;*/
	        width : 850px;
		margin-left : 5px;
	}

	/* page: centeral section position, design and layout settings 
	div.page {
		position : absolute;
	        background-image : url(img/bg.gif);
	        background-repeat : repeat-y;
	        border-right : 1px solid #000000;
	        width : auto;
		left : 0%;
		margin-left : 5px;
	}
*/

/*
//////////// Font design and display config ////////////////////////////////////
*/

	/* title-center: top margin */
	div.title-center 
	{
		/*position : absolute;*/
		 padding : 0px;
	        width : 100%;
	        text-align : center;
	}

	/* subtitle: top margin */
	div.subtitle {
	        padding : 0px;
		width 400px;
	}

	/* menu: position menu as a floating object so text can go around it */
	div.menu {
		float : left;
	       /* background-image : url(images/Market-Cross.gif);
	        background-repeat : repeat-y;*/
	        margin-right : 40px;
	}

	/* img: format images inside the menu section */
	div.menu div.link img {
		border : 0px;
		margin-bottom : 5px;
	}

	/* text: position and formatting of the font */
	div.text {
		/* Font formatting */
		font-family : arial, san serif;
		font-size : 80%;
		color : #000000;
			/* padding and margin works in a Top Right Bottom Left order*/
		padding : 0px 10px 0px 20px;
		width 400px;

	}
/* text: position and formatting of the font */
	div.text2 {
		/* Font formatting */
		font-family : arial, san serif;
		font-size : 120%;
		color :  #FF0000;
			/* padding and margin works in a Top Right Bottom Left order*/
		padding : 0px 0px 0px 0px;
		width 400px;

	}
/* text: position and formatting of the font */
	div.text_form {
		/* Font formatting */
		font-family : arial, san serif;
		font-size : 80%;
		color : #000000;
			/* padding and margin works in a Top Right Bottom Left order*/
		padding : 0px 10px 0px 250px;
		width 400px;

	}

	/*input: form items display*/
	input, textarea {
		border-top : 1px solid black;
		border-left : 1px solid black;
		border-right : 1px solid grey;
		border-bottom : 1px solid grey;
		margin-top : 5px;
	}

/*
//////////// Link formatting ///////////////////////////////////////////////////
*/

	a, a:visited {
		color : blue;
		text-decoration : none;
		font-size:80%;
	}
	a:hover {
		color : red;
	}
	

