/*
  Copyright Notice
  ================
  
  Copyright 2003 Adam Sutton
  
  Copying Permission
  ------------------
  
  This script is free software; you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation; either version 2 of the License, or
  (at your option) any later version.
 
  This program is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  GNU General Public License for more details.
  
  You should have received a copy of the GNU General Public License
  along with this program; if not, write to the Free Software
  Foundation, Inc., 59 Temple Place, Suite 330, Boston, 
  MA  02111-1307  USA

  ********************************************************************

  Script Info
  ===========

  Author        : Adam Sutton

  Project       : asPhpFtp
         
                    An FTP client written entirely in PHP, designed to 
                    facilitate access to FTP servers through WWW interface.

                    For this reason an effort has been made to stick to 
                    using basic HTML output, with only optional use of
                    such things as javascript.

  Script        : themes/graphical/style.css
  
                    Stylesheet for the basic graphical theme
  
  Created       : 25/04/2004
*/

/************************************************************************
 * Header and Footer
 ************************************************************************/

@import "css/header-footer.css";
@import "css/header-footer-spacer.css";

/************************************************************************
 * Forms
 ************************************************************************/

@import "css/forms.css";

/************************************************************************
 * Tables
 ************************************************************************/

@import "css/tables.css";

/************************************************************************
 * Miscellaneous
 ************************************************************************/

/* Body format */
body
{
  font-family            : arial, helvetica, sans-serif;

  margin                 : 0px;

  font-size              : 10pt;

  height                 : 100%;

  background-color       : #ffffff;
}

/***************************************************************************
 * Main Content
 ***************************************************************************/

div.asphpftp-content
{
	position               : absolute;
	left: 150px;
	top: 135px;

	width                  : 550px;
	height                 : auto;
	min-width              : 550px;
	min-height             : 400px;
  
  color                  : #000000;
 
	font-size              : 10pt;
  text-align             : left; 
}

/**
 * Headers
h1
{
  width                  : 100%;
  
  background-color       : transparent;
  color                  : #000;
  
  border-bottom          : 2px solid #036;

  padding                : 0.25em;

  font-size              : 16pt;
  font-weight            : bold;

  text-align             : left;
}

h2, h3, h4, h5, h6
{
  width                  : 20em;

  background-color       : #def;
  color                  : #000;

  border-bottom          : 1px solid #036;

  font-weight            : bold;
  
  text-align             : left;
}

h2
{
  font-size              : 10pt;
}

h3
{
  font-size              : 10pt;
  font-style             : italic;
  font-weight            : normal;
}

h4
{
  font-size              : 8pt;
}
 */

/* Section - indented */
div.asphpftp-section
{
  margin-top   : 1.5em;
  margin-left  : 2em;
  padding      : 0;
}

/** 
 * Links
 */

/* Normal */
a
{
  background-color       : transparent;
  color                  : #00f;

  font-weight            : normal;
  text-decoration        : none;
}

/* Hover */
a:hover
{
  background-color       : transparent;
  color                  : #f00;
  
  font-weight            : normal;
  text-decoration        : none;
}

/* Go button */
button.asphpftp-go
{
  font-size:8pt;
  font-weight:normal;
  width:auto;
  height:auto;
  margin-left:1em;
  background-color : #369;
  color : #eee;
}
button.asphpftp-go:hover
{
  background-color : #69c;
  color : #333;
}
