Index: trunk/wb/templates/allcss/footer.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: trunk/wb/templates/allcss/footer.jpg
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/wb/templates/allcss/header.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: trunk/wb/templates/allcss/header.jpg
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/wb/templates/allcss/index.php
===================================================================
--- trunk/wb/templates/allcss/index.php	(revision 85)
+++ trunk/wb/templates/allcss/index.php	(nonexistent)
@@ -1,110 +0,0 @@
-<?php
-
-// $Id$
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2005, Ryan Djurovich
-
- Website Baker 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.
-
- Website Baker 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 Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-?>
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
-<head>
-<title><?php page_title(); ?></title>
-<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-<meta name="description" content="<?php page_description(); ?>" />
-<meta name="keywords" content="<?php page_keywords(); ?>" />
-<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
-<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
-</head>
-<body>
-
-<div class="main">
-	
-	<div class="banner">
-		<a href="<?php echo WB_URL; ?>/" target="_top"><?php echo WEBSITE_TITLE; ?></a>
-		<font color="#D0D0D0">| <?php echo PAGE_TITLE; ?></font>
-	</div>
-	
-	<div class="search_box">
-		<?php if(SHOW_SEARCH) { ?>
-		<form name="search" action="<?php echo WB_URL.'/search/index'.PAGE_EXTENSION; ?>" method="post">
-		<input type="text" name="string" class="search_string" />
-		<input type="submit" name="submit" value="Search" class="search_submit" />
-		</form>
-		<?php } ?>
-	</div>
-	
-	<?php
-	// Only show menu items if we are supposed to
-	if(SHOW_MENU) {
-	?>	
-	<div class="menu">
-		<?php page_menu(0, 1, '<li class="menu_main"[class]>[a][menu_title][/a]</li>', '<ul>', '</ul>', '', ' style="font-weight: bold;"'); ?>
-		
-		<?php
-		if(FRONTEND_LOGIN == 'enabled' AND VISIBILITY != 'private' AND $admin->get_session('USER_ID') == '') {
-		?>
-		<form name="login" action="<?php echo LOGIN_URL; ?>" method="post" class="login_table">
-			<h1><?php echo $TEXT['LOGIN']; ?></h1>
-			<?php echo $TEXT['USERNAME']; ?>:
-			<input type="text" name="username" style="text-transform: lowercase;" />
-			<?php echo $TEXT['PASSWORD']; ?>:
-			<input type="password" name="password" />
-			<input type="submit" name="submit" value="<?php echo $TEXT['LOGIN']; ?>" style="margin-top: 3px; text-transform: uppercase;" />
-			<a href="<?php echo FORGOT_URL; ?>"><?php echo $TEXT['FORGOT_DETAILS']; ?></a>
-				<?php if(is_numeric(FRONTEND_SIGNUP)) { ?>
-					<a href="<?php echo SIGNUP_URL; ?>"><?php echo $TEXT['SIGNUP']; ?></a>
-				<?php } ?>
-		</form>
-		<?php
-		} elseif(FRONTEND_LOGIN == 'enabled' AND is_numeric($admin->get_session('USER_ID'))) {
-		?>
-		<form name="logout" action="<?php echo LOGOUT_URL; ?>" method="post" class="login_table">
-			<h1><?php echo $TEXT['LOGGED_IN']; ?></h1>
-			<?php echo $TEXT['WELCOME_BACK']; ?>, <?php echo $admin->get_display_name(); ?>
-			<br />
-			<input type="submit" name="submit" value="<?php echo $MENU['LOGOUT']; ?>" />
-			<br />
-			<a href="<?php echo PREFERENCES_URL; ?>"><?php echo $MENU['PREFERENCES']; ?></a>
-			<a href="<?php echo ADMIN_URL; ?>/index.php"><?php echo $TEXT['ADMINISTRATION']; ?></a>
-		</form>
-		<?php
-		}
-		?>
-	</div>
-	<?php } ?>
-	
-	<div class="content">
-		<?php page_content(); ?>
-	</div>
-	
-	<div class="footer">
-		<?php page_footer(); ?>
-	</div>
-	
-</div>
-
-<div class="powered_by">
-	Powered by <a href="http://www.websitebaker.org" target="_blank">Website Baker</a>
-</div>
-
-</body>
-</html>
\ No newline at end of file

Property changes on: trunk/wb/templates/allcss/index.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: trunk/wb/templates/allcss/print.css
===================================================================
--- trunk/wb/templates/allcss/print.css	(revision 85)
+++ trunk/wb/templates/allcss/print.css	(nonexistent)
@@ -1,71 +0,0 @@
-body,td,th {
-	font-family: Verdana, Arial, Helvetica, sans-serif;
-	font-size: 12px;
-	color: #000000;
-}
-body {
-	background-color: #FFFFFF;
-	margin: 0px;
-}
-a:link, a:visited, a:active {
-	color: #660033;
-	text-decoration: none;
-}
-a:hover {
-	color: #993366;
-	text-decoration: none;
-}
-hr {
-	margin: 15px 0px 15px 0px;
-	color: #660033;
-	height: 1px;
-	width: 100%;
-}
-h1 {
-	font-size: 15px;
-	color: #993366;
-	margin: 5px 0px 5px 0px;
-}
-form {
-	margin: 0;
-}
-.main {
-	width: 100%;
-	margin: 0;
-	padding: 0;
-}
-.banner {
-	font-size: 20px;
-	font-weight: bold;
-	color: #FFFFFF;
-	padding-bottom: 20px;
-	text-align: center;
-}
-.search_box {
-	display: none;
-}
-.menu {
-	display: none;
-}
-.menu ul, .menu li {
-	display: none;
-}
-.login_table {
-	display: none;
-}
-.content {
-	margin: 0;
-	text-align: justify;
-}
-.footer {
-	clear: both;
-	height: 20px;
-	background: #FFFFFF;
-	font-size: 10px;
-	color: #666666;
-	text-align: center;
-	padding-top: 20px;
-}
-.powered_by {
-	display: none;
-}
\ No newline at end of file

Property changes on: trunk/wb/templates/allcss/print.css
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: trunk/wb/templates/allcss/background.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: trunk/wb/templates/allcss/background.jpg
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Deleted: svn:mime-type
## -1 +0,0 ##
-application/octet-stream
\ No newline at end of property
Index: trunk/wb/templates/allcss/info.php
===================================================================
--- trunk/wb/templates/allcss/info.php	(revision 85)
+++ trunk/wb/templates/allcss/info.php	(nonexistent)
@@ -1,33 +0,0 @@
-<?php
-
-// $Id: info.php,v 1.3 2005/04/08 09:58:31 rdjurovich Exp $
-
-/*
-
- Website Baker Project <http://www.websitebaker.org/>
- Copyright (C) 2004-2005, Ryan Djurovich
-
- Website Baker 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.
-
- Website Baker 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 Website Baker; if not, write to the Free Software
- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
-
-*/
-
-$template_directory = 'allcss';
-$template_name = 'All CSS';
-$template_version = '2.5';
-$template_designed_for = '2.x';
-$template_author = 'Ryan Djurovich';
-$template_description = 'This template is designed with one goal in mind: to completely control lay-out with css. In case you were wondering, that is where the name came from.';
-
-?>
\ No newline at end of file

Property changes on: trunk/wb/templates/allcss/info.php
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: trunk/wb/templates/allcss/screen.css
===================================================================
--- trunk/wb/templates/allcss/screen.css	(revision 85)
+++ trunk/wb/templates/allcss/screen.css	(nonexistent)
@@ -1,145 +0,0 @@
-body,td,th {
-	font-family: Verdana, Arial, Helvetica, sans-serif;
-	font-size: 12px;
-	color: #000000;
-}
-body {
-	background-color: #F0F0F0;
-	background-image: url(background.jpg);
-	margin: 0;
-}
-a:link, a:visited, a:active {
-	color: #660033;
-	text-decoration: none;
-}
-a:hover {
-	color: #993366;
-	text-decoration: none;
-}
-hr {
-	margin: 5px 0px 5px 0px;
-	color: #660033;
-	border: 0;
-	border-top: 1px solid #660033;
-	height: 1px;
-	width: 580px;
-}
-h1 {
-	font-size: 16px;
-	color: #993366;
-	text-align: left;
-	margin: 8px 2px 8px 2px;
-}
-form {
-	margin: 0;
-}
-.main {
-	width: 750px;
-	margin: auto;
-	padding: 0;
-	background-color: #FFFFFF;
-}
-.banner, .search_box {
-	height: 80px;
-	background-image: url(header.jpg);
-	background-repeat: repeat-x;
-	font-size: 20px;
-	font-weight: bold;
-	color: #FFFFFF;
-	text-align: center;
-	padding-top: 20px;
-}
-.banner {
-	width: 530px;
-	padding-left: 20px;
-	float: left;
-	text-align: left;
-}
-.search_box {
-	float: right;
-	clear: right;
-	width: 200px;
-}
-.search_string {
-	width: 100px;
-	height: 16px;
-	font-size: 10px;
-	vertical-align: middle;
-}
-.search_submit {
-	width: 50px;
-	height: 22px;
-	font-size: 10px;
-	vertical-align: middle;
-}
-.banner a {
-	color: #FFFFFF;
-}
-.menu {
-	float: left;
-	width: 140px;
-	margin: 10px;
-	margin-top: 3px;
-}
-.menu ul, .menu li {
-	margin: 0;
-	padding: 0;
-	list-style: none;
-	margin-bottom: 5px;
-}
-.menu ul ul {
-	padding-left: 8px;
-}
-.menu a:link, .menu a:visited, .menu a:active, .menu a:hover {
-	display: block;
-	padding: 2px;
-}
-.menu_main a:link, .menu_main a:visited, .menu_main a:active {
-	border-bottom: 1px dashed #999999;
-}
-.menu_main a:hover {
-	border-bottom: 1px dashed #333333;
-}
-.login_table {
-	border: 1px solid #D0D0D0;
-	margin-top: 20px;
-	margin-bottom: 5px;
-	text-align: center;
-	padding-bottom: 3px;
-}
-.login_table h1 {
-	color: #660033;
-	font-size: 12px;
-	text-transform: uppercase;
-	font-weight: bold;
-	text-align: center;
-	margin: 5px 0px 5px 0px;
-}
-.login_table input {
-	text-transform: uppercase;
-	font-size: 10px;
-	margin: 5px 0px 1px 0px;
-	width: 100px;
-}
-.content {
-	margin-left: 150px;
-	padding: 4px 10px 14px 10px;
-	text-align: justify;
-	clear: right;
-}
-.footer {
-	background-color: #FFFFFF;
-	clear: both;
-	height: 20px;
-	background-image: url(footer.jpg);
-	background-repeat: repeat-x;
-	font-size: 10px;
-	color: #666666;
-	text-align: center;
-	line-height: 18px;
-}
-.powered_by {
-	text-align: center;
-	font-size: 10px;
-	padding-top: 2px;
-}
\ No newline at end of file

Property changes on: trunk/wb/templates/allcss/screen.css
___________________________________________________________________
Deleted: svn:executable
## -1 +0,0 ##
-*
\ No newline at end of property
Deleted: svn:keywords
## -1 +0,0 ##
-Id
\ No newline at end of property
Index: addons/templates/allcss/index.php
===================================================================
--- addons/templates/allcss/index.php	(nonexistent)
+++ addons/templates/allcss/index.php	(revision 86)
@@ -0,0 +1,110 @@
+<?php
+
+// $Id$
+
+/*
+
+ Website Baker Project <http://www.websitebaker.org/>
+ Copyright (C) 2004-2005, Ryan Djurovich
+
+ Website Baker 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.
+
+ Website Baker 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 Website Baker; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+*/
+
+?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
+<head>
+<title><?php page_title(); ?></title>
+<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+<meta name="description" content="<?php page_description(); ?>" />
+<meta name="keywords" content="<?php page_keywords(); ?>" />
+<link href="<?php echo TEMPLATE_DIR; ?>/screen.css" rel="stylesheet" type="text/css" media="screen" />
+<link href="<?php echo TEMPLATE_DIR; ?>/print.css" rel="stylesheet" type="text/css" media="print" />
+</head>
+<body>
+
+<div class="main">
+	
+	<div class="banner">
+		<a href="<?php echo WB_URL; ?>/" target="_top"><?php echo WEBSITE_TITLE; ?></a>
+		<font color="#D0D0D0">| <?php echo PAGE_TITLE; ?></font>
+	</div>
+	
+	<div class="search_box">
+		<?php if(SHOW_SEARCH) { ?>
+		<form name="search" action="<?php echo WB_URL.'/search/index'.PAGE_EXTENSION; ?>" method="post">
+		<input type="text" name="string" class="search_string" />
+		<input type="submit" name="submit" value="Search" class="search_submit" />
+		</form>
+		<?php } ?>
+	</div>
+	
+	<?php
+	// Only show menu items if we are supposed to
+	if(SHOW_MENU) {
+	?>	
+	<div class="menu">
+		<?php page_menu(0, 1, '<li class="menu_main"[class]>[a][menu_title][/a]</li>', '<ul>', '</ul>', '', ' style="font-weight: bold;"'); ?>
+		
+		<?php
+		if(FRONTEND_LOGIN == 'enabled' AND VISIBILITY != 'private' AND $admin->get_session('USER_ID') == '') {
+		?>
+		<form name="login" action="<?php echo LOGIN_URL; ?>" method="post" class="login_table">
+			<h1><?php echo $TEXT['LOGIN']; ?></h1>
+			<?php echo $TEXT['USERNAME']; ?>:
+			<input type="text" name="username" style="text-transform: lowercase;" />
+			<?php echo $TEXT['PASSWORD']; ?>:
+			<input type="password" name="password" />
+			<input type="submit" name="submit" value="<?php echo $TEXT['LOGIN']; ?>" style="margin-top: 3px; text-transform: uppercase;" />
+			<a href="<?php echo FORGOT_URL; ?>"><?php echo $TEXT['FORGOT_DETAILS']; ?></a>
+				<?php if(is_numeric(FRONTEND_SIGNUP)) { ?>
+					<a href="<?php echo SIGNUP_URL; ?>"><?php echo $TEXT['SIGNUP']; ?></a>
+				<?php } ?>
+		</form>
+		<?php
+		} elseif(FRONTEND_LOGIN == 'enabled' AND is_numeric($admin->get_session('USER_ID'))) {
+		?>
+		<form name="logout" action="<?php echo LOGOUT_URL; ?>" method="post" class="login_table">
+			<h1><?php echo $TEXT['LOGGED_IN']; ?></h1>
+			<?php echo $TEXT['WELCOME_BACK']; ?>, <?php echo $admin->get_display_name(); ?>
+			<br />
+			<input type="submit" name="submit" value="<?php echo $MENU['LOGOUT']; ?>" />
+			<br />
+			<a href="<?php echo PREFERENCES_URL; ?>"><?php echo $MENU['PREFERENCES']; ?></a>
+			<a href="<?php echo ADMIN_URL; ?>/index.php"><?php echo $TEXT['ADMINISTRATION']; ?></a>
+		</form>
+		<?php
+		}
+		?>
+	</div>
+	<?php } ?>
+	
+	<div class="content">
+		<?php page_content(); ?>
+	</div>
+	
+	<div class="footer">
+		<?php page_footer(); ?>
+	</div>
+	
+</div>
+
+<div class="powered_by">
+	Powered by <a href="http://www.websitebaker.org" target="_blank">Website Baker</a>
+</div>
+
+</body>
+</html>
\ No newline at end of file

Property changes on: addons/templates/allcss/index.php
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: addons/templates/allcss/info.php
===================================================================
--- addons/templates/allcss/info.php	(nonexistent)
+++ addons/templates/allcss/info.php	(revision 86)
@@ -0,0 +1,33 @@
+<?php
+
+// $Id: info.php,v 1.3 2005/04/08 09:58:31 rdjurovich Exp $
+
+/*
+
+ Website Baker Project <http://www.websitebaker.org/>
+ Copyright (C) 2004-2005, Ryan Djurovich
+
+ Website Baker 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.
+
+ Website Baker 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 Website Baker; if not, write to the Free Software
+ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
+
+*/
+
+$template_directory = 'allcss';
+$template_name = 'All CSS';
+$template_version = '2.5';
+$template_designed_for = '2.x';
+$template_author = 'Ryan Djurovich';
+$template_description = 'This template is designed with one goal in mind: to completely control lay-out with css. In case you were wondering, that is where the name came from.';
+
+?>
\ No newline at end of file

Property changes on: addons/templates/allcss/info.php
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: addons/templates/allcss/print.css
===================================================================
--- addons/templates/allcss/print.css	(nonexistent)
+++ addons/templates/allcss/print.css	(revision 86)
@@ -0,0 +1,71 @@
+body,td,th {
+	font-family: Verdana, Arial, Helvetica, sans-serif;
+	font-size: 12px;
+	color: #000000;
+}
+body {
+	background-color: #FFFFFF;
+	margin: 0px;
+}
+a:link, a:visited, a:active {
+	color: #660033;
+	text-decoration: none;
+}
+a:hover {
+	color: #993366;
+	text-decoration: none;
+}
+hr {
+	margin: 15px 0px 15px 0px;
+	color: #660033;
+	height: 1px;
+	width: 100%;
+}
+h1 {
+	font-size: 15px;
+	color: #993366;
+	margin: 5px 0px 5px 0px;
+}
+form {
+	margin: 0;
+}
+.main {
+	width: 100%;
+	margin: 0;
+	padding: 0;
+}
+.banner {
+	font-size: 20px;
+	font-weight: bold;
+	color: #FFFFFF;
+	padding-bottom: 20px;
+	text-align: center;
+}
+.search_box {
+	display: none;
+}
+.menu {
+	display: none;
+}
+.menu ul, .menu li {
+	display: none;
+}
+.login_table {
+	display: none;
+}
+.content {
+	margin: 0;
+	text-align: justify;
+}
+.footer {
+	clear: both;
+	height: 20px;
+	background: #FFFFFF;
+	font-size: 10px;
+	color: #666666;
+	text-align: center;
+	padding-top: 20px;
+}
+.powered_by {
+	display: none;
+}
\ No newline at end of file

Property changes on: addons/templates/allcss/print.css
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: addons/templates/allcss/screen.css
===================================================================
--- addons/templates/allcss/screen.css	(nonexistent)
+++ addons/templates/allcss/screen.css	(revision 86)
@@ -0,0 +1,145 @@
+body,td,th {
+	font-family: Verdana, Arial, Helvetica, sans-serif;
+	font-size: 12px;
+	color: #000000;
+}
+body {
+	background-color: #F0F0F0;
+	background-image: url(background.jpg);
+	margin: 0;
+}
+a:link, a:visited, a:active {
+	color: #660033;
+	text-decoration: none;
+}
+a:hover {
+	color: #993366;
+	text-decoration: none;
+}
+hr {
+	margin: 5px 0px 5px 0px;
+	color: #660033;
+	border: 0;
+	border-top: 1px solid #660033;
+	height: 1px;
+	width: 580px;
+}
+h1 {
+	font-size: 16px;
+	color: #993366;
+	text-align: left;
+	margin: 8px 2px 8px 2px;
+}
+form {
+	margin: 0;
+}
+.main {
+	width: 750px;
+	margin: auto;
+	padding: 0;
+	background-color: #FFFFFF;
+}
+.banner, .search_box {
+	height: 80px;
+	background-image: url(header.jpg);
+	background-repeat: repeat-x;
+	font-size: 20px;
+	font-weight: bold;
+	color: #FFFFFF;
+	text-align: center;
+	padding-top: 20px;
+}
+.banner {
+	width: 530px;
+	padding-left: 20px;
+	float: left;
+	text-align: left;
+}
+.search_box {
+	float: right;
+	clear: right;
+	width: 200px;
+}
+.search_string {
+	width: 100px;
+	height: 16px;
+	font-size: 10px;
+	vertical-align: middle;
+}
+.search_submit {
+	width: 50px;
+	height: 22px;
+	font-size: 10px;
+	vertical-align: middle;
+}
+.banner a {
+	color: #FFFFFF;
+}
+.menu {
+	float: left;
+	width: 140px;
+	margin: 10px;
+	margin-top: 3px;
+}
+.menu ul, .menu li {
+	margin: 0;
+	padding: 0;
+	list-style: none;
+	margin-bottom: 5px;
+}
+.menu ul ul {
+	padding-left: 8px;
+}
+.menu a:link, .menu a:visited, .menu a:active, .menu a:hover {
+	display: block;
+	padding: 2px;
+}
+.menu_main a:link, .menu_main a:visited, .menu_main a:active {
+	border-bottom: 1px dashed #999999;
+}
+.menu_main a:hover {
+	border-bottom: 1px dashed #333333;
+}
+.login_table {
+	border: 1px solid #D0D0D0;
+	margin-top: 20px;
+	margin-bottom: 5px;
+	text-align: center;
+	padding-bottom: 3px;
+}
+.login_table h1 {
+	color: #660033;
+	font-size: 12px;
+	text-transform: uppercase;
+	font-weight: bold;
+	text-align: center;
+	margin: 5px 0px 5px 0px;
+}
+.login_table input {
+	text-transform: uppercase;
+	font-size: 10px;
+	margin: 5px 0px 1px 0px;
+	width: 100px;
+}
+.content {
+	margin-left: 150px;
+	padding: 4px 10px 14px 10px;
+	text-align: justify;
+	clear: right;
+}
+.footer {
+	background-color: #FFFFFF;
+	clear: both;
+	height: 20px;
+	background-image: url(footer.jpg);
+	background-repeat: repeat-x;
+	font-size: 10px;
+	color: #666666;
+	text-align: center;
+	line-height: 18px;
+}
+.powered_by {
+	text-align: center;
+	font-size: 10px;
+	padding-top: 2px;
+}
\ No newline at end of file

Property changes on: addons/templates/allcss/screen.css
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Index: addons/templates/allcss/header.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: addons/templates/allcss/header.jpg
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: addons/templates/allcss/footer.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: addons/templates/allcss/footer.jpg
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
Index: addons/templates/allcss/background.jpg
===================================================================
Cannot display: file marked as a binary type.
svn:mime-type = application/octet-stream

Property changes on: addons/templates/allcss/background.jpg
___________________________________________________________________
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:keywords
## -0,0 +1 ##
+Id
\ No newline at end of property
Added: svn:mime-type
## -0,0 +1 ##
+application/octet-stream
\ No newline at end of property
