﻿/*------------------------------------------------------------------
[ DEFAULT.CSS ] Main Stylesheet
--------------------------------------------------------------------

[Table of contents]

1.	RESET

2.	MAIN STYLES
2.a  Tags defaults
2.b  Base layout
2.c  Navigations
2.d  Elements, ID's & Classes

3.	FORMS
3.a  Form styles
3.b  Individual forms

4.	PLUGINS

5.	PRINT


/*------------------------------------------------------------------

1.	RESET
	Global reset for all HTML elements

------------------------------------------------------------------*/

@media handheld, projection, screen, print {

* { font-family: inherit; font-size: 100%; font-style: inherit; font-weight: inherit; margin: 0; outline: 0; padding: 0; vertical-align: baseline; }
html { height: 100% }
body { background: #fff; color: #000; font-size: 100.01%; min-height: 101%; text-align: left; position: relative; }
img, fieldset, abbr, acronym { border: 0 }
ul, ol { list-style: none }
table { border-collapse: collapse; border-spacing: 0; }
address, caption, cite, code, dfn, em, strong, th, var { font-style: normal; font-weight: normal; }
caption, th { text-align: left }
q:before, q:after, blockquote:before, blockquote:after { content: '' }
input, select, textarea, button { font-size: 1em; line-height: normal; width: auto; }
input, select { vertical-align: middle }
textarea { height: auto; overflow: auto; }
option { padding-left: 0.6em }
button { background: none; border: 0; cursor: pointer; text-align: center; }


} @media handheld, projection, screen {


/*------------------------------------------------------------------

2.	MAIN STYLES
	General definitions

--------------------------------------------------------------------

/*-------------------------------
2.a Tags defaults
---------------------------------
[?] Tags only. No classes or ID's here.
*/

body {
	color: #000;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	font-size: 75%;
	line-height: 1.33em;
	text-align: center;
}

strong { font-weight: bold }

em { font-style: italic }

/* Headlines */
h1, h2, h3, h4, h5, h6 {
	font-weight: normal;
	line-height: normal;
}

/* Anchors */
a:hover { color:#FF0000; text-decoration: underline }

#menuBlock
{
    background-color: #000000;
    padding: 0px; 
    margin: 0px;  
    float:left; 
    width:15%; 
    height:100%;
    min-height:768px;
}

 #menuBlock a
 {
     color:White;
 }
 
 /*-------------------------------
2.b Base layout
---------------------------------
[?] Mostly ID's. Classes & tags allowed.
*/

#header {
	background-color: #FFDDCC;
}

#footer {
	background-color:black;
	color:White;
}

.txt0 { color: #006ab4 }
.txt1 { color: #ef2e71 }
.txt2 { color: #a3c546 }

/*------------------------------------------------------------------

3.	FORMS
	Styles for forms only

--------------------------------------------------------------------

/*-------------------------------
3.a Form styles
-------------------------------*/

input.text, select.select, textarea.textarea
{
	border: 1px solid #999;
	color: #000;
}
input.text { width: 195px }
select.select { width: 200px }
textarea.textarea { width: 195px }

button.button {
	color: #000;
	height: auto; width: auto;
	line-height: normal;
	white-space: nowrap;
}

/* General forms */
form.form { /* nothing here */ }

form.form ol.fieldset {	list-style: none; }

form.form ol.fieldset li.field { margin: 1em 0; padding: 0 0 0px 0px; position: relative; }

form.form ol.fieldset li.field label { display: block; width: 100px; text-align: left; position: relative; top: 0px; left: 0 }

form.form ol.fieldset li.field input { width:250px; }

form.form ol.fieldset li.field textarea { width:250px; height:50px; }

/*-------------------------------
3.b Individual forms
-------------------------------*/




/*------------------------------------------------------------------

4.	PLUGINS
	Predefined utilities

--------------------------------------------------------------------

/*-------------------------------
Utility classes
-------------------------------*/

.l { text-align: left }
.c { text-align: center }
.r { text-align: right }

.wrap, .col { float: left;	display: inline; position: relative; }
.wrap { clear: both }

.clear { clear: both }
.fl { float: left }
.fr { float: right }
.hide, .hidden, .anchor, .skip { display: none }
.nomargin { margin-bottom: 0 !important }
.noborder { border: 0 !important }
.top { margin-top: 0 !important }

.replace, .br { display: block; font-size: 1%; line-height: 0; text-align: left; text-indent: -10000px; }

.hr { background: #ccc; height: 1px; margin: 1.5em 0; }
.hr hr { display: none }


/*-------------------------------
"Bars" navigation
---------------------------------
[?] EXAMPLE

Home | Services | About | Contact	*/

ul.bars li {display: inline; margin-left: -4px;}
ul.bars li.first {border: 0 !important;}
ul.bars li:before {content: "|"; padding: 0 4px;}
ul.bars li:first-child:before {content: ""; padding: 0 4px 0 0;}


/*-------------------------------
Clearfix
-------------------------------*/

.clearfix:after { clear: both; content: "."; display: block; height: 0; visibility: hidden; }
.clearfix { display: block }


/*-------------------------------
Images alignment classes
---------------------------------
[?] e  = east, n  = north, ne = north-east, sw = south-west ...etc.
*/

img.e, img.w, img.ne, img.nw, img.se, img.sw {display: block;}
img.e  { float: right;	margin: 1.5em 0 1.5em 1.5em;	}
img.w  { float: left;	margin: 1.5em 1.5em 1.5em 0;	}
img.ne { float: right;	margin: 0 0 1.5em 1.5em;	}
img.nw { float: left;   margin: 0 1.5em 1.5em 0;	}
img.se { float: right;	margin: 1.5em 0 0 1.5em;	}
img.sw { float: left;	margin: 1.5em 1.5em 0 0;	}



} @media print {

/*------------------------------------------------------------------

5.	PRINT
	Styles for print

------------------------------------------------------------------*/
/*
body { background: none; color: #000; font-family: "Helvetica Neue", Helvetica, Arial, sans-serif; font-size: 10pt; }
code, pre { font-family: "Courier New", Courier, mono }
img { float: left; clear: left; margin: 1.5em 1.5em 1.5em 0; }
a, a:link, a:visited { color: blue; text-decoration: underline; }
h1, h2, h3, h4, h5, h6 { color: #000; page-break-after: avoid; }
#nav, .nav, form, .skip { display: none }
*/

/*------------------------------------------------------------------
	END CSS
------------------------------------------------------------------*/

}/* end @media */

span.RequiredField
{
	color: Red;
	font-weight: bold;
}

span.errortext
{
	color: Red;
	font-size: medium;
}

a.MessageLink, a.MessageLink:visited, a.MessageLink:active
{
	color: #9b8c51;
	font-weight: bold;
	text-decoration: underline;
}
a.MessageLink:hover
{
	color: #ff0000;
	font-weight: bold;
	text-decoration: underline;
}


