/* @override 
	http://arizonaapartments.us/wp-content/themes/thesis_midtown/custom/SpryAssets/SpryTabbedPanels.css
	http://arizonaapartments.us/wp-content/themes/thesis/custom/SpryAssets/SpryTabbedPanels.css
*/

@charset "UTF-8";

.TabbedPanels {
	padding: 0px;
	float: left;
	clear: none;
	width: 100%;
	margin-bottom: 0px;
	margin-left: 0px;
	margin-right: 0px;
}

 /*these are the TAB NAMES */
 .TabbedPanelsTabGroup {
	margin: 0;
	padding: 0;
}

/*This is the ENTIRE NAV. */
ul.TabbedPanelsTabGroup {
	padding: 0 0 20px 10px;
	margin-bottom: 0;
	border-bottom: 1px solid #696;
	margin-left: 0;
}
ul.TabbedPanelsTabGroup li {
	padding: 0;
	margin: 0 10px 4px;
}
ul.TabbedPanelsTabGroup li a {
	line-height: 14px;
	font-weight: bold;
	text-decoration: none;
	color: #9c9;
	}

/* 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.*/
.TabbedPanelsTab {
-moz-user-select:none;
cursor:pointer;
float:left;
font-family: Georgia,serif;
height:19px;
list-style-image:none;
list-style-position:outside;
list-style-type:none;
padding:5px 22px 4px;
position:relative;
text-align:center;
text-transform:uppercase;
}
.TabbedPanelsTabHover, .TabbedPanelsTabSelected {
	border-bottom: 4px solid #696;
	padding-bottom: 2px;
	color: #696;
}
.TabbedPanelsTabSelected {
	font-weight: bold;
}

.TabbedPanelsTab a {
cursor:pointer;
}


/* 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 {
	clear: both;
}

/* 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-top: 20px;
	padding-bottom: 5px;
}

/* 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 {
	padding-top: 0;
}
.TabbedPanelsContentVisible h3 {
	color: #000;
	margin-top: .8em;
}


