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


.printonly {
	display: none;
}


/******************************* Main Layout *******************************/

body  {
	font: 80% Verdana, Arial, Helvetica, sans-serif;
	background: rgb(208,228,245);
	background-image:url(http://www.ftabq.com/images/bodybknd.jpg);
	background-position:top;
	background-repeat:repeat-x;
	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: #666;
}

h1, h2, h3, h4, p, ul, li {
	margin: 0;
	padding: 0;
}

.fta #container { 
	width: 890px;  /* using 20px less than a full 800px width allows for browser chrome and avoids a horizontal scroll bar */
	background: #FFF;
	margin: 0 auto; /* the auto margins (in conjunction with a width) center the page */
	border: none;
	text-align: left; /* this overrides the text-align: center on the body element. */
	padding: 0;
} 
.fta #header { 
	background-image: url(http://www.ftabq.com/images/headerbknd.jpg); 
	margin: 0;
	padding: 0;
	width: 890px;
	height: 295px;
	display: block;
	position: relative;
	overflow: visible;
	z-index: 30;
} 


.fta #header .phonenumber {
	float: left;
	position: relative;
	top: 10px;
	left: -115px;
	font-size: 90%;
}

.fta #header .slogan {
	float: right;
	position: relative;
	top: 10px;
	right: 42px;
	font-size: 90%;
}

#centerArea {
	margin: 0;
	padding: 0;
	width: 890px;
	background-image:url(http://www.ftabq.com/images/centerbknd.jpg);
	background-position:top;
	background-repeat: repeat-y;
	overflow:auto;
}

#centerArea2 {
	margin: 0;
	padding: 0;
	width: 890px;
	background-image:url(http://www.ftabq.com/images/centerbkndtop.jpg);
	background-position:top;
	background-repeat: no-repeat;
	overflow:auto;
}

.fta #sidebar {
	float: left; /* since this element is floated, a width must be given */
	width: 180px; /* the actual width of this div, in standards-compliant browsers, or standards mode in Internet Explorer will include the padding and border in addition to the width */
	margin: 50px 0;
	padding: 0;
}

.fta #main {
	float: left; /* since this element is floated, a width must be given */
	width: 550px;
	min-height: 500px;
	margin: 30px 30px 15px 55px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #main div's text to fill the #sidebar space when the content in #sidebar ends. */
	padding: 0 30px 75px 0;
	border-right: 1px dotted #CCC;
}

.fta #main.onecolumn {
	float: left; /* since this element is floated, a width must be given */
	width: 750px;
	min-height: 500px;
	margin: 30px 0 15px 55px; /* the left margin on this div element creates the column down the left side of the page - no matter how much content the sidebar div contains, the column space will remain. You can remove this margin if you want the #main div's text to fill the #sidebar space when the content in #sidebar ends. */
	padding: 0 30px 75px 0;
	border-right: none;
}

.fta #footer { 
	display: block;
	margin: 0;
	padding: 0; /* this padding matches the left alignment of the elements in the divs that appear above it. */
	background-color: rgb(208,228,245);
	background-image: url(http://www.ftabq.com/images/footerbknd.jpg);
	background-position:top;
	background-repeat:no-repeat;
	width: 890px;
	height: 125px;
} 

.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;
}





/******************************* Styles for Main Area *******************************/

.fta #main img {
	border: none;
}

.fta #main h1, h2, h3 {
	font-family: "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
}

.fta #main a {
	color: rgb(8,109,4);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
}

.fta #main a:visited {
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
}

.fta #main a:hover, a:visited:hover {
	color: rgb(129,104,82);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
	cursor:pointer;
}


.fta #main h1 {
	font: 225% "Copperplate Gothic Light", "Copperplate Gothic", "Century Gothic", "Trebuchet MS", Verdana, Arial, Helvetica, sans-serif;
	font-weight: normal;
	color: rgb(8,109,4);
	line-height: 1em;
	margin-top: .75em;
	margin-bottom: .75em;
	letter-spacing: 0.025em;
}

.fta #main h2 {
	color: rgb(8,109,4);
	line-height: 1.25em;
	margin-top: 1.5em;
}

.fta #main h3 {
	color: rgb(8,109,4);
	line-height: 1.25em;
	margin-top: 1.5em;
}

.fta #main p {
	margin-top: 1em;
	line-height: 1.5em;
}

.fta #main ul {
	margin-top: 1em;
	margin-left: 3em;
	line-height: 1em;
}

.fta #main li {
	margin-top: .75em;
	line-height: 1.5em;
}

.fta #main ul li {
	list-style-type: square;
	color: rgb(8,109,4);
}

.fta #main ul li span {
	color: #666;
}

.fta #main .divider {
	width: 100%;
	height: 1px;
	display: block;
	clear: both;
}

.fta #main .divline {
	width: 100%;
	height: 1px;
	display: block;
	clear: both;
	border-bottom: 1px dotted #CCC;
}

.floatright {
	float: right;
	margin: 5px 0 10px 15px;
}

.floatleft {
	float: left;
	margin: 5px 15px 10px 0;
}

.floatright img, .floatleft img, .caption img {
	margin: 0;
	padding: 0;
	border: 0;
}

.caption {
	width: 300px;
	background-color: rgb(235,245,200);
}

.caption p {
	margin: 0 10px 15px 10px;
	line-height: 1em;
	font-size: 85%;
	font-style: italic;
	color: #000;
}

.fta #main .backto p {
	line-height: 1em;
	padding-top: 15px;
}

.fta #main .backto a {
	color: rgb(8,109,4);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
}

.fta #main .backto a:hover {
	color: rgb(129,104,82);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
	cursor:pointer;}

.fta #main .backto a span{
	display: block;
	float: left;
	vertical-align:baseline;
	margin-top: 4px;
	margin-right: 2px;
	width: 9px;
	height: 9px;
	background-image: url(http://www.ftabq.com/images/backarrow-dkgreen.gif);
	background-repeat: no-repeat;
	background-position: top;
	overflow: hidden;
	padding-right: 5px;
}

.fta #main .backto a:hover span{
	display: block;
	float: left;
	vertical-align:baseline;
	width: 9px;
	height: 9px;
	background-image: url(http://www.ftabq.com/images/backarrow-ltgreen.gif);
	background-repeat: no-repeat;
	background-position: top;
	overflow: hidden;
	padding-right: 5px;
}

.fta #main p.fineprint {
	display: block;
	margin-top: 2em;
	font-style: italic;
	font-size: 80%;
}


.fta #main ul.fancylist li {
	margin-top: 1.5em;
	padding-bottom: 30px;
	background: transparent url(http://www.ftabq.com/images/separator.gif) no-repeat bottom center;
}


/******************************* Styles for Sidebar *******************************/


.fta #sidebar h1, .fta #sidebar h2, .fta #sidebar h3, .fta #sidebar h4, .fta #sidebar p {
      color:rgb(129,104,82);
}

.fta #sidebar p {
	line-height: 1.5em;
}

.fta #sidebar .companyinfo {
	margin-top: 4em;
}




/******************************* Styles for Footer *******************************/



.fta #footer .copyright {
	width: 780px;
	display: block;
	float: left;
	margin: 25px 0 20px 35px;
	color: rgb(91,137,90);
	font-size: 85%;
}

.fta #footer .footernav { 
	width: 780px;
	display: block;
	float: left;
	margin: 40px 0 0 0;
	color: #FFF;
	font-size: 85%;
}

.fta #footer .copyright a, .fta #footer .copyright a:visited {
	color: rgb(91,137,90);
	text-decoration: none;
	border: none;
}

.fta #footer .copyright a:hover, .fta #footer .copyright a:visited:hover {
	text-decoration: none;
	color: rgb(91,137,90);
	border-bottom: 1px solid rgb(91,137,90);
}

.fta #footer .footernav a {
	color: #666;
	text-decoration: none;
	border: none;
}

.fta #footer .footernav a:hover {
	text-decoration: none;
	color: rgb(91,137,90);
	border-bottom: 1px solid rgb(91,137,90);
}

.fta #footer .sitecredit {
	width: 890px;
	display: block;
	text-align: center;
	position: relative;
	top: 50px;
}

.fta #footer .siteby {
	text-align: center;
	border: none;
}

.fta #footer .footerleaf {
	float: left;
	margin: 39px 10px 0 35px;
	display: block;
	width: 23px;
	height: 14px;
	background-image: url(http://www.ftabq.com/images/footerleaf.jpg);
}


/******************************* Styles for Navigation *******************************/



	#mainnav {
      /*clear: both; */
	  position: absolute;
	  top:255px;
	  left:25px;
      width:838px;
	  height:40px;
	  display:block;
	  background: url(http://www.ftabq.com/images/navbar.jpg) top left repeat-x;
      margin:0;
	  padding: 0;
	  font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	  overflow: hidden;
	  border-right: 1px solid rgb(208,228,245);
/*	  border-bottom: 1px solid rgb(208,228,245); */
	  border-left: 1px solid rgb(208,228,245);
	  z-index: 100;
      }
    #mainnav ul {
      padding: 0;
	  margin: 0; /* had been 0 0 0 20px */
	  display:block;
      list-style:none;
      }
    #mainnav li {
      float:left;
	  font-size:15px;
	  line-height: 1em;
	  text-transform: uppercase;
	  vertical-align: middle;
/*	  border-left: 1px solid #000; /* border between nav items */
/*	  margin-left: -1px; /* offset by width of border */
      }
    #mainnav a, #mainnav a:visited {
      display: block;
      background: url(http://www.ftabq.com/images/navbar.jpg) top left repeat-x;
      padding: 12px 17px 20px 17px;
	  text-decoration:none;
      font-weight: bold;
      color:rgb(129,104,82);
	  border-right: 1px solid rgb(208,228,245); /* NEEDS TO MATCH ABOVE border between nav items */
      }
    #mainnav a:hover, #mainnav a:visited:hover {
      color: rgb(91,137,90); /*was rgb(185,210,225)*/
	  background-position: 0 -40px;
      }
    #mainnav li.selected a, #mainnav li.selected a:visited {
      color: rgb(91,137,90); /*was rgb(185,210,225)*/
	  background-position: 0 -40px;
      }
    #mainnav li.default a, #mainnav li.default a:visited {
      color: rgb(91,137,90); /*was rgb(185,210,225)*/
      }
    #mainnav #current {
/*      background-image:url(http://www.ftabq.com/images/navbarbknd.jpg) repeat-x; */
      color: rgb(91,137,90);
      }
    #mainnav #current a, #mainnav #current a:visited {
/*      background-image:url(http://www.ftabq.com/images/navbarbknd.jpg) repeat-x; */
      color: rgb(91,137,90);
      }
	 #mainnav #current a:hover, #mainnav #current a:visited:hover {
      color: rgb(91,137,90);
	  background-position: 0 -40px;
      }
	
	/* Commented Backslash Hack
     hides rule from IE5-Mac \*/
  #mainnav a {float:none;}
  /* End IE5-Mac hack */


  /* ######### Style for Drop Down Menu ######### */
	
	.dropmenu{
	position:absolute;
	border: 1px solid rgb(208,228,245); /*THEME CHANGE HERE*/
	border-width: 0 1px 0 1px;
	font-weight: normal;
	font-size:12px;
	line-height: 20px;
	z-index:50;
	width: 198px;
	display: none;
	background-color: #FFF;
	}
	
	
	.dropmenu a{
	width: auto;
	display: block;
/*	text-indent: 9px; */
	border: 0 solid rgb(208,228,245); /*THEME CHANGE HERE*/
	border-bottom-width: 1px;
	padding: 4px 0 4px 17px;
	text-decoration: none;
    color: rgb(91,137,90);
	}
	
	* html .dropmenu a{ /*IE only hack*/
	width: 100%; 
	}
	
	.dropmenu a:hover { /*THEME CHANGE HERE*/
    color: rgb(129,104,82);
	border-color: rgb(208,228,245); /*THEME CHANGE HERE*/
	background: url(http://www.ftabq.com/images/navbar.jpg) repeat-x ;
	}
	
	.dropmenu a.current, .dropmenu a.current:hover { /*THEME CHANGE HERE*/
    color: rgb(129,104,82);
	border-color: rgb(208,228,245); /*THEME CHANGE HERE*/
	background-image: none;
	}







 /************************** Style for Contact Forms **************************/


#contact-area {
	width: 530px;
	margin-top: 25px;
	color: #666;
}

#contact-area input, #contact-area textarea {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	padding: 5px;
	width: 418px;
	margin: 0px 0px 10px 0px;
	border: 1px solid rgb(188,210,232);
	/* I added the following */
	display: block;
	float: left;
}

#contact-area select {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	line-height: 1.5em;
	color: #333333;
	padding: 5px;
	width: 430px;
	margin: 0px 0px 10px 0px;
	border: 1px solid rgb(188,210,232);
	/* I added the following */
	display: block;
	float: left;
}

#contact-area textarea {
	height: 90px;
}

#contact-area textarea:focus, #contact-area input:focus {
	border: 1px solid rgb(8,109,4);
}

#contact-area input#submit-button {
	width: 100px;
	float: right;
	text-transform: uppercase;
	background-color: rgb(230,240,250);
}

#contact-area input#submit-button:focus, #contact-area input#submit-button:hover {
	color: rgb(8,109,4);
	border: 1px solid rgb(8,109,4);
}

#contact-area label {
	float: left;
	text-align: right;
	margin-right: 10px;
	width: 90px;
	padding-top: 5px;
	/* I added the following */
	font-size: 12px;
	display: block;
}
#contact-area label.state {
	width: 55px;
}

#contact-area label.zip {
	width: 50px;
}

#contact-area input#name, #contact-area input#email, #contact-area input#company, #contact-area input#city {
	width: 171px;
}

#contact-area input#phone, #contact-area input#fax {
	width: 135px;
}

#contact-area input#state {
	width: 25px;
}

#contact-area input#zip {
	width: 73px;
}

#contact-area input#checkbox {
	width: 15px;
	height: 15px;
}

#contact-area input#required, #contact-area input#event {
	display:none;
}

#contact-area .divider {
	width: 550px;
	height: 1px;
	display: block;
	clear: both;
}

#contact-area #footnote {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 10px;
	color: #333333;
	line-height: 2.5em;
	display: block;
	float: left;
	margin-left: 110px;
}

#contact-area .indented {
	margin-left: 100px;
}

#contact-area input.error, textarea.error {
	background-color: rgb(251,247,192); /* was rgb(255,240,215) */
}

#contact-area #errormsg  {
	margin-left: 100px;
}

#contact-area #errormsg li {
	text-align: left;
	list-style-type: none;
}




     /****************** Style for tables *****************/
	 
table a,
table a:link,
table a:visited {
	border:none;
}							
	
img {
	border:0;
	margin-top:.25em;
}	
	
table {
	width:90%;
	border-top:1px solid rgb(208,228,245);
	border-right:1px solid rgb(208,228,245);
	margin:1em auto;
	border-collapse:collapse;
}

tr.odd td, th	{
	background: rgb(230,243,255);
}

tr.odd .column1	{

}	

.column1	{
	font-weight: bold;
}

td {
	color: #666;
	border-bottom:1px solid rgb(208,228,245);
	border-left:1px solid rgb(208,228,245);
	padding:.3em 1em;
	text-align:left;
	vertical-align: top;
}				

th {
	font-weight: normal;
	color: rgb(208,228,245);
	text-align:left;
	border-bottom: 1px solid rgb(208,228,245);
	border-left:1px solid rgb(208,228,245);
	padding:.3em 1em;
	font-size: 115%;
}						

table.plain {
	border: none;
	width:100%;
	margin:1em auto;
	border-collapse:collapse;
}

table.plain .boldcolumn {
	font-weight: bold;
}

table.plain td {
	color: #666;
	border: none;
	padding: 0;
	text-align:left;
	vertical-align: top;
}				

table.plain th {
	font-weight: normal;
	color: rgb(208,228,245);
	text-align:left;
	border-bottom: 1px solid rgb(208,228,245);
	padding: .5em 0;
	font-size: 115%;
}		

table.plain tr {
	background-color: #FFFFFF;
}

table a, table.plain a {
	color: rgb(8,109,4);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
}

table a:hover, table.plain a:hover {
	color: rgb(129,104,82);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
}

table a:visited, table.plain a:visited {
	color: #666;
	text-decoration: none;
	border-bottom: 1px solid rgb(8,109,4);
}

table a:visited:hover, table.plain a visited:hover {
	color: rgb(129,104,82);
	text-decoration: none;
	border-bottom: 1px solid rgb(129,104,82);
}


     /****************** Style for special boxes *****************/



.specialbox-180 {
	width: 180px;
	float: right;
	clear: right;
	margin: 10px 0 15px 15px;
	padding: 0;
	background-image: url(http://www.ftabq.com/images/leftspecialbox-top.gif);
	background-position:top;
	background-repeat: no-repeat;
	font-weight: normal;
	text-align:center;
	color: #000000;
}


.specialboxbottom-180 {
	width: 180px;
	background-image: url(http://www.ftabq.com/images/leftspecialbox-bottom.gif);
	background-position:bottom;
	background-repeat: no-repeat;
	padding: 5px 0 20px 0; 
	margin: 0;
	text-align:center;
}

.specialbox {
	width: 300px;
	float: right;
	margin: 10px 15px 15px 15px;
	padding: 0;
	background-image: url(http://www.ftabq.com/images/mainspecialbox-top.gif);
	background-position:top;
	background-repeat: no-repeat;
	font-weight: normal;
	text-align:center;
	color: #000000;
}


.specialboxbottom {
	width: 300px;
	background-image: url(http://www.ftabq.com/images/mainspecialbox-bottom.gif);
	background-position:bottom;
	background-repeat: no-repeat;
	padding: 5px 0 20px 0; 
	margin: 0;
	text-align:center;
}

a .specialbox, a .specialbox-180 {
	color: rgb(8,109,4);
	border: 0;
}

a .specialbox:hover, a .specialbox-180:hover, .fta #sidebar a .specialbox:hover, .fta #sidebar a .specialbox-180:hover {
	color: #000;
	border: 0;
}


.fta #sidebar .specialbox-180 {
	width: 180px;
	float: right;
	margin: 10px 25px 15px 0;
	padding: 0;
	background-image: url(http://www.ftabq.com/images/leftspecialbox-top.gif);
	background-position:top;
	background-repeat: no-repeat;
	font-weight: normal;
	text-align:center;
	color: #000000;
}

.fta #sidebar .specialbox-180 p {
	margin-left: 0;
	margin-top: 1em;
}


     /****************** Style for staff page *****************/

.fta #main .staff {
	float: left;
	display: block;
	width: 750px;
	margin: 20px 0;
}

.fta #main .staffpic {
	float: left;
	margin: 0 25px 0 0;
	display: block;
	width: 100px;
	height: 125px;
}

.fta #main .staffpic img {
	display: block;
	width: 100px;
	height: 125px;
	margin: 0;
	padding: 0;
	border: 0;
}

.fta #main .staffinfo {
	float: left;
	display: block;
	width: 750px;
	min-height: 125px;
}

.fta #main .staffinfo h3 {
	margin-top: 0;
}

.fta #main .staffinfo .degree1, .fta #main .staffinfo .degree2 {
	font-size: 90%;
	text-transform: uppercase;
	color: #000;
}

.fta #main #content {
	display: none;
}

.fta #main #stafflist {
 	display: block;
	width: 250px;
}

.fta #main #stafflist table#staff {
	width: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	border-top: 1px dotted #CCC;
}

.fta #main #stafflist table#staff tr {
	margin: 0;
	padding: 0;
	border: 0;
	cursor: pointer;
}

.fta #main #stafflist table#staff tr.rowHover td {
	color: rgb(8,109,4);
	background: #FFF url(../images/rowhovbknd1.jpg) repeat-y;
}

.fta #main #stafflist table#staff tr.rowSelected td {
	color: rgb(8,109,4);
	font-weight: bold;
}

.fta #main #stafflist table#staff tr.rowSelected td:hover {
	background: #FFF url(../images/rowhovbknd1.jpg) repeat-y;
}

.fta #main #stafflist table#staff td {
	padding: 3px 0 3px 5px;
	border: 0;
	border-bottom: 1px dotted #CCC;
	vertical-align: middle;
}

.fta #main #stafflist table#staff .staffname {
	display: block;
	float: left;
	font-size: 90%;
	margin-top: 5px;
}

.fta #main #stafflist .tinypic img {
	width: 16px;
	height: 20px;
	margin: 0 10px 0 0;
	padding: 0;
	border: 1px solid #FFF;
	float: left;
}

.fta #main #stafflist p.sortby {
	font-size: 80%;
	text-transform: uppercase;
	margin: 0 0 25px 0;
}

.fta #main #therapistinfo {
	display: block;
	float: right;
	margin: 35px 0; /* make 0 again later*/
	width: 465px; /* was 275px */
}

.fta #main #therapistinfo h3 {
	margin-top: 0;
	line-height: 1em;
	font-size: 145%;
}

.fta #main #therapistinfo .therapistdegree {
	display: block;
	width: 465px; /* was 275px */
	margin-top: .75em;
	line-height: 1em;
	font-size: 85%;
	text-transform: uppercase;
	color: #000;
}

.fta #main #therapistinfo .therapistbio {
	display: block;
	margin-top: 20px;
	width: 465px; /* was 275px */
}

.fta #main #therapistinfo .therapistbio .therapistpic img {
	width: 100px;
	height: 125px;
}

.fta #main #therapistinfo .therapistbio .therapistpic {
	display: block;
	float: left;
	margin: 0 10px 5px 0;
	width: 100px;
}

.fta #main #therapistinfo .therapistbio p {
	
}


     /****************** Style for misc *****************/

.homelink {
	display: block;
	position: absolute;
	width: 315px;
	height: 125px;
	top: 60px;
	left: 60px;
	z-index: 500;
}
	 
.navleaf {
	display: block;
	background: url(http://www.ftabq.com/images/navleaf.jpg) no-repeat;
	width: 35px;
	height: 40px;
	position: absolute;
	top: 255px;
	left: 815px;
	z-index: 500;
}

.since1984 {
	display: block;
	background: url(http://www.ftabq.com/images/since1984.jpg) no-repeat;
	width: 110px;
	height: 40px;
	position: absolute;
	top: 255px;
	left: 740px;
	z-index: 500;
}

a .homelink,
a .navleaf,
a .footerleaf,
a .homelink:visited,
a .navleaf:visited,
a .footerleaf:visited,
{ 
	border: 0;
	text-decoration: none;
	cursor: pointer;
}
