@charset "utf-8";
body  {
	font-family:Arial, Helvetica, sans-serif;
	margin: 0; /* it's good practice to zero the margin and padding of the body element to account for differing browser defaults */
	padding: 0;
	background-color: #FFF;
	
	overflow-x: hidden;
	overflow-y: scroll;
}

/* Tips for Elastic layouts 
overflow: -moz-scrollbars-vertical;
width: 800px;
1. Since the elastic layouts overall sizing is based on the user's default fonts size, they are more unpredictable. Used correctly, they are also more accessible for those that need larger fonts size since the line length remains proportionate.
2. Sizing of divs in this layout are based on the 100% font size in the body element. If you decrease the text size overall by using a font-size: 80% on the body element or the #container, remember that the entire layout will downsize proportionately. You may want to increase the widths of the various divs to compensate for this.
3. If font sizing is changed in differing amounts on each div instead of on the overall design (ie: #sidebar1 is given a 70% font size and #mainContent is given an 85% font size), this will proportionately change each of the divs overall size. You may want to adjust based on your final font sizing.
*/

a {
  outline: none;
}
:-moz-any-link:focus {
  outline: none;
}
* :focus {
outline: none;
}

#container {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	text-align: left;
	position: relative;
	margin: 0 auto;
	min-height: 780px;
}
#container2 {
	width: 800px;  /* this width will create a container that will fit in an 300px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	display: block;
	text-align: center;
	position: static;
	margin: auto auto;
	min-height: 150px;
}
#headerlogo {
	height: 65px;
	width: 800px;
	margin-top: 10px;
} 
#header {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	text-align: left;
	margin: 0 ;
	padding: 0;
	position: relative;
	height: 41px;
}
#wrapper {
	width: 800px;  /* this width will create a container that will fit in an 800px browser window if text is left at browser default font sizes */
	background: #FFFFFF;
	text-align: left;
	position: relative;
	margin: 0 ;
	padding: 0px;
	height: 41px;
}
#header2 {
	background: #FFFFFF;
}


#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: 0 ; /* using padding instead of margin will allow you to keep the element away from the edges of the div */
	border: 0;
}

/* Tips for sidebar1:
1. Be aware that if you set a font-size value on this div, the overall width of the div will be adjusted accordingly.
2. Since we are working in ems, it's best not to use padding on the sidebar itself. It will be added to the width for standards compliant browsers creating an unknown actual width. 
3. Space between the side of the div and the elements within it can be created by placing a left and right margin on those elements as seen in the ".twoColElsLtHdr #sidebar1 p" rule.
*/
#sidebar1 {
	float: left;
	width: 12em; /* since this element is floated, a width must be given */
	background: #EBEBEB; /* top and bottom padding create visual space within this div */
	padding-top: 0px;
	padding-right: 0;
	padding-bottom: 0px;
	padding-left: 5px;
}
#sidebar1 h3, #sidebar1 p {
	margin-left: 5px; /* the left and right margin should be given to every element that will be placed in the side columns */
	margin-right: 5px;
}

/* Tips for mainContent:
1. If you give this #mainContent div a font-size value different than the #sidebar1 div, the margins of the #mainContent div will be based on its font-size and the width of the #sidebar1 div will be based on its font-size. You may wish to adjust the values of these divs.
2. The space between the mainContent and sidebar1 is created with the left margin on the mainContent div.  No matter how much content the sidebar1 div contains, the column space will remain. You can remove this left margin if you want the #mainContent div's text to fill the #sidebar1 space when the content in #sidebar1 ends.
3. To avoid float drop, you may need to test to determine the approximate maximum image/element size since this layout is based on the user's font sizing combined with the values you set. However, if the user has their browser font size set lower than normal, less space will be available in the #mainContent div than you may see on testing.
4. In the Internet Explorer Conditional Comment below, the zoom property is used to give the mainContent "hasLayout." This avoids several IE-specific bugs that may occur.
*/

ul.tabnav {
	margin:0px;
	list-style:none;
	padding-left: 0px;
}

 ul.tabnav li {
	margin:0px;
	float:left;
	position: relative;
	color: #666;
	top: 0px;
	float: left;
	list-style: none;
	cursor: pointer;
	font-family: Arial;
	font-weight: bold;
	font-size: 80%;
	background-image: url(../CodifyAssets/tabbedpanels_tab.png);
	background-repeat: no-repeat;
	height: inherit;
	padding: 0px;
	
}

ul.tabnav li a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#069;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}
ul.tabnav li.firstTab a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#2965AB;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 20px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}


ul.tabnav li.secondTab a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#2965AB;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}
ul.tabnav li.thirdTab a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#2965AB;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}
ul.tabnav li.fourthTab a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#2965AB;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}
ul.tabnav li.fifthTab a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#2965AB;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}
ul.tabnav li.lastTab a {
	text-decoration:none;
	display:block;
	text-align:center;
	color:#2965AB;
	font-size:100%;
	height:26px;
	list-style: none;
	font-weight: bold;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 0px;
	padding-left: 15px;
	position:relative;
	font-family: Arial, Helvetica, sans-serif;
}
/* ul.tabnav li a:visited {
text-decoration:none;
	display:block;
	text-align:center;
	color:#069;
	font-size:100%;
	height:34px;
	font: Arial;
	list-style: none;
	font-weight: bold;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	position:relative;

}
*/

ul.tabnav li.firstTab a:hover, ul.tabnav li.firstTab a.selected {
	background-image:url(CodifyAssets/blue_tabs_1.png);
	background-repeat:no-repeat;
	background-position:0px 0px;
	padding-left:20px;
	color:#FFF;
}
 ul.tabnav li.secondTab a:hover, ul.tabnav li.secondTab a.selected {
	background-image:url(CodifyAssets/blue_tabs_1.png);
	background-repeat:no-repeat;
	background-position:-74px 0px;
	color:#FFF;
}
 ul.tabnav li.thirdTab a:hover, ul.tabnav li.thirdTab a.selected {
	background-image:url(CodifyAssets/blue_tabs_1.png);
	background-repeat:no-repeat;
	background-position:-228px 0px;
	color:#FFF;
}
 ul.tabnav li.fourthTab a:hover, ul.tabnav li.fourthTab a.selected {
	background-image:url(CodifyAssets/blue_tabs_1.png);
	background-repeat:no-repeat;
	background-position:-380px 0px;
	color:#FFF;
}
 ul.tabnav li.fifthTab a:hover, ul.tabnav li.fifthTab a.selected {
	background-image:url(CodifyAssets/blue_tabs_1.png);
	background-repeat:no-repeat;
	background-position:-556px 0px;
	color:#FFF;
}
 ul.tabnav li.lastTab a:hover, ul.tabnav li.lastTab a.selected {
	background-image:url(CodifyAssets/blue_tabs_1.png);
	background-repeat:no-repeat;
	background-position:-652px 0px;
	color:#FFF;
}


.homeflash {
	height: 600px;
	margin: 0;
	padding: 0;
	width: 800px;
	position: relative;
	left: 0px;
} 
.logoholder {
	font-family: "Arial Rounded MT Bold";
	float: left;
	padding-top: 0px;
}
.logofont {
	font-family: "Arial Rounded MT Bold";
	font-size: 48px;
	color: #2965AB;
	float: left;
	padding-top: 0px;
	padding-left: 0px;
}
.logoO {
	font-family: "Arial Rounded MT Bold";
	font-size: 46px;
	color: #FE0000;
	width:auto;
	float: left;
	padding-top: 20px;
}
.logocaptionfont {
	font-family: "Arial Rounded MT Bold";
	font-size: 18px;
	color: #2965AB;
	font-style: italic;
	padding-top: 25px;
	padding-left:35px;
	float:left;
}
.hometrans {
	background-image: url(CodifyAssets/home_header.png);
	background-repeat: no-repeat;
	height: 33px;
	margin: 0;
	padding: 0;
	border: 0;
}
.logoleft {
	float: left;
}

.emailadd {
	background-image: url(CodifyAssets/email_address.png);
	position:relative;
	background-repeat: no-repeat;
	width: 186px;
	height: 25px;
}
.imageright {
	
	margin-left: 10px;
	float: right;	
	z-index: 5000;
	position: relative;
}
.imageleft {
	margin-right: 10px;
	float: left;
}
.imagebelow {
	padding-top: 10px;
}

.contentleft {
	width: 440px;
	padding-left: 30px;
	padding-right: 20px;
	float: left;
	

}

.contentright {
	padding-top: 55px;
	float: left;
	width: 210px;
}
.bulbback {
	background-image: url(images/idea_bulb2.jpg);
	background-repeat: no-repeat;
}
.bulbside {
	float: right;
	height: 250px;
	width: 275px;
}

.secthead   {
	font-family: Arial;
	font-size: 14px;
	margin: 0;
	font-weight: bold;
	text-align: center;
	padding-bottom: 5px;
}

.newsbox {
	border: thin solid #000;	
	}


.twoColElsLtHdr .patstrat {
	background-image: url(CodifyAssets/Pat_strat_header.png);
	background-repeat: no-repeat;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	background-position: 0 0;
} 
.twoColElsLtHdr .patdraf {
	background-image: url(CodifyAssets/pat_draf_header.png);
	background-repeat: no-repeat;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	background-position: 0 0;
} 
.twoColElsLtHdr .optcon {
	background-image: url(CodifyAssets/opt_con_header.png);
	background-repeat: no-repeat;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	background-position: 0 0;
} 
.twoColElsLtHdr .aboutus {
	background-image: url(CodifyAssets/about_us_header.png);
	background-repeat: no-repeat;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	background-position: 0 0;
} 

.twoColElsLtHdr .contact {
	background-image: url(CodifyAssets/contact_header.png);
	background-repeat: no-repeat;
	height: 34px;
	margin: 0;
	padding: 0;
	border: 0;
	background-position: 0 0;
} 

.TabbedPanels {
	width: 800px;
	margin: 0px;
	padding: 0px;
	font-size: 100%;
	font-family: Arial;
	height: 41px;
}

/* This is the selector for the TabGroup. The TabGroup container houses
 * all of the tab buttons for each tabbed panel in the widget. This container
 * does not contribute anything visually to the look of the widget for our
 * default style.
 *
 * The name of the class ("TabbedPanelsTabGroup") used in this selector is not
 * necessary to make the widget function. You can use any class name you
 * want to style the TabGroup container.
 */
.TabbedPanelsTabGroup {
	margin: 0px;
	padding: 0px;
	background-color: #F6F;
}

/* This is the selector for the TabbedPanelsTab. This container houses
 * the title for the panel. This is also the tab "button" that the user clicks
 * on to activate the corresponding content panel so that it appears on top
 * of the other tabbed panels contained in the widget.
 *
 * For our default style, each tab is positioned relatively 1 pixel down from
 * where it wold normally render. This allows each tab to overlap the content
 * panel that renders below it. Each tab is rendered with a 1 pixel bottom
 * border that has a color that matches the top border of the current content
 * panel. This gives the appearance that the tab is being drawn behind the
 * content panel.
 *
 * The name of the class ("TabbedPanelsTab") used in this selector is not
 * necessary to make the widget function. You can use any class name you want
 * to style this tab container.
 */
.TabbedPanelsTab {
	position: relative;
	color: #666;
	top: 0px;
	float: left;
	list-style: none;
	-moz-user-select: none;
	-khtml-user-select: none;
	cursor: pointer;
	font-family: Arial;
	font-weight: bold;
	font-size: 80%;
	background-image: url(../CodifyAssets/tabbedpanels_tab.png);
	background-repeat: no-repeat;
	height: inherit;
	padding-top: 15px;
	padding-right: 15px;
	padding-bottom: 10px;
	padding-left: 15px;
}

/* This selector is an example of how to change the appearnce of a tab button
 * container as the mouse enters it. The class "TabbedPanelsTabHover" is
 * programatically added and removed from the tab element as the mouse enters
 * and exits the container.
 */
.TabbedPanelsTabHover {
	color: #FFFFFF;
	background-image: url(../../PhostechWeb2/CodifyAssets/blue_tabs_2.png);
}

/* This selector is an example of how to change the appearance of a tab button
 * container after the user has clicked on it to activate a content panel.
 * The class "TabbedPanelsTabSelected" is programatically added and removed
 * from the tab element as the user clicks on the tab button containers in
 * the widget.
 *
 * As mentioned above, for our default style, tab buttons are positioned
 * 1 pixel down from where it would normally render. When the tab button is
 * selected, we change its bottom border to match the background color of the
 * content panel so that it looks like the tab is part of the content panel.
 */
.TabbedPanelsTabSelected {
	border-bottom-style: none;
	padding-bottom: 10px;
	background-image: url(../CodifyAssets/blue_tabs_1.png);
	color: #FFF;
}

/* This selector is an example of how to make a link inside of a tab button
 * look like normal text. Users may want to use links inside of a tab button
 * so that when it gets focus, the text *inside* the tab button gets a focus
 * ring around it, instead of the focus ring around the entire tab.
 */
.TabbedPanelsTab a {
	color: #039;
	text-decoration: none;
}


/* This is the selector for the ContentGroup. The ContentGroup container houses
 * all of the content panels for each tabbed panel in the widget. For our
 * default style, this container provides the background color and borders that
 * surround the content.
 *
 * The name of the class ("TabbedPanelsContentGroup") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the ContentGroup container.
 */
.TabbedPanelsContentGroup {
	margin: 0px 0px 0px 0px;
	padding: 0px 0px 0px 0px;
	clear: both;
	color: #3F9;
	}

/* This is the selector for the Content panel. The Content panel holds the
 * content for a single tabbed panel. For our default style, this container
 * provides some padding, so that the content is not pushed up against the
 * widget borders.
 *
 * The name of the class ("TabbedPanelsContent") used in this selector is
 * not necessary to make the widget function. You can use any class name you
 * want to style the Content container.
 */
.TabbedPanelsContent {
	padding: 0px 0px 0px 0px;
	color: #06F;
	clear: both;
}
.TabbedPanelsContent a{
	
	text-decoration: none;
}
/* This selector is an example of how to change the appearnce of the currently
 * active container panel. The class "TabbedPanelsContentVisible" is
 * programatically added and removed from the content element as the panel
 * is activated/deactivated.
 */
.TabbedPanelsContentVisible {
	color: #60C;	
}

.table1 {
	border-collapse:collapse;
	
}
.table1 td, th {
	border:1px solid black;
	padding-left: 4px;
	padding-right: 4px;
}
.tablecell1 {
	
	border:none;
}

div#NavCon ul li {
	color: #069;
	text-decoration: none;
}
div#NavCon ul li a, div#NavCon  ul li a:visited{
	color: #069;
	text-decoration: none;
	display:block;
}
div#NavCon ul li:hover {
	color: #FFFFFF;
	background-image: url(CodifyAssets/blue_tabs_1.png);
	}
/*div#NavCon ul li a:hover {
	color: #FFFFFF;
}*/

div#navBand {
	clear: both;
	width: 800px;
	position: absolute;
	top: 103px;
	left: 0;
}
div#navBand, div#leftNavBand, div#topNav, div#rightNavBand {
	height: 22px;
	float: left;
}
div#rightNavBand {
	text-align: left;
	font-size: 1.2em;
	font-weight: bold;
	line-height: 22px;
	color: #740;
}
div#leftNavBand, div#rightNavBand {
	width: 158px;
}
div#topNav {
	width: 800px;
}
div#topNav ul {
	margin: 0;
	display: block;
	padding: 0;
	list-style: none;
}
div#topNav ul li {
	line-height: 22px;
	float: left;
	text-align: center;
	border-left: 1px solid #c93;
}
div#topNav ul li#first {
	border-left: none;
}
div#topNav ul li a {
	font-weight: bold;
	padding: 0 20px;
	display: block;
}
div#topNav ul li:link, div#topNav ul li:visited,
div#topNav ul li a:link, div#topNav ul li a:visited {
	color: #FFF;
	text-decoration: none;
}
div#topNav ul li:hover,
div#topNav ul li a:hover {
	background-color: #FFD;
	color: #960;
}
div#content {
	width: 920px;
	height: 528px;
	clear: both;
	position: relative;
	top: 125px;
}

div#tabContainer {
	width: 758px;
	height: 528px;
	float: left;
	clear: both;
}
div#thinContainer {
	width: 158px;
	height: 528px;
	float: left;
}


.buttoncontainer{
	margin-left: auto;
	margin-right: auto;
	border: none;
	width: 86px;
	margin-top: 10px;
}
.fieldholder {
	margin-top: 5px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.buttonstyle {
	background-image: url(CodifyAssets/submit_button_small.png);
	width: 84px;
	margin-left: auto;
	margin-right: auto;
	height: 28px;
	background-repeat: no-repeat;
	border: none;
}


.twoColElsLtHdr #footer {
	padding: 0 10px;
	background-color: #FFF;
	clear: both;
} 
.twoColElsLtHdr #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 */
	font-size: 10px;
	text-align: center;
}

/* Miscellaneous classes for reuse */
.fltrt { /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
	float: right;
	margin-left: 8px;
}
.fltlft { /* this class can be used to float an element left in your page */
	float: left;
	margin-right: 8px;
}
.clearfloat { /* this class should be placed on a div or break element and should be the final element before the close of a container that should fully contain a float */
	clear:both;
    height:0;
    font-size: 1px;
    line-height: 0px;
}
input {
	border: thin solid #000;
	width: 250px;
}
textarea {
	border: thin solid #000;
	width: 400px;
}
label {
	display: block;
	float: left;
	width: 90px;
}
form {
	width: 500px;
}
.twoColElsLtHdr #container #vert_tabbed_area #TabbedPanels2 .TPContentGroup .TPContent .content #form1 div {
	margin-top: 30px;
}
.addresslist {
	list-style-type: none;
	width:auto
}
.addressblock {
	width: 300px;
	margin: auto;
}


fieldset {
	border:none}
