/* This rule resets a core set of elements so that they will appear consistent across browsers. Without this rule, content styled with an h1 tag, for example, would appear in different places in Firefox and Internet Explorer because each browser has a different top margin default value. By resetting these values to 0, the elements will initially be rendered in an identical fashion and their properties can be easily defined by the designer in any subsequent rule. */
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
}
/* The body is the outermost layout component and contains the visible page content. Setting properties for the body element will help to create consistent styling of the page content and more manageable CSS. Besides using the body element to set global properties, it is common to use the body element to set the background color of the page and create a centered container for the page content to display. */
body {
	background:#E7E7E7 url(/library/headerbg1.gif) repeat-x top;
	z-index:-1;
	background-color:#E7E7E7;
  color: #515151;
  font-family: Calibri, Arial, Helvetica, Sans-Serif;
  font-size: 13px;
  line-height: 14px;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  padding: 0 0 0 0; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: center; /* Centers the page content container in IE 5 browsers. */
}
/* Commonly used to style page titles. */
h1 {
  color: #515151;
  font-size: 14px;
  font-weight: bold;
  line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	font-size:15px;
	font-weight:bold;
	color:#515151;
	height:20px;
	line-height:normal;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color:#6F6E6E;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
	color:#6F6E6E;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color:#6F6E6E;
  text-decoration: none;
}
/* Sets the style for a link that has focus. */
a:focus {
	color:#6F6E6E;
}
/* Sets the style for a link that is being activated/clicked. */
a:active {
	color:#6F6E6E;
}





#header {

  border-bottom: solid 1px #628152; /* Sets the bottom border properties for an element using shorthand notation */
  font-size: 18px;
  font-weight: bold;
   text-align: left;
   z-index:9;
}

#headercontainer {
	position:relative;
	margin:0 auto;
	width:796px;
	height:89px;

}
#head_left {
	float:left;
	display:block;
	width:617px;
	height:67px;
	background:url(/library/venlogo.jpg) no-repeat bottom left;
}


#head_right {
	font-family:calibri, Arial, Helvetica, sans-serif;
	font-size:x-small;
	float:left;
	display:block;
	width:179px;
	height:67px;
	background:url(/library/headerrightbar.gif) no-repeat 0px 18px;
}

#head_menu {
	display:block;
	width:169px;
	height:50px;
	padding:17px 0 0 10px;
	margin:0 0 0 0;
}

#head_menu ul {
	list-style-position:outside;
	padding: 0 0 0 0;
	margin:0;
}
#head_menu li {

	display:block;
	list-style-type:none;
	padding:3px 0 0 0;	
}
#head_menu a:link,#head_right a:visited {
	font-size:10px;
	letter-spacing: .05em;
	line-height:1;	
	font-weight:bold;
	color:#cb520d;
	text-decoration:none;
}
#head_menu a:hover {
	text-decoration:underline;
}


#page_home #sub_menu #menu_home a,
#page_support #sub_menu #menu_support a,
#page_consultancy #sub_menu #consultancy a,
#page_solutions #sub_menu #menu_solutions a,
#page_aboutus #sub_menu #menu_aboutus a,
#page_telecoms #sub_menu #menu_telecoms a {
	background-position:bottom;
	
}

/*==================================================================================================== navbar ===*/
#navbar {
	float:left;
	display:block;
	width:796px;
	height:22px;
	padding: 0 0 0 0;
	margin: 0 0 0 0;
			z-index:9;

}


/*==================================================================================================== nav_links ===*/
#nav_links {
	padding:0;
	margin:0;
	float:left;
	display:block;
	height:22px;	
letter-spacing: .03em;
}

#nav_links a:active{
	decoration:none;
	}

#nav_links ul {
  	font-family: "Trebuchet MS", Arial, Helvetica, Sans-Serif;
	font-size:11px;
	text-align:center;
	padding:0px 0 0 0;
	margin:0px 0 0 0;
	color:#FFFFFF;
	height:22px;	
	line-height:1.9;
/*	position:relative; */

}

#nav_links ul li {
display:block;
/*	position:relative; */

}


#nav_links span {
	display:none;
		padding-top:4px;
}



#nav_links a:link,
#nav_links a:visited {
	color:#6E6F6F;
	text-decoration:none;
}

#nav_links a:hover {
	color:#cb520d;
	text-decoration:none;
}

#nav_links a:active {

	color:#6d9863;
}

#nav_links li.current a:link,
#nav_links li.current a:visited {
	text-decoration:none;
}

#nav_links li.current a:hover {
	color:#cb520d;
	text-decoration:none;
}

#nav_links li.current a:active {
	color:#6d9863;
	background:url(../home_on.gif) repeat-x;
	
}

/* ACTIVE PAGES */
#nav_links a.StaticSelectedStyle:link,
#nav_links a.StaticSelectedStyle:visited {
	color:#6d9863;
	text-decoration:none;
	
}




/* This is a container for the page content. It is common to use the container to constrain the width of the page content and allow for browser chrome to avoid the need for horizontal scrolling. For fixed layouts you may specify a container width and use auto for the left and right margin to center the container on the page. IE 5 browser require the use of text-align: center defined by the body element to center the container. For liquid layouts you may simply set the left and right margins to center the container on the page. */
#outerWrapper {
  background-color: #E7E7E7;
  margin: 0 auto 0 auto; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  text-align: left; /* Redefines the text alignment defined by the body element. */
  width: 796px;

}
#hcontent {
  background-color: #E7E7E7;
  margin: 0 0 0 0; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
  width: 796px;
  height:455px;
}
#breadcrumb {
	float:left;
	display:block;
	width:796px;
	height:25px;


}
#breadcrumb ul {
	list-style-position:outside;
	padding: 0 0 0 0;
	margin: 0px 0 2px 4px;
}
#breadcrumb li {
	display:inline;
	list-style-type:none;
	margin-left:4px;

}
#breadcrumb a:link, #breadcrumb a:visited {
	float:left;
	display:block;
	font-family: arial, helvetica, sans-serif;
	font-weight:normal;
	font-size:9px;
	text-decoration:none;
	color:#838788;
	padding: 0px	2px 0 2px;	
}
#breadcrumb a:hover {
	color:#cb520d;
}

/* -------------------------------------page content starting with left menu -----------------------------*/

#outerWrapper #contentWrapper #leftColumn1 {
  background-color: #FFF;
  float: left;

 /* padding: 10px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 128px;


}


#menu {
	float:left;
	display:block;
	width:118px;
	padding: 5px 5px 5px 5px;
	margin: 0 0 0 0;
	border-bottom:solid #E7E7E7 10px;

	}
	
	
#menu ul {
	padding:0;
	margin:0;
	
		}
	
#menu li {		
	float:left;
	display:block;
	list-style-type:none;
  	font-family: "Trebuchet MS", Arial, Helvetica, Sans-Serif;
	font-size:10px; 
	font-weight:normal;
	font-variant:normal;
	color:#666666;
	width:118px;


}
#menu a:hover, a:active
{
	text-decoration:underline;
}	

#menu a:link.s001, #menu a:visited.s001 {

	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:13px;
	text-decoration:none;
	padding-left:8px;
	padding-top:6px;
	background: url(/library/menuleftli1.gif) no-repeat;
	z-index:9;	
	margin-bottom:2px;
	letter-spacing: .03em;	
}
#menu a:hover.s001 {
	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:13px;
	text-decoration:none;
	padding-top:6px;
	background: url(/library/contactus.gif) no-repeat;
	z-index:9;	
	margin-bottom:2px;
	letter-spacing: .03em;	
}
#menu a:link.s001o, #menu a:visited.s001o {
	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:13px;
	text-decoration:none;
	padding-left:12px;
	padding-top:6px;
	background: url(/library/contactus.gif) no-repeat;
	z-index:9;	
	margin-bottom:2px;
	letter-spacing: .03em;	
}
#menu a:link.s002, #menu a:visited.s002, #menu a:active.s002 {
	display:block;
	font-weight:bold;
	font-size:11px;
	padding-left:8px;
	line-height:17px;	
	color:#515151;
	margin-bottom:4px;
	
}
#menu a:hover.s002
{
	display:block;
	font-weight:bold;
	font-size:11px;
	padding-left:8px;
	line-height:17px;	
	color:#515151;
	background:#FFFFFF;
	text-decoration:underline;
	background: url(/library/arrowsideorange.gif) no-repeat 0px 5px;
	z-index:9;	
		margin-bottom:4px;

}	

#menu a:link.s002v, #menu a:visited.s002v {
	display:block;
	font-weight:bold;
	font-size:11px;
	padding-left:8px;
	line-height:17px;
	color:#515151;
	background: url(/library/arrowdowngrey.gif) no-repeat  -1px 7px;
	z-index:9;		
		margin-bottom:4px;

}


#menu a:link.s002o, #menu a:visited.s002o {
	display:block;
	font-weight:bold;
	font-size:11px;
	padding-left:8px;
	line-height:17px;
	color:#515151;
	background: url(/library/arrowsideorange.gif) no-repeat 0px 5px;
	z-index:9;	
		margin-bottom:4px;
	
}


#menu a:link.s003, #menu a:visited.s003, #menu a:active.s003 {
	display:block;
	font-weight:bold;
	font-size:10px;
	padding-left:15px;
	line-height:19px;
	color:#515151;
}

#menu a:link.s003v, #menu a:visited.s003v {
	display:block;
	font-weight:bold;
	font-size:10px;
	padding-left:15px;
	line-height:19px;
	color:#515151;
	background: url(/library/arrowdowngrey.gif) no-repeat 5px 8px;
	z-index:9;		
}
#menu a:link.s003o, #menu a:visited.s003o {
	display:block;
	font-weight:bold;
	font-size:10px;
	padding-left:15px;
	line-height:19px;
	color:#515151;
	background: url(/library/arrowsideorange.gif) no-repeat 6px 6px;
	z-index:9;		
}
#menu a:hover.s003 {
	display:block;
	font-weight:bold;
	font-size:10px;
	line-height:19px;
	padding-left:15px;
	color:#515151;
	text-decoration:underline;
	background: url(/library/arrowsideorange.gif) no-repeat 6px 6px;
	z-index:9;		

}

#menu a:link.s004, #menu a:visited.s004 {
	display:block;
	font-weight:bold;	
	font-size:9px;
	padding-left:22px;
	line-height:19px;	
	color:#515151;
}
#menu a:link.s004v, #menu a:visited.s004v {
	display:block;
	font-weight:bold;
	font-size:9px;
	padding-left:22px;
	line-height:19px;	
	color:#515151;
	background: url(/library/arrowdowngrey.gif) no-repeat 15px 8px;
	z-index:9;		
}
#menu a:link.s004o, #menu a:visited.s004o {
	display:block;
	font-weight:bold;
	font-size:9px;
	padding-left:22px;
	line-height:19px;	
	color:#515151;
	background: url(/library/arrowsideorange.gif) no-repeat 16px 6px;
	z-index:9;		
}
#menu a:hover.s004 {
	display:block;
	font-weight:bold;	
	font-size:9px;
	padding-left:22px;
	line-height:19px;	
	color:#515151;
	background: url(/library/arrowsideorange.gif) no-repeat 16px 6px;
	z-index:9;	
	text-decoration:underline;	
}

#powerbtns {
	display:block;
	float:left;
	display:block;
	width:118px;
	padding: 5px 5px 0px 5px;
	margin: 0 0 0 0;
	background:#FFFFFF;
	border-bottom:solid #E7E7E7 10px;
	}
#powerbtns ul {
	padding:0px 0 0px 0px;
	margin:0;
	}
	
#powerbtns li {		
	float:left;
	display:block;
	list-style-type:none;
	font-family: Arial, Helvetica, Sans-Serif;
	font-size:11px; 
	font-weight:normal;
	font-variant:normal;
	color:#666666;
	height:25px;
	width:118px;
	background:#FFFFFF;
	padding-bottom:5px;

}



#powerbtns a:link.voipsolutionsstore, #powerbtns a:visited.voipsolutionsstore {
	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:14px;
	text-decoration:none;
	padding-left:12px;
	padding-top:6px;
	background: url(/library/voip_solutions_store.gif) no-repeat;
	z-index:9;	
}
#powerbtns a:hover.voipsolutionsstore, a:active.voipsolutionsstore
{
	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:14px;
	text-decoration:none;
	padding-left:12px;
	padding-top:6px;
	background: url(/library/menuleftli1.gif) no-repeat;
	z-index:9;	
}	

#powerbtns a:link.contactus, #powerbtns a:visited.contactus {
	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:14px;
	text-decoration:none;
	padding-left:12px;
	padding-top:6px;
	background: url(/library/contactus.gif) no-repeat;
	z-index:9;	
}
#powerbtns a:hover.contactus, a:active.contactus
{
	display:block;
	height:25px;
	color:#FFFFFF;
	font-weight:bold;
	font-size:14px;
	text-decoration:none;
	padding-left:12px;
	padding-top:6px;
	background: url(/library/menuleftli1.gif) no-repeat;
	z-index:9;	
}	

/* -------------------------------------------- end of common elements before main content ---------------------*/



/* -------------------------------------------- now the footer  ---------------------*/

/* Using floated elements and a clear float class is a common method to accomplish multiple column tableless layouts. If floated elements are used without being cleared the elements following will wrap around the floated element. This class should be applied to an element after the last floated element and before the close of the container with floated elements. */
#outerWrapper #contentWrapper .clearFloat {
  clear: both;
  display: block;
}
#footer-sub{
	font-family: arial, helvetica, sans-serif;
	color:#999999;
	font-size:12px;
	padding: 0 0 0 0;
	text-align:center;
}

 a:link.btn, a:visited.btn {
	display:block;
	height:18px;
	width:113px;
	color:#FFFFFF;
	font-weight:bold;	font-size:13px;
	text-decoration:none;
	padding-left:8px;
	padding-top:3px;
	background: url(/library/btnblack.gif) repeat-x;
}
 a:hover.btn, a:active.btn {
	display:block;
	height:18px;
	width:113px;
	color:#FFFFFF;
	font-weight:bold;	font-size:13px;
	text-decoration:none;
	padding-left:8px;
	padding-top:3px;
	background: url(/library/btnorange.gif) repeat-x;
}