/**
 * The default CSS stylesheet used for all templates.
 *
 * @package AutoIndex
 * @author Justin Hagstrom <JustinHagstrom@yahoo.com>
 * @version 1.0.2 (February 05, 2004)
 *
 * @copyright Copyright (C) 2002-2004 Justin Hagstrom
 * @license http://www.gnu.org/licenses/gpl.html GNU General Public License (GPL)
 *
 * @link https://github.com/rubo77/AutoIndex
 */

/* Body */
.autoindex_body, html
{
	font-family: verdana, lucidia, sans-serif;
	font-size: 1.1rem;
	background-color: #F0F0F0;
}

/* Images */
.autoindex_body img
{
	border: none;
}

/* Tables */
.autoindex_table
{
	width: 100%;
	border: none;
	border-spacing: 0px;
	border-collapse: collapse;
	border-color: #333333;
}
.light_row
{
	background-color: #f2f2f2;
	font-size: 1.1rem;
}
.dark_row
{
	background-color: #dadada;
	font-size: 1.1rem;
}
.autoindex_td, .autoindex_td_right
{
	font-size: 1.1rem;
	font-family: verdana, lucidia, sans-serif;
	vertical-align: top;
	border: 1px solid #bbbbbb;
	padding: 0px 3px 0px 3px;
	white-space: nowrap;
	text-align: left;
	vertical-align: bottom;
}
.autoindex_td_right
{
	text-align: right;
}
.autoindex_th
{
	font-size: 1.1rem;
	background-color: #aaaaaa;
	border: 1px solid #000010;
	padding: 0px 5px 0px 5px;
	text-align: right;
}
table.autoindex_table:nth-child(2) th:nth-child(1){
	text-align: left;
}

/* Links */
.plain_link
{
	color: #000000;
	text-decoration: none;
}
.autoindex_a:link
{
	color: #000000;
	text-decoration: none;
}
.autoindex_a:visited, .autoindex_a:active, .autoindex_a:hover
{
	color: #00008F;
	text-decoration: none;
}
.light_row:hover{
	background-color: #ececec;
}
.dark_row:hover {
	background-color: #cfcfcf;
}
.filename:hover{
	text-decoration: underline;
}
a.powered_by:hover{
	text-decoration: underline;
}
/* Buttons */
.button, a.button {
	background-color: green;
	border: none;
	color: white;
	padding: 4px 22px 4px 22px;
	cursor: pointer;
	font-size: 1.3rem;
	text-decoration: none;
	margin:2px;
	border-radius: 10px;
}
.button:hover, a.button:hover {
	background-color: RoyalBlue;
}

/* Misc. */
.paragraph
{
	background: #F2F6FC;
	font-size: 1.1rem;
	color: #000020;
}
.autoindex_hr
{
	color: #000020;
	background-color: #000020;
	border: none;
	width: 75%;
	height: 1px;
}
.autoindex_small
{
	font-size: 0.9rem;
}
