/* 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 {
	color: #2c2c2e;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	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. */
	background: #FFFFFF;
}
/* Commonly used to style page titles. */
h1 {
	color: #990000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Commonly used to style section titles. */
h2 {
	color: #990000;
	font-size: 14px;
	font-weight: bold;
	line-height: 14px;
}
/* Sets the style for unvisited links. */
a,  a:link {
	color: #000099;
	font-weight: bold;
	text-decoration: none;
}
/* Sets the style for visited links. */
a:visited {
  color: #5f519e;
  font-weight: bold;
  text-decoration: none;
}
/* Sets the style for links on mouseover. */
a:hover {
	color: #000099;
	text-decoration: underline;
}
/* Sets the style for a link that has focus. */
a:focus {
	color: #000099;
}
#fullWidthHeader {
	border-bottom: solid 1px #656586; /* Sets the bottom border properties for an element using shorthand notation */
	font-size: 18px;
	font-weight: bold;
	height: 100px;
	line-height: 15px;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	text-align: left;
	margin-right: auto;
	margin-left: auto;
	background: #006699 url(../../images/back.png) repeat-y;
	margin-bottom: 5px;
	width: 100%;
}
#fullWidthHeader #rightnav {
  height: 20px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
  padding: 0px 10px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
  width: 960px;
}
#fullWidthHeader #rightnav #rightnavbar {
	float: right;
	height: 20px;
	width: 400px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 500;
	text-align: right;
	color: #006600;
}
#fullWidthHeader #nav {
	height: 30px;
	margin-left: auto;
	margin-right: auto;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 960px;
	clear: both;
}
/* 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 {
	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: 960px;
	z-index: auto;
	background: #FFFFFF;
}


#outerWrapper #contentWrapper {
	overflow: hidden;
	padding: 0px 5px 0px 0px;
}
.txtfields {
	border: 1px solid #CCC;
}

#outerWrapper #contentWrapper #contactform {
	overflow: hidden;
	padding-right: 5px;
	height: 400px;
	width: 650px;
	padding-left: 20px;
	margin: 0px auto;
}

/* Contains the main page content. When using a mutliple column layout the margins will be set to account for the floated columns' width, margins, and padding. */
#outerWrapper #contentWrapper #content {
	margin: 0 0px 0 180px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 700px;
	background: #FFFFFF;
}
#outerWrapper #contentWrapper #ivrscreenshotcontent {
	margin: 0 0px 0 180px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 5px 10px 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 1200px;
	background: #FFFFFF;
}

#outerWrapper #contentWrapper #aboutcontent {
	margin: 0 0px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 400px;
	background: #FFFFFF;
}

#outerWrapper #contentWrapper #exdelcontent {
	margin: 0 0px 0 180px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 800px;
	background: #FFFFFF;
}

#outerWrapper #contentWrapper #contactcontent {
	margin: 0 0px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 450px;
	background: #FFFFFF;
}





   








#outerWrapper #contentWrapper #leftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 5px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	background: #FFFFFF;
	height: 730px;
}
#outerWrapper #contentWrapper #ivrscreenshotleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 5px 0px 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	background: #FFFFFF;
	height: 1200px;
}

#outerWrapper #contentWrapper #ExTBankleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
	background: #FFFFFF;
	height: 830px;
}

#outerWrapper #contentWrapper #ivr-appsleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	background: #FFFFFF;
	height: 850px;
}

#outerWrapper #contentWrapper #ivr-information-leftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
	background: #FFFFFF;
	height: 1200px;
}

#outerWrapper #contentWrapper #aboutleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
	background: #FFFFFF;
	height: 400px;
}

#outerWrapper #contentWrapper #ExDelLeftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 180px;
	background: #FFFFFF;
	height: 800px;
}

#outerWrapper #contentWrapper #ContactleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
	background: #FFFFFF;
	height: 450px;
}

#outerWrapper #contentWrapper #priceleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
	background: #FFFFFF;
	height: 1400px;
}

#outerWrapper #contentWrapper #InboundCallSolutionsleftColumn1 {
	border-right: solid 1px #a8a2d1; /* Sets the right border properties for an element using shorthand notation */
	float: left;
	padding: 0px 0px 20px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 170px;
	background: #FFFFFF;
	height: 600px;
}

#outerWrapper #contentWrapper #rightColumn1 {
	border-left: solid 1px #a8a2d1; /* Sets the left border properties for an element using shorthand notation */
	float: right;
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	width: 150px;
	background: #FFFFFF;
	height: 1200px;
}
#outerWrapper #contentWrapper #pricecontent {
	margin: 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 1400px;
	background: #FFFFFF;
}

#outerWrapper #contentWrapper #AboutContent {
	margin: 0 0px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 700px;
	background: #FFFFFF;
	list-style: circle url(none) outside;
}

#outerWrapper #contentWrapper #GeoContent {
	margin: 0 0px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 700px;
	background: #FFFFFF;
}

#outerWrapper #contentWrapper #Packagescontent {
	margin: 0 0px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px; /* Sets the padding properties for an element using shorthand notation (top, right, bottom, left) */
	height: 700px;
	background: #FFFFFF;
}

#outerWrapper #contentWrapper #InboundCallSolutionsContent {
	margin: 0 0px 0 170px; /* Sets the margin properties for an element using shorthand notation (top, right, bottom, left) */
	padding: 10px;
	background: #FFFFFF;
}
#outerWrapper #contentWrapper #IVRApplicationsWrapper {
	width: 100%;
	margin: 10px auto 0px;
	padding: 0px;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #IVRApplicationsR li {
	list-style: disc;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #IVRApplicationsL li {
	list-style: disc;
}
#outerWrapper #contentWrapper #content #cwrapper #IVRApplicationsL{
	float: left;
	height: 250px;
	width: 180px;
}
#outerWrapper #contentWrapper #content #cwrapper #IVRApplicationsR{
	float: left;
	height: 250px;
	width: 200px;
	list-style: disc;
}
#outerWrapper #contentWrapper #content #cwrapper #IVRApplicationsBox{
	float: left;
	height: 250px;
	width: 180px;
	list-style: disc;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper  #LHostedIVR {
	float: left;
	height: 83px;
	width: 200px;
	padding-top: 10px;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #MHostedIVR {
	float: left;
	height: 83px;
	width: 200px;
	padding-top: 10px;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #RHostedIVR {
	float: left;
	height: 83px;
	width: 200px;
	padding-top: 10px;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #ivr-services {
	float: left;
	height: 83px;
	width: 100%;
	padding-top: 10px;
	line-height: 10px;
	letter-spacing: 40px;
}

.wstbl {
	text-align: left;
}
.ChoosePackage {
	text-align: center;
	border: 1px solid #CCC;
	height: 230px;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
}

.ManagedServices {
	height: 130px;
	width: 240px;
	padding:0;
	margin:0;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	float: left;
}
.ICT {
	height: 160px;
	width: 185px;
	padding:0;
	margin:0;
	color: #666;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	float: left;
}
.ICT li {
	color: #333;
	list-style: square inside;
}
.ICT ul {
	color: #333;
	list-style: square inside;
	margin: 0px;
	padding: 0px;
}


.ICTs {
	height: 160px;
	width: 160px;
	padding:0;
	margin:0;
	color: #666;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	float: left;
}
.ICTs li {
	color: #333;
	list-style: square inside;
}
.ICTs ul {
	color: #333;
	list-style: square inside;
	margin: 0px;
	padding: 0px;
}


.ICTL {
	height: 160px;
	width: 210px;
	padding:0;
	margin:0;
	color: #666;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 11px;
	font-weight: bold;
	text-align: left;
	float: left;
}
.ICTL li {
	color: #333;
	list-style: square inside;
}
.ICTL ul {
	color: #333;
	list-style: square inside;
	margin: 0px;
	padding: 0px;
}




.ManagedServicesSm {
	height: 180px;
	width: 150px;
	padding:0;
	margin:0;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
	text-align: left;
	float: left;
}

   
.ManagedServices li {
	list-style-type:none;
	color: #FFF;
}

.ManagedServicesSm li {
	list-style-type:none;
	color: #FFF;
}


.ManagedServices a, .ManagedServices a:visited {
	display:block;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
}   
.ManagedServicesSm a, .ManagedServicesSm a:visited {
	display:block;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 12px;
	font-weight: bold;
}
#footer  {
	background: #2A70D6 url(../../images/back.png);
	height: 130px;
	margin: 0px auto;
	width: 100%;
	float: left;
	padding: 0px;
}
#footerWrapper {
	height: 100px;
	margin: 0px auto;
	width: 960px;
	padding: 0px;
}

#outerWrapper #members {
	background: #FFFFFF;
	margin: 0px auto;
	width: 960px;
	clear: both;
	float: none;
	letter-spacing: 20px;
	text-align: right;
	height: 75px;
}

/* Sets the style for a link that is being activated/clicked. */
a:active {
  color: #392f69;
}
#LogoBar {
	padding: 10px 0px;
	height: 100px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	background: url(/images/TelNewGenLogo.png) no-repeat;
}


#if {
	height: 200px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
	padding-right: 0px;
	padding-left: 0px;
}
#Logo {
	height: 50px;
	width: 300px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 48px;
	font-weight: bold;
	color: #FFFFFF;
	padding: 0px;
	line-height: 48px;
	float: left;
}
#RightNav {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	height: 20px;
	width: 280px;
	float: right;
	text-align: right;
	line-height: 20px;
}
#TopNav {
	height: 20px;
	width: 960px;
	margin-right: auto;
	margin-left: auto;
}
#DownloadDemoIVR {
	float: left;
	height: 60px;
	width: 100%;
	color: #0000FF;
	margin: 0px 0px 10px;
	padding: 0px 0px 10px;
}
#sp {
	float: left;
	width: 100%;
	height: 1px;
}
#outerWrapper #contentWrapper #content #cwrapper{
	width: 100%;
	height: 250px;
}
.priceTable {
	background: #FFFFFF;
	border-right: 1px solid #CCCCCC;
	border-bottom: 1px solid #CCCCCC;
	border-left: 1px solid #CCCCCC;
}
.priceTableHeader {
	background: #336699;
	font-weight: bold;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #FFFFFF;
	text-align: center;
}
#success {
	padding: 100px 0px 0px;
	height: 300px;
	width: 300px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

#Order {
	padding: 100px 0px 0px;
	height: 500px;
	width: 600px;
	margin-right: auto;
	margin-left: auto;
	text-align: center;
}

.cwrapper {
	float: left;
	width: 100%;
}
.ivrheader {
	background: #000066;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	line-height: 20px;
	text-align: center;
	border-top: none;
	border-right: none;
	border-bottom: none;
	border-left: none;
}
.ivrbodyleft {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	line-height: 20px;
	font-weight: normal;
	color: #333333;
	text-align: left;
}
.ivrbodycenter {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #333333;
	text-align: center;
}
#fullWidthHeader #HeaderLogo {
	width: 960px;
	height: 50px;
	margin-right: auto;
	margin-left: auto;
}
.ivrtable {
	border: 1px solid #CCCCCC;
	background: #FFFFFF;
	padding: 2px;
}
.call {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	height: 25px;
	width: 200px;
	float: left;
	text-align: left;
	clear: both;
}
#fullWidthHeader #HeaderLogo #call {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: bold;
	color: #FFFFFF;
	vertical-align: baseline;
	float: left;
	height: 50px;
	width: 400px;
	line-height: 50px;
}
#outerWrapper #contentWrapper #content #DownloadDemoIVR #p {
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: normal;
	color: #333333;
	padding-left: 30px;
}

.cwrapperHMP {
	float: left;
	width: 595;
}

.cwrapperBoards {
	float: left;
	width: 595px;
}

.HMPLicenceL {
	float: left;
	height: 130px;
	width: 200px;
}
.HMPLicenceR {
	float: left;
	height: 130px;
	width: 400px;
	list-style: none;
}
#HeadingTag {
	margin-top: 10px;
}


.HMPBoardsL {
	float: left;
	height: 125px;
	width: 270px;
}
.HMPBoardsR {
	float: left;
	height: 125px;
	width: 300px;
	list-style: none;
}

.HMPLicenceR li {
	list-style: none;
}
.HMPLicenceL li {
	list-style: disc;
}

.HMPBoardsR li {
	list-style: none;
}
.HMPBoardsL li {
	list-style: disc;
}
.dni {
	float: left;
	height: 100px;
	width: 288px;
}
.dPricing {
	height: 30px;
	width: 500px;
}
.IVR {
	border: 1px solid #CCCCCC;
}
.IVRTablHeader {
	background: #009933;
	padding: 3px;
	font-family: Verdana, Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: bold;
	color: #FFFFFF;
	text-align: center;
}
#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #IVRServerWrapper #WhyIVR {
	height: 560px;
	float: left;
	width: 590px;
}

#outerWrapper #contentWrapper #content #IVRApplicationsWrapper #IVRServerWrapper {
	float: left;
	height: 100px;
	width: 590px;
}

.NumberSetupHD {
	background: #1A55BD;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bolder;
	color: #FFF;
	text-align: center;
	line-height: 25px;
}
.NumberSetupBody {
	background: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	color: #666;
	text-align: center;
	line-height: 50px;
	border: 1px solid #CCC;
}
.NumberSetupBodyLight {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	color: #666;
	text-align: center;
	line-height: 50px;
	border: 1px solid #CCC;
}

.NumberMinutesBody {
	background: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bolder;
	color: #666;
	text-align: center;
	line-height: 20px;
	border: 1px solid #CCC;
}

.IVRBody {
	background: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: normal;
	color: #666;
	text-align: center;
	line-height: 30px;
	border: 1px solid #CCC;
	font-size: 12px;
}

.NumberSetupSearch {
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	color: #FFF;
	text-align: center;
	border: 1px solid #CCC;
	background: #FFF;
	margin: 0px;
	padding: 0px;
}

