body {
	margin: 0px;
	background-color: #333333;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
}
table.linkcontainer td{
	background-color: #000000;
	filter:alpha(opacity=70);
	opacity: .7;
	-moz-opacity: .7;
}
td.logo_area{
	border-top-width: 0px;
	border-right-width: 5px;
	border-bottom-width: 0px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #FFFFFF;
	border-right-color: #FFFFFF;
	border-bottom-color: #FFFFFF;
	border-left-color: #FFFFFF;
}
td.middle_spacer {
	width: 800px;
	background-color: #666666;
}
td.shadow_right {
	background-image: url(../images/border_shadow_l.jpg);
	background-repeat: repeat-y;
	background-position: left;
}
td.shadow_left {
	background-image: url(../images/border_shadow_r.jpg);
	background-repeat: repeat-y;
	background-position: right;
}
td.body_content {
	padding: 5px;
	/*background-image: url(../images/bg_content.jpg);*/
	background:#FFFFFF;
	background-repeat: repeat;
}
td.below_header{
	background-color: #1F1F1F;
	height: 50px;
	color: #CCCCCC;
	padding: 5px;
}
td.main_content_box {
	background-color: #FFFFFF;
}

td.horizontal_column {
	background-color: #000000;
	border-top-width: 15px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #000000;
	border-bottom-color: #000000;
	border-left-color: #000000;
	height: 150px;
	display: table-cell;
	vertical-align: top;
}
td.bottom_link_container {
	background-color: #000000;
	text-align: center;
	color: #FFFFFF;
	padding: 5px;
}

td.horizontal_center {
	background-color: #000000;
	border-top-width: 15px;
	border-right-width: 0px;
	border-bottom-width: 1px;
	border-left-width: 0px;
	border-top-style: solid;
	border-right-style: solid;
	border-bottom-style: solid;
	border-left-style: solid;
	border-top-color: #000000;
	border-right-color: #333333;
	border-bottom-color: #000000;
	border-left-color: #333333;
	height: 150px;
	display: table-cell;
	vertical-align: top;
	background: url(../images/header_bg.jpg) no-repeat;
}
td.header_column {
	height: 100px;
	vertical-align: middle;
	color: #FFFFFF;
	font-size: large;
	background-image: url(../images/header2_bg.jpg);
	background-position: top;
}
td.left_content {
	width: 155px;
	padding: 5px;
	vertical-align: top;
	background-image: url(../images/bg_content.jpg);
	background-repeat: repeat;
}

a.main_link:active,a.main_link:visited,a.main_link:link{
	font-weight: bold;
	text-decoration: none;
	display: block;
	width: 100%;
	color: #FFFFFF;
	line-height: 50px;
}
a.main_link:hover{
	background-color:#333333;
	color: #FFFFFF;
}
a.bottom_link:active,a.bottom_link:visited,a.bottom_link:link{
	font-weight: bold;
	text-decoration: none;
	color: #FFFFFF;
}
a.bottom_link:hover{
	color: #CCCCCC;
}
div.bottom_content{
	color: #FFFFFF;
	padding: 5px;
}
div.navigation {
	height: 50px;
	vertical-align: middle;
	text-align: center;
}


#navigacija {
	clear: left;
	float: left;
	width: 150px;
	margin: 0 0 10px 0;
	padding: 0;
	font-size: 0.9em;
}

#navigacija ul {	
	list-style: none;
	width: 150px;
	margin: 0 0 3px 0;
	padding: 0;
	font-size: 1.1em;
}	

#navigacija li {
	margin-bottom: 4px;
}

#navigacija li a, #navigacija li a:visited {
	text-align: right;
	min-height: 20px;
	text-decoration: none;
	color: #fff;
	display: block;
	padding: 6px 8px 6px 10px;
	background: #194C72;
}	
	
#navigacija li a:hover {
	background: #7DB0D8;
	color: #FFDBAB;
}

/*XXXXXXXXXXXX Primary top nav rules XXXXXXXXXXX*/

.nav {
	position: relative;
	/*background: #def;*/
	border: 0px solid #888; /* borders the bottom of the top nav */
	border-width: 0px 0;
	width: 100%;
	margin-top:-11px;
	

	
	
	}	

.button {
	width: 100px;
	float: left;
	list-style-image:none;
	list-style:none;
	list-style-type:none;
	}

.parent {position: relative;}
/* this parent div does not provide "sticky hovering", but instead fixes a
strange bug in Op7. When an element serves as a hovered popup "parent" element,
that element must not also be floated or all heck breaks loose in Opera 7.
To prevent this, we have floated the top level list items, while nesting
hoverable parent divs inside that are then hovered to generate the dropdowns.
Thus the ugly (but interesting) Op7 bug is defeated. */

.floatfix {margin-right: -3px;}
/* this fixes the IE 3px bug that is common in this type of float arrangement */

/*XXXXXXXXXXXX Primary dropdown/flyout rules XXXXXXXXXXX*/

.dropdown { /* rules for dropdown div */
	width: 250px;
	position: absolute;
	left: -3000px;
	top: auto; /* puts dropdowns directly under top nav */
	text-align: left; /* needed because IE misapplies text centering to boxes */
	background: url(images/bgfix.gif);
	}

.dropdown div {
	width: 220px;
	position: absolute;
	left: -3000px;
	top: 0;
	background: url(images/bgfix.gif);
	text-align: left; /* needed because IE misapplies text centering to boxes */
	}

/* The margins on the UL's replace the div paddings to create "sticky hovering"
zones,  and the margins should "fill" the divs, making the IE BG fix unnecessary.
Unfortunately the BG fix is still needed, altho this method does eliminate
possible box model problems */

.dropdown ul {
  width: 189px; /* tweaked so that dropdowns appear to "line up" with top links */
  margin: 0 30px 30px 30px; /* creates "sticky hovering" zones for dropdowns */
  border: 0px solid #888;
  border-width: 0px 0px 0;
  	list-style-image:none;
	list-style:none;
	list-style-type:none;
  } /* borders sides and top of the dropdowns and flyouts; links provide the bottom border */

.dropdown div ul {margin: 30px 30px 30px 0;} /* creates "sticky hovering" zones for flyouts */

.seven .dropdown ul {width: 190px;} /* modifies width for rightmost "visible" dropdown (tweak) */

.seven .dropdown div ul {margin: 30px 0 30px 30px; position: relative;} /* rule reversal for "visible" right drop flyouts */

.nav li {text-align: center;}

.nav a {
  display: block;
  color: #FFF;
	font-weight: bold;
	font-size: 1em;
	text-decoration: none;
	padding: 6px 0 5px;
	border-right: 0px solid #888;  /* makes the dividers between the top nav links */
	
	}
	
	.nav a.mlnk:hover {
	background-color:#333333;
	color: #FFFFFF;	
	}
	
	.nav a.mlnk {
	background-color: #000000;
	filter:alpha(opacity=70);
	opacity: .7;
	-moz-opacity: .7;
		padding: 15px 5px 15px 5px;

	}

.seven a {border-right: 0;} /* kills right border on last top link */

.nav ul ul a {
  color: #fff;
  border-right: 0; /* negates right border for dropdowns and flyouts */
  border-bottom: 0px solid #888;  /* borders the bottoms of the dropdown and flyout links */
  }
  
 .nav ul ul a.last {
  border-bottom: 0px solid #888;  /* borders the bottoms of the dropdown and flyout links */
  }
  
   

.dropdown li {
  position: relative;
  vertical-align: bottom; /* IE5/win bugfix */
  }

.parent:hover {background-image: url(images/bgfix.gif);}
/* this hover calls a transparent GIF only to defeat the IE failed hover bug. Any
background change on hovering div.parent will make IE obey and display the dropdown.
While the call itself will fix the bug, make sure you actually call a real image
file so that your site error logs will not fill with failed image calls. */

.parent:hover div.dropdown {left: -31px;} /* hover rule for dropdowns */
/* extra pixel makes dropdowns "line up" with top links */

.dropdown li:hover div { /* hover rule for flyouts */
	left: 180px; /* this value controls the amount of flyout "overlap" */
	top: -26px; /* this value controls the amount of flyout vertical offset */
	}

.seven li:hover div { /* reversed flyout rules for rightmost drop flyouts */
	left: -210px;
	top: -26px;
	}

.nav div.mini-zone { /* special hover zone that covers the "danger corner" */
  padding: 0;
  width: 15px;
	height: 15px;
	font-size: 1px;
	left: -3000px;
	bottom: -15px;
	top: auto;
	background: url(images/bgfix.gif);
	}

.nav .dropdown li:hover div.mini-zone { /* hover rule for mini-zones */
	left: auto;
	right: 8px;
	top: auto;
	}

.nav .seven li:hover div.mini-zone { /* reversed hover rule for rightmost drop mini-zones */
	left: 8px;
	}

.dropdown li:hover {background: #235;} /* hover color effect on dropdown links */

.dropdown div li:hover {background: #235;} /* hover color effect on flyout links */


/*first box styling*/
div.dropdown li {
text-align:left;
padding-left:15px;
background:#333;
color:#fff;
}


/*flyout boxes styling*/
.dropdown div ul li a {

}

/*XXXXXXXXXXX Primary dropdown backgrounds XXXXXXXXXX*/
.zero ul {background: #790000;}
.one ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #d79b00;}
.two ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #459;}
.three ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #4a3;}
.four ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #790000;}
.five ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #d79b00;}
.six ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #459;}
.seven ul {background: url('http://www.frankdoor.com/beta/images/navbg-steel.jpg') no-repeat #4a3;}

.dropdown div ul {background: #459;} /* colors BG of flyouts */
.dropdown div ul a {color: #fff;} /* colors text of  flyouts */


/*XXXXXXXXXX z-index rules for top nav XXXXXXXXXXX*/
.zero {z-index: 9;}
.one {z-index: 10;}
.two {z-index: 20;}
.three {z-index: 30;}
.four {z-index: 40;}
.five {z-index: 50;}
.six {z-index: 60;}
.seven {z-index: 70;}

.seven:hover {z-index: 50;}
/* this last is a special trick that reverses the stacking order of the rightmost
top link when it or its children are hovered. This, and the previous rules work
together so that when a user is on the top link of any flyout, they can move
vertically to the top link directly above and not have the sticky hoivering zone
on the flyout get in the way of hovering that top link. */


/*XXXXXXXXXXX Special fixes XXXXXXXXXXX*/

/* This is to hide the following from IE/Mac. \*/
* html .button .dropdown li {
height: 1%;
margin-left: -16px;
mar\gin-left: 0;
}
/* */

* html .nav a
 {height: 1%;}

/* The first 2 rules above fix "bullet region" problems in IE5.x/win,
and the 2nd is to make all links fully clickable. */

.brclear { /* Use a break with this class to clear float containers */
clear:both;
height:0;
margin:0;
font-size: 1px;
line-height: 0;
}

/*\*/ /*/
.nav .dropdown, .nav .dropdown div {width: 189px;}
.nav .button .dropdown ul {margin: 0px;}
.nav .dropdown, .nav .dropdown div {position: static;}
.nav .dropdown ul {border: 0;}
.mini-zone {display: none;}
/* this rule block "dumbs down" the nav for IEmac */

.images {
float:left;
margin:5px;
border:0px solid navy;
}
/*
.images:hover {
float:left;
margin:5px;
border:2px solid white;
}
*/

.clr {
clear:right;
}
. cll {
clear:left;
}
.clb {
clear:both; 
}
.product_imgdiv {
float:left;
width: 400px;
min-height:220px;
border:0px solid;
}
.product_img {
float:left;
min-height:275px;
border:0px solid;

}
.product_imgthumb {
float:right;
width:150px;
height:130px;
border:0px solid #BCD2E6;
margin:0px 0px 10px 10px;

}
.product_text {
float:right;
width:320px;
border:0px solid;
padding:8px 5px 0px 5px;
font-size:14px;
font-weight:bold;
}
.product_button {
float:left;
width:94px;
height:94px;
border:0px solid;
margin:15px 20px 40px 20px;
}
.features_div_l {
width:220px;
min-height:100px;
border:0px solid;
background:#eee;
margin-left:-50px;
padding:10px;
}
.features_div_r {
width:220px;
min-height:100px;
border:0px solid;
margin-left:40px;
background:#eee;
padding:10px;
}
.features_text {
margin-left:0px;
width:220px;
}
.features_text_long {
float:left;
margin-left:10px;
width:520px;
}
.product_container {
width:740px; margin-left:-15px; margin-right:0px; min-height:370px; background:url('../images/skymtn.png') top right no-repeat; border:0px solid; padding:15px; 
}
.button_container {
width:765px; height:130px; background:url('../images/prodbotbg.png'); margin-top:-10px;
}
.product_title{
height: 78px; line-height: 45px; padding-left:20px; font-family:Arial Rounded MT Bold; margin-bottom:0px; margin-top:0px; background: #F4F7FB url('../images/prodtitlebg.png') bottom left no-repeat; color: #eee;
}
.pline_title {
line-height: 40px; padding-left:20px; font-family:Arial Rounded MT Bold; color:#294d97; background: url('../images/titbg.png') no-repeat; margin-bottom:0px; margin-top:0px;
}
.feat_title {
height: 50px; line-height: 45px; padding-left:20px; font-family:Arial Rounded MT Bold; margin-bottom:0px; margin-top:20px; margin-left:-15px; background: #F4F7FB url('../images/prodtitlebg.png') bottom left no-repeat; color: #eee; width:770px;
}
.features_info {
width:228px; height:220px; border:0px solid #000;; float:left; margin:5px 5px 5px 5px; padding:10px; background: url('../images/featbg.png')
}
.features_info_long {
width:770px; height:150px; border:0px solid #000;; float:left; margin:5px; padding:5px;
}

.pname {
color:#CC0000; font-family:Arial Rounded MT Bold; font-size:18px; margin-top:0px;
}

/* navigation */
	
	#nav {
		float: left;
		width: 790px;
		margin: 0;
		padding: 0;
		list-style: none;
		background: url(../images/ntabbg.png) repeat-x top right;
		/*border-right:2px solid #000;
		border-left:2px solid #000;*/
		}
	
	#nav ul {
	padding-left:60px;
	}
	
	#nav li { 
		float: left;
		margin: 0;
		padding: 0;
		}

	
	#nav a {
		float: left;
		display: block;
		padding: 6px 60px 6px 5px;
		text-decoration: none;
		font-weight: normal;
		font-size: 14px;
		color: #fff;
		background: url(../images/ntabslant.png) no-repeat top right;
		}
		
	#nav a:hover {
			background: url(../images/ntabslantover.png) no-repeat top right;
			color:#eee;

	}
	
	
	#nav #nav-1 a {
		padding-left: 20px;
		}
	
	/*#nav a:hover {
		color: #5C70DA;
		}*/
		
	#tabs1 {
      float:left;
      width:770px;
      margin-left:-15px;
	  background:#F4F7FB;
      font-size:93%;
      line-height:normal;
	  border-bottom:1px solid #BCD2E6;
	  margin-bottom:10px;
      }
    #tabs1 ul {
	  margin:0;
	  padding:10px 10px 0 10px;
	  list-style:none;
      }
    #tabs1 li {
      display:inline;
      margin:0;
      padding:0;
      }
    #tabs1 a {
      float:left;
      background:url("../images/tableft1.gif") no-repeat left top;
      margin:0;
      padding:0 0 0 4px;
      text-decoration:none;
      }
    #tabs1 a span {
      float:left;
      display:block;
      font-size:12px;
      background:url("../images/tabright1.gif") no-repeat right top;
      padding:5px 15px 4px 6px;
      color:#627EB7;
      }
    /* Commented Backslash Hack hides rule from IE5-Mac \*/
    #tabs1 a span {float:none;}
    /* End IE5-Mac hack */
    #tabs a:hover span {
      color:#627EB7;
      }
    #tabs1 a:hover {
      background-position:0% -42px;
      }
    #tabs1 a:hover span {
      background-position:100% -42px;
      }
      
.hidedivv { width: 790px; display:none; border:0px solid; margin-left:-15px; background:url('../images/skymtn.png') no-repeat; padding-top:10px; }

.hidedivv2 { width: 790px; display:none; border:0px solid; margin-left:-15px; background:url('../images/skymtn.png') bottom no-repeat; padding-top:10px; }

.ftitle {
font-family:Arial Rounded MT Bold; font-size:18px; margin-top:15px;
}

.fsubtit {
margin:5px 5px 5px 0px;
font-family:Arial Rounded MT Bold; font-size:18px;

}

.hide {
display:none; }

.td {
background:#ccc; padding:5px;
border:2px solid navy;
}
.td1 {
background:#ccc; padding:5px;
border:2px solid navy;

}
