/**
 * Behavior.css
 * This file contains CSS styles that affect the behavior of the application.
 * These should only be changed if you really know what you're doing.
 */
 
/** Often used to store JSON data that should not be seen **/
.data {
	display: none;
}

/** Hide something! Note: display: none means it won't take up any space **/
.hidden {
	display: none !important;
}

/** Hide something.  Note: visibility: hidden means it will still take up space **/
.invisible {
	visibility: hidden;
}

#alert_indicator_tooltip {
	z-index: 201;
} 

div.form_toggle_container {
	display: none;
}

div.form_element_help, div.form_element_help_small,div.left_form_element_help,div.left_form_element_help_small {
	display: none;
	z-index: 99;
}

div.form_element_inline_error {
	display: none;
}

div.required_fields_missing {
	display: none;
}

div.errors {
	display: none;
}

/** When the user clicks, the dropdown appears by unhiding the list **/
div.select_menu_open ul {
	display: block;
	z-index: 200;
}

div.select_menu ul {
	display: none;
}

div.popup_required_fields_missing {
	display: none;
}

/** The default row is a hidden row that is used on an add row action
    to supply the defaults for the new row. **/
table.friendly_table tr.friendly_default_row td {
	height: 0px;
	line-height: 0px;
	margin: 0;
	padding: 0;
	font-size: 0px;
	visibility: hidden;
	display: none;
}

table.friendly_table tr.friendly_default_row a.table_remove_action {
	height: 0px;
	visibility: hidden;
}


/** Data Source and E-mail Server test results **/
#results {
	display: none;
}

/** An individual result message **/
#test_result_message {
	display: none;
}

/** A container used while the test is in progrss **/
#test_container #in_progress {
	display: none;
}

#alert_engine_progress {
	display: none;
}

/** The dropdown that displays the page layout choices **/
#layout_action_container {
	display: none;
}

div.gauge_header_more_actions {
	z-index: 500;
}

