@charset "UTF-8";
/* CSS Document */

body {
	font: 0.8em Verdana, Arial, Helvetica, sans-serif;
	background: #666666;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	text-align: center; /* this centers the container in IE 5* browsers. The text is then set to the left aligned default in the #container selector */
	color: #000000;
}

.oneColFixCtrHdr #container {
	position: relative;
	width: 780px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFFFFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	padding: 0;
	border: 1px solid #000000;
	text-align: left; /* this overrides the text-align: center on the body element. */
	vertical-align: top;
	background-image: url(../images/logo/fp_logo_05.png);
	background-repeat:repeat-y;
	background-position: 0px 400px;
}

.oneColFixCtrHdr #header {
	position: relative;
	background: #FFFFFF; 
	/* padding: 0 10px 0 20px;  /* this padding matches the left alignment of the elements in the divs that appear beneath it. If an image is used in the #header instead of text, you may want to remove the padding. */
	margin: 0px;
	padding: 0px;
	/* background-image: url(../images/logo/fp_logo_text.png); */
	background-repeat:no-repeat;
	height: 58px;
	vertical-align: bottom;
	border-bottom: solid 15px #333;
}

.oneColFixCtrHdr #header h1 {
	margin: 0; /* zeroing the margin of the last element in the #header div will avoid margin collapse - an unexplainable space between divs. If the div has a border around it, this is not necessary as that also avoids the margin collapse */
	padding: 20px 0; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	padding-left: 50px;
	/* height: 58px; */
}

.oneColFixCtrHdr #mainContent {
	/* padding: 0 20px; /* remember that padding is the space inside the div box and margin is the space outside the div box */
	margin: 0px;
	padding: 0px;
	padding-left: 30px;
	padding-right: 25px;
	padding-top: 20px;
	background: none;
	
	/*
	background-image: url(../images/logo/fp_logo_05.png);
	background-repeat:repeat-y;
	background-position: top left;
	/* background-position: 100px 100px; */
	vertical-align: top;
}
.oneColFixCtrHdr #footer {
	position: relative;
	padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	
	height: 40px;
	background:#FFFFFF;
	background-image: url(../images/FooterBackground_01.png);
	background-repeat: repeat-x;
	background-position:bottom;
}
.oneColFixCtrHdr #footer p {
	margin: 0; /* zeroing the margins of the first element in the footer will avoid the possibility of margin collapse - a space between divs */
	padding: 10px 0; /* padding on this element will create space, just as the the margin would have, without the margin collapse issue */
	
}

.oneColFixCtrHdr #footer #footerContent {
	
	/* padding: 0 10px; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background: none;
	/* width: 80%; */
	height: 40px;
	padding-top: 22px;
	color:#EEE;
	font-size: 12px;
	text-align: center;
	/* position: absolute;
	bottom: 0px;
	left: 0px;
	*/
}



/* Tabs */

.outerTabDiv {
	position: relative;
	height: 25px;
	padding-left: 12px;
	padding-right: 12px;
	border-top: none 3px gray;
	float: left;
	text-align: center;
	vertical-align: bottom;
	margin-right: 5px;
	
}

.leftTabDiv {
	position: absolute;
	left: 0;
	top: 0;
	width: 12px;
	height: 25px;
	background-image:url(../images/tabs/tab_l.gif);
	background-repeat: no-repeat;
}

.middleTabDiv {
	height: 25px;
	background-image:url(../images/tabs/tab_c.gif);
	background-repeat: repeat-x;
	background-position: top;
}

.rightTabDiv {
	position: absolute;
	right: 0;
	top: 0;
	width: 12px;
	height: 25px;
	background-image:url(../images/tabs/tab_r.gif);
	background-repeat: no-repeat;
}

.tabContentDiv {
	padding-top: 4px;
	margin-left: 0px;
	margin-right: 0px;
}

.tabContentDiv a {
	text-decoration: none;
	color: #333;
	font-size: 15px;
}


/* Hover */
.outerTabDiv:hover .leftTabDiv {
	background-image:url(../images/tabs/tab_hover_l.gif);
}

.outerTabDiv:hover .middleTabDiv {
	background-image:url(../images/tabs/tab_hover_c.gif);
}

.outerTabDiv:hover .rightTabDiv {
	background-image:url(../images/tabs/tab_hover_r.gif);
}

.outerTabDiv:hover .tabContentDiv {
	border-bottom: solid 2px #FFF;
}

.outerTabDiv:hover .tabContentDiv a {
	color: #FFF;
}

/* Selected tab */
.selected .leftTabDiv, .selected:hover .leftTabDiv {
	background-image:url(../images/tabs/tab_selected_l.gif);
}

.selected .middleTabDiv, .selected:hover .middleTabDiv {
	background-image:url(../images/tabs/tab_selected_c.gif);
}

.selected .rightTabDiv, .selected:hover .rightTabDiv {
	background-image:url(../images/tabs/tab_selected_r.gif);
}

.selected .tabContentDiv, .selected:hover .tabContentDiv {
	border-bottom: solid 2px #EEE;
}

.selected .tabContentDiv a, .selected:hover .tabContentDiv a {
	color: #FFF;
}


/* AP Divs */

#apLogo_topPart {
	position: absolute;
	width: 69px; /* 255px; */
	height: 58px; /* 77px */
	z-index:1;
	left: 0;
	top: 0px;
	background-image:url(../images/logo/fp_logo_01.png);
	background-repeat: no-repeat;
}

#apLogo_bottomPart {
	position:absolute;
	width:41px;
	height:39px;
	z-index:1;
	left: 0;
	top: 58px;
	background-image: url(../images/logo/fp_logo_03.png);
	background-repeat:no-repeat;
}

/* Not needed since bottomPart was given Background = white */
#apLogo_bottomPartBackground {
	position:absolute;
	width:20px;
	height:39px;
	z-index:1;
	left: 0;
	top: 58px;
	background: #FFF;
}


#apFalcoProfilText {
	position: absolute;
	width: 211px;
	height: 45px;
	z-index:1;
	left: 45px;
	top: 25px;
	background-image: url(../images/logo/fp_logo_textonly_whiteborder.png); /* url(../images/logo/fp_logo_textonly.png); */
	background-repeat: no-repeat;
}

#apMenu {
	position: absolute;
	width: 400px;
	
	z-index:1;
	left: 300px;
	bottom: 0px;
}

#apBottomPlupp {
	position: absolute;
	width: 11px;
	height: 9px;
	z-index:1;
	left: 0px;
	top: 0px;
	background-image: url(../images/logo/fp_logo_07.png);
	background-repeat: no-repeat;
	background-position: top left;
}


/* Common */
.portratt, .webdesignImage {
	float: left;
	padding-right: 10px;
}

.webdesignImage {
	float: none;
}

/* Page-specific */
.omossDiv {
	float: left;
	width: 340px;
}

.omossDiv.left {
	margin-right: 40px;
}


.webdesignDiv {
	float: left;
	width: 320px;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom: 30px;
}


h2 {
	margin-bottom: 6px;
}

.webdesignDiv h3 {
	margin-bottom: 3px;
}

.webdesignDiv.left {
	margin-right: 40px;
}

.webdesignDiv table td {
	vertical-align: top;
}



.divContactForm {
	float: left; 
	width: 300px;
	padding: 8px;
	border: solid 1px gray;
}

.contactForm input, .contactForm textarea {
	width: 95%;
}

.contactForm textarea {
	height: 100px;
}

.contactForm input.submit {
	width: auto;
}






.errorMessage 
{
	/* Added by Aram */
	color:red;
	font-weight:bold;
	font-size:11px;
	background-color: #FFCCFF;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
	border: thin solid #CC0000;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}

.successMessage 
{
	/* Added by Aram */
	color:green;
	font-weight:bold;
	font-size:11px;
	background-color: #09ffd1;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
	border: thin solid #006600;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}

.otherMessage 
{
	/* Added by Aram */
	color: navy;
	font-weight:bold;
	font-size:11px;
	background-color: #99CCFF;
	padding-top: 2px;
	padding-right: 4px;
	padding-bottom: 2px;
	padding-left: 4px;
	border: thin solid #0066FF;
	margin-top: 6px;
	margin-right: 0px;
	margin-bottom: 6px;
	margin-left: 0px;
}