Removed unused skin directory

git-svn-id: http://svn.osgeo.org/qgis/trunk@4452 c8812cc2-4d05-0410-92ff-de0c093fc19c
This commit is contained in:
gsherman 2006-01-01 21:38:54 +00:00
parent a19c5e9eda
commit c98766a72a
43 changed files with 0 additions and 1024 deletions

View File

@ -1,23 +0,0 @@
# Copyright (C) 2004 Jens Oberender <j.obi at troja.net>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
docdatadir = $(datadir)/$(PACKAGE)/doc/skin
docdata_DATA = \
breadcrumbs-optimized.js \
breadcrumbs.js \
krysalis.css \
page.css
# generated by ls -1 | sed -e '/CVS/d' -e '/Makefile/d' -e 's#\(.*\)# \1 \\#'
SUBDIRS = images
EXTRA_DIST = $(docdata_DATA)

View File

@ -1,67 +0,0 @@
var PREPREND_CRUMBS=new Array();
PREPREND_CRUMBS.push(new Array("Apache","http://www.apache.org/"));
PREPREND_CRUMBS.push(new Array("Jakarta","http://jakarta.apache.org/"));
var DISPLAY_SEPARATOR=" &gt; ";
var DISPLAY_PREPREND="";
var DISPLAY_POSTPREND=":";
var CSS_CLASS_CRUMB="breadcrumb";
var CSS_CLASS_TRAIL="breadcrumbTrail";
var CSS_CLASS_SEPARATOR="crumbSeparator";
var FILE_EXTENSIONS=new Array( ".html", ".htm", ".jsp", ".php", ".php3", ".php4" );
var PATH_SEPARATOR="/";
function sc(s) {
var l=s.toLowerCase();
return l.substr(0,1).toUpperCase()+l.substr(1);
}
function getdirs() {
var t=document.location.pathname.split(PATH_SEPARATOR);
var lc=t[t.length-1];
for(var i=0;i < FILE_EXTENSIONS.length;i++)
{
if(lc.indexOf(FILE_EXTENSIONS[i]))
return t.slice(1,t.length-1); }
return t.slice(1,t.length);
}
function getcrumbs( d )
{
var pre = "/";
var post = "/";
var c = new Array();
if( d != null )
{
for(var i=0;i < d.length;i++) {
pre+=d[i]+postfix;
c.push(new Array(d[i],pre)); }
}
if(PREPREND_CRUMBS.length > 0 )
return PREPREND_CRUMBS.concat( c );
return c;
}
function gettrail( c )
{
var h=DISPLAY_PREPREND;
for(var i=0;i < c.length;i++)
{
h+='<a href="'+c[i][1]+'" >'+sc(c[i][0])+'</a>';
if(i!=(c.length-1))
h+=DISPLAY_SEPARATOR; }
return h+DISPLAY_POSTPREND;
}
function gettrailXHTML( c )
{
var h='<span class="'+CSS_CLASS_TRAIL+'">'+DISPLAY_PREPREND;
for(var i=0;i < c.length;i++)
{
h+='<a href="'+c[i][1]+'" class="'+CSS_CLASS_CRUMB+'">'+sc(c[i][0])+'</a>';
if(i!=(c.length-1))
h+='<span class="'+CSS_CLASS_SEPARATOR+'">'+DISPLAY_SEPARATOR+'</span>'; }
return h+DISPLAY_POSTPREND+'</span>';
}
if(document.location.href.toLowerCase().indexOf("http://")==-1)
document.write(gettrail(getcrumbs()));
else
document.write(gettrail(getcrumbs(getdirs())));

View File

@ -1,267 +0,0 @@
/*
============================================================================
The Apache Software License, Version 1.1
============================================================================
Copyright (C) 2002-2003 The Apache Software Foundation. All rights reserved.
Redistribution and use in source and binary forms, with or without modifica-
tion, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright notice,
this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright notice,
this list of conditions and the following disclaimer in the documentation
and/or other materials provided with the distribution.
3. The end-user documentation included with the redistribution, if any, must
include the following acknowledgment: "This product includes software
developed by the Apache Software Foundation (http://www.apache.org/)."
Alternately, this acknowledgment may appear in the software itself, if
and wherever such third-party acknowledgments normally appear.
4. The names "Apache Forrest" and "Apache Software Foundation"
must not be used to endorse or promote products derived from this software
without prior written permission. For written permission, please contact
apache@apache.org.
5. Products derived from this software may not be called "Apache", nor may
"Apache" appear in their name, without prior written permission of the
Apache Software Foundation.
THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES,
INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
APACHE SOFTWARE FOUNDATION OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLU-
DING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software consists of voluntary contributions made by many individuals
on behalf of the Apache Software Foundation. For more information on the
Apache Software Foundation, please see <http://www.apache.org/>.
*/
/**
* This script, when included in a html file, builds a neat breadcrumb trail
* based on its url. That is, if it doesn't contains bugs (I'm relatively
* sure it does).
*
* Typical usage:
* <script type="text/javascript" language="JavaScript" src="breadcrumbs.js"></script>
*
*@author <a href="mailto:leosimons@apache.org">Leo Simons</a> (main author)
*@author <a href="mailto:nicolaken@apache.org">Nicola Ken Barozzi</a> (integration in skin)
*@created July 12, 2002
*@version 1.0
*/
/**
* IE 5 on Mac doesn't know Array.push.
*
* Implement it - courtesy to fritz.
*/
var abc = new Array();
if (!abc.push) {
Array.prototype.push = function(what){this[this.length]=what}
}
/* ========================================================================
CONSTANTS
======================================================================== */
/**
* Two-dimensional array containing extra crumbs to place at the front of
* the trail. Specify first the name of the crumb, then the URI that belongs
* to it. You'll need to modify this for every domain or subdomain where
* you use this script (you can leave it as an empty array if you wish)
*/
var PREPREND_CRUMBS = new Array();
if(!(""=="")){
PREPREND_CRUMBS.push( new Array( "", "" ) );
}
if(!(""=="")){
PREPREND_CRUMBS.push( new Array( "", "" ) );
}
if(!(""=="")){
PREPREND_CRUMBS.push( new Array( "", "" ) );
}
/**
* String to include between crumbs:
*/
var DISPLAY_SEPARATOR = " &gt; ";
/**
* String to include at the beginning of the trail
*/
var DISPLAY_PREPREND = "";
/**
* String to include at the end of the trail
*/
var DISPLAY_POSTPREND = "";
/**
* CSS Class to use for a single crumb:
*/
var CSS_CLASS_CRUMB = "breadcrumb";
/**
* CSS Class to use for the complete trail:
*/
var CSS_CLASS_TRAIL = "breadcrumbTrail";
/**
* CSS Class to use for crumb separator:
*/
var CSS_CLASS_SEPARATOR = "crumbSeparator";
/**
* Array of strings containing common file extensions. We use this to
* determine what part of the url to ignore (if it contains one of the
* string specified here, we ignore it).
*/
var FILE_EXTENSIONS = new Array( ".html", ".htm", ".jsp", ".php", ".php3", ".php4" );
/**
* String that separates parts of the breadcrumb trail from each other.
* When this is no longer a slash, I'm sure I'll be old and grey.
*/
var PATH_SEPARATOR = "/";
/* ========================================================================
UTILITY FUNCTIONS
======================================================================== */
/**
* Capitalize first letter of the provided string and return the modified
* string.
*/
function sentenceCase( string )
{ return string;
//var lower = string.toLowerCase();
//return lower.substr(0,1).toUpperCase() + lower.substr(1);
}
/**
* Returns an array containing the names of all the directories in the
* current document URL
*/
function getDirectoriesInURL()
{
var trail = document.location.pathname.split( PATH_SEPARATOR );
// check whether last section is a file or a directory
var lastcrumb = trail[trail.length-1];
for( var i = 0; i < FILE_EXTENSIONS.length; i++ )
{
if( lastcrumb.indexOf( FILE_EXTENSIONS[i] ) )
{
// it is, remove it and send results
return trail.slice( 1, trail.length-1 );
}
}
// it's not; send the trail unmodified
return trail.slice( 1, trail.length );
}
/* ========================================================================
BREADCRUMB FUNCTIONALITY
======================================================================== */
/**
* Return a two-dimensional array describing the breadcrumbs based on the
* array of directories passed in.
*/
function getBreadcrumbs( dirs )
{
var prefix = "/";
var postfix = "/";
// the array we will return
var crumbs = new Array();
if( dirs != null )
{
for( var i = 0; i < dirs.length; i++ )
{
prefix += dirs[i] + postfix;
crumbs.push( new Array( dirs[i], prefix ) );
}
}
// preprend the PREPREND_CRUMBS
if(PREPREND_CRUMBS.length > 0 )
{
return PREPREND_CRUMBS.concat( crumbs );
}
return crumbs;
}
/**
* Return a string containing a simple text breadcrumb trail based on the
* two-dimensional array passed in.
*/
function getCrumbTrail( crumbs )
{
var xhtml = DISPLAY_PREPREND;
for( var i = 0; i < crumbs.length; i++ )
{
xhtml += '<a href="' + crumbs[i][1] + '" >';
xhtml += unescape( crumbs[i][0] ) + '</a>';
if( i != (crumbs.length-1) )
{
xhtml += DISPLAY_SEPARATOR;
}
}
xhtml += DISPLAY_POSTPREND;
return xhtml;
}
/**
* Return a string containing an XHTML breadcrumb trail based on the
* two-dimensional array passed in.
*/
function getCrumbTrailXHTML( crumbs )
{
var xhtml = '<span class="' + CSS_CLASS_TRAIL + '">';
xhtml += DISPLAY_PREPREND;
for( var i = 0; i < crumbs.length; i++ )
{
xhtml += '<a href="' + crumbs[i][1] + '" class="' + CSS_CLASS_CRUMB + '">';
xhtml += unescape( crumbs[i][0] ) + '</a>';
if( i != (crumbs.length-1) )
{
xhtml += '<span class="' + CSS_CLASS_SEPARATOR + '">' + DISPLAY_SEPARATOR + '</span>';
}
}
xhtml += DISPLAY_POSTPREND;
xhtml += '</span>';
return xhtml;
}
/* ========================================================================
PRINT BREADCRUMB TRAIL
======================================================================== */
// check if we're local; if so, only print the PREPREND_CRUMBS
if( document.location.href.toLowerCase().indexOf( "http://" ) == -1 )
{
document.write( getCrumbTrail( getBreadcrumbs() ) );
}
else
{
document.write( getCrumbTrail( getBreadcrumbs( getDirectoriesInURL() ) ) );
}

View File

@ -1,54 +0,0 @@
# Copyright (C) 2004 Jens Oberender <j.obi at troja.net>
#
# This file is free software; as a special exception the author gives
# unlimited permission to copy and/or distribute it, with or without
# modifications, as long as this notice is preserved.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY, to the extent permitted by law; without even the
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
docdatadir = $(datadir)/$(PACKAGE)/doc/skin/images
docdata_DATA = \
bottom-left.png \
bottom-right.png \
chapter.gif \
chapter_open.gif \
content-bg.gif \
current.gif \
favicon.ico \
icon_doc_lrg.gif \
icon_doc_sml.gif \
icon_error_lrg.gif \
icon_error_sml.gif \
icon_folder_lrg.gif \
icon_folder_sml.gif \
icon_help_sml.gif \
icon_info_lrg.gif \
icon_info_sml.gif \
icon_success_lrg.gif \
icon_success_sml.gif \
icon_warning_lrg.gif \
icon_warning_sml.gif \
label.gif \
nav-bottom.png \
navbullet-selected.png \
navbullet.png \
page.gif \
pdfdoc.gif \
printer.gif \
printer.png \
search-bottom.png \
singlepage.gif \
spacer.gif \
tab-top.png \
top-left.png \
top-right.png \
valid-html401.png \
vcss.png \
xmldoc.gif
# generated by ls -1 | sed -e '/CVS/d' -e '/Makefile/d' -e 's#\(.*\)# \1 \\#'
EXTRA_DIST = $(docdata_DATA)

Binary file not shown.

Before

Width:  |  Height:  |  Size: 157 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 49 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 100 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 766 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.3 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 355 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1010 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 634 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1019 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.4 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 606 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 990 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.5 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 576 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 54 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 252 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 159 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 162 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 79 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1008 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 603 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 601 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 286 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 43 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 195 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 156 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 155 B

Binary file not shown.

Before

Width:  |  Height:  |  Size: 2.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 992 B

View File

@ -1,308 +0,0 @@
/* Apache Forrest CSS */
body {
background-color: white;
font-family: arial, helvetica, sans-serif;
margin: 0px;
padding: 0px;
}
form {
padding: 0px;
margin: 0px;
}
a:link {
color: #0F3660;
}
a:visited {
color: #009999;
}
a:active {
color: #000066;
}
a:hover {
color: #000066;
}
.textonly {
display: none;
}
#toplinks {
font-size: 70%;
left: 15em;
position: absolute;
top: 119px;
}
a.toplink {
text-decoration: none;
}
body>#toplinks {
padding-bottom: 0em;
}
#mainheader {
background-color: white;
border-bottom: 11px solid #ABC;
height: 100px;
text-align: center;
white-space: nowrap;
}
#grouplogolink {
display: block;
left: 0px;
position: absolute;
top: 0px;
width: 288px;
}
#grouplogolink/* Hide from Mac IE 5 */ {
display: inline;
float: left;
left: auto;
margin-top: 2px;
position: relative;
top: auto;
width: auto;
}
#grouplogo {
border: 0px;
}
#projectlogo {
border: 0px;
}
#search {
background: #F3F6FF;
border: 0px;
border-bottom: 10px solid #ABC;
border-top: 10px solid #ABC;
display: block;
margin: 0px;
padding: 10px;
padding-right: 0px;
padding-top: 5px;
position: absolute;
right: 10px;
text-align: left;
width: 150px;
top: 22px;
voice-family: "\"}\"";
voice-family: inherit;
top: 0px;
}
#mainheader>#search/* Hide from Mac IE 5 */ {
float: right;
margin-right: 10px;
min-width: 130px;
padding-right: 10px;
position: static;
right: auto;
top: auto;
width: auto;
}
#search * {
border: 0px !important;
font-size: 70%;
}
.searchtext {
color: black;
display: block;
font-size: 100%;
}
.query {
width: 8.5em;
}
#content {
background: white url('skins/krysalis/content-background.png') repeat-x top;
padding-bottom: 1em;
padding-left: 12em;
padding-right: 10px;
padding-top: 30px;
voice-family: "\"}\"";
voice-family: inherit;
padding-left: 10.5em;
}
body>#content { /* Be nice to Opera */
padding-left: 10.5em;
}
#content * {
position: relative;
z-index: 2;
}
#content h1 {
font-size: 125%;
}
#content h2 {
font-size: 100%;
}
#content h3 {
font-size: 80%;
}
#content p {
font-size: 80%;
}
#content em {
font-style: normal;
font-weight: bold;
}
#content li {
font-size: 70%;
list-style-type: none;
}
#content li li {
font-size: 100%;
}
#content .author {
display: block;
font-size: 70%;
text-align: right;
}
#printable {
display: block;
font-size: 70%;
float: right;
margin-right: 3em;
margin-top: 1em;
position: relative;
text-align: center;
width: 6em;
}
#printable/* Hide from Mac IE 5.x */ {
width: 5.5em;
}
#printable img {
border: 0px;
display: block;
}
#printable>img/* Hide from Mac IE 5.x */ {
display: inline;
}
#nav {
border-bottom: 10px solid #ABC;
left: 10px;
padding-top: 10px;
position: absolute;
top: 70px;
z-index: 1;
}
#nav/* Hide from Mac IE 5.x */ {
top: 70px;
}
#categories {
border-bottom: 10px solid #ABC;
font-size: 70%;
height: 1.75em;
margin: 0px;
padding: 0px;
position: relative;
z-index: 1;
}
.category {
display: block;
float: left;
margin: 0em;
margin-right: 0.3em;
padding-right: 0.2em;
padding-left: 0.5em;
text-align: center;
}
.category/* Hide from Mac IE 5.x */ {
padding-left: 0.5em;
padding-right: 0.5em;
}
span.category {
background: #ABC;
color: #F3F6FF;
font-weight: normal;
padding-bottom: 0.5em;
padding-top: 0.3em;
}
a.category {
background: #F3F6FF;
border: 1px solid #ABC;
border-bottom: 0px;
font-weight: normal;
padding-top: 0.15em;
margin-top: 0.5em;
}
.navsection {
background: #F3F6FF;
border-left: 1px solid #ABC;
border-right: 1px solid #ABC;
display: block;
font-size: 70%;
margin: 0px;
padding-bottom: 0.1em;
padding-left: 15px;
padding-top: 0.3em;
width: 11em;
voice-family: "\"}\"";
voice-family: inherit;
width: 10.5em;
}
#nav>.navsection { /* Be nice to Opera */
width: 10.5em;
}
.navsectionheader {
color: black;
font-size: 100%;
margin: 0px;
padding-left: 7px;
}
.navsectionheader/* Hide from Mac IE 5.x */ {
font-size: 90%;
}
.navitem {
display: block;
margin-left: 0px;
margin-bottom: 0.2em;
padding-left: 15px;
}
.navsection>.navitem {
display: list-item;
margin-left: 15px;
padding-left: 0px;
}
span.navitem {
background: url('skins/default/navbullet-selected.png') no-repeat center left;
color: #FFCC00;
}
.navsection>span.navitem {
background: inherit;
list-style-type: disc;
}
a.navitem {
background: url('skins/default/navbullet.png') no-repeat center left;
color: black;
list-style-type: circle;
text-decoration: none;
}
.navsection>a.navitem {
background: inherit;
list-style-type: circle;
}
a.navitem:visited {
color: white;
}
a.navitem:hover {
color: #009966;
}
.navsection>a.navitem:hover {
background: inherit;
}
#footer {
background-color: #ABC;
font-size: 70%;
padding-bottom: 5px;
padding-top: 3px;
text-align: center;
}
#revision:before {
content: " -- "
}
#validation {
display: block;
margin-top: 5px;
text-align: right;
}
#validation img {
border: 0px;
}
.extratab {
display: none;
}

View File

@ -1,305 +0,0 @@
body { background-color: #FFFFFF; margin: 0px 0px 0px 0px; font-family: Verdana, Helvetica, sans-serif; font-size : 100%; }
p { margin: 10px 0px 0px 0px; font-family: Verdana, Helvetica, sans-serif; font-size : 100%; }
.textheader { display: none; }
.headerlogo { padding: 0px 2px 2px 0px; }
.spacer { border: 0; margin: 0px; }
.skin { border: 0; margin: 0px;}
.figure { border: 0; vertical-align: top ; margin-top: 10px; margin-bottom: 10px; }
img { border: 0; margin-top: 5px; margin-bottom: 5px; }
/* Leave out vertical align until I figure out why IE isn't picking up the .skin/.spacer styles (JT) */
/*vertical-align: top*/
a:link { color: #0F3660; }
a:visited { color: #000044; }
a:active { color: #800000; }
a:hover { border: 0px solid #a5b6c6; background: #CFDCED; }
.menu a:link { color: #000000; font-weight: normal;}
.menu a:visited { color: #000000; font-weight: normal; }
.menu a:active { color: #000000; font-weight: normal; }
.menu a:hover { color: #000000; font-weight: normal; }
.menu { background-color: #F7F7F7;
padding: 8px 0px 4px 0px;
margin: 0px;
font-size : 70%;
}
.menutitle {
cursor:pointer;
padding: 0px 3px 5px 10px;
background-image: url('images/chapter.gif');
background-repeat: no-repeat;
background-position: center left;
font-weight : bold;}
.menu .menuitemgroup {
margin: 0px 0px 6px 8px;
padding: 0px;
font-weight : bold; }
.menu .selectedmenuitemgroup{
margin: 0px 0px 6px 8px;
padding: 0px;
font-weight : bold; }
.menu .menuitem {
padding: 0px 0px 2px 10px;
background-image: url('images/page.gif');
background-repeat: no-repeat;
background-position: center left;
font-weight : normal;
}
.menu .menupage {
padding: 4px 3px 5px 10px;
background-image: url('images/current.gif');
background-repeat: no-repeat;
background-position: top left;
font-style : normal;
}
.menu .menupagetitle {
padding: 0px 0px 0px 6px;
font-style : normal;
background-color:#CFDCED;
border-color: #a5b6c6;
border-style: solid;
border-width: 1px;
}
.menu .menupageitemgroup {
padding: 3px 0px 4px 6px;
font-style : normal;
background-color:#ffffff;
border-color: #a5b6c6;
border-style: solid;
border-width: 1px;
}
.menu .menupageitem {
font-style : normal;
font-weight : normal;
border-width: 0px;
font-size : 90%;
}
.smallerfont {
font-size : 100%;
padding: 0px 0px 0px 0px;
}
.biggerfont {
font-size : 100%;
font-weight : bold;
padding: 0px 0px 0px 0px;
}
.resetfont {
font-size : 100%;
font-weight : normal;
padding: 0px 0px 0px 0px;
}
table .title { background-color: #FFFFFF; width:100%; border: 0px; }
.dida { font-size: 80%; }
.pre { white-space: pre;}
h1 { font-size : 160%; margin: 0px 0px 0px 0px; padding: 0px; }
h2 { font-size : 140%; margin: 10px 0px 0px 0px; padding: 0px; font-weight : bold;}
h3 { font-size : 130%; margin: 18px 0px 0px 0px; padding: 0px; font-weight : bold; }
h4 { font-size : 120%; margin: 18px 0px 0px 0px; padding: 0px; font-weight : normal; text-align: left; }
h4.faq { font-size : 120%; margin: 18px 0px 0px 0px; padding: 0px; font-weight : bold; text-align: left; }
h5 { font-size : 100%; margin: 14px 0px 0px 0px; padding: 0px; font-weight : normal; text-align: left; }
.content { padding: 5px 5px 5px 10px; font : small Verdana, Helvetica, sans-serif; font-size : 80%; }
.content .ForrestTable { width: 100%; background-color: #7099C5; color: #ffffff; font-size : 100%;}
.content .ForrestTable caption { text-align: left; color: black; font-weight: bold; }
.content .ForrestTable th { text-align: center; }
.content .ForrestTable td { background-color: #f0f0ff; color: black; }
.note, .warning, .fixme {
border-top: 3px solid #900;
border-bottom: 3px solid #900;
background-image: url(images/icon_error_lrg.gif);
background-repeat: no-repeat;
background-position: 0 1.33em;
margin: 1.33em 0;
padding: .33em 0 .67em 36px;
min-height: 32px;
}
.fixme {
background-image: url(images/icon_warning_lrg.gif);
border-color: #c60;
}
.note {
background-image: url(images/icon_info_lrg.gif);
border-color: #069;
}
.label{
font-weight: bold;
}
.code { background-color: #F7F7F7;
border-color: #CFDCED;
border-style: solid;
border-width: 1px;
font-size : 120%;
padding: 1em 1.33em 1em 1.33em;
}
.codefrag { font-family: "Courier New", Courier, monospace; font-size : 120%;}
.highlight { background-color: yellow; }
.minitoc { list-style-image: url('images/current.gif'); font-weight : normal;}
.search { font-size : 70%; }
.footnote { font-size : 70%; }
.datenote { font-size : 60%; color: #F7F7F7;}
input { font-size : 100% }
submit { font-size : 100% }
button { font-size : 100% }
textarea { font-size : 100% }
.tab { font-size : 85%; border: 0 }
.tab a:link { font-weight: normal;}
.tab a:visited { font-weight: normal; }
.tab a:active { font-weight: normal; }
.tab a:hover { font-weight: normal; }
.trail { font-size: 70%; }
.trail a:link { font-weight: normal;}
.trail a:visited { font-weight: normal; }
.trail a:active { font-weight: normal; }
.trail a:hover { font-weight: normal; }
.dtdTag { color: #990000; text-transform : uppercase; font-style : normal; font-size : 120%; font-weight : bold; }
.top-left {
background-color: #a5b6c6;
background-image: url(images/top-left.png);
background-repeat: no-repeat;
background-position: top left;
width : 5px;
height : 5px;
}
.top-right {
background-color: #a5b6c6;
background-image: url(images/top-right.png);
background-repeat: no-repeat;
background-position: top right;
width : 5px;
height : 5px;
}
.top-left-tab {
background-color: #cedfef;
background-image: url(images/top-left.png);
background-repeat: no-repeat;
background-position: top left;
width : 5px;
height : 5px;
}
.top-right-tab {
background-color: #cedfef;
background-image: url(images/top-right.png);
background-repeat: no-repeat;
background-position: top right;
width : 5px;
height : 5px;
}
.bottom-left {
background-color: #a5b6c6;
background-image: url(images/bottom-left.png);
background-repeat: no-repeat;
background-position: bottom left;
width : 5px;
height : 5px;
}
.bottom-right {
background-color: #a5b6c6;
background-image: url(images/bottom-right.png);
background-repeat: no-repeat;
background-position: bottom right;
width : 5px;
height : 5px;
}
.bottom-left-thick {
background-color: #a5b6c6;
background-image: url(images/bottom-left.png);
background-repeat: no-repeat;
background-position: bottom left;
width : 5px;
height : 9px;
}
.bottom-right-thick {
background-color: #a5b6c6;
background-image: url(images/bottom-right.png);
background-repeat: no-repeat;
background-position: bottom right;
width : 5px;
height : 9px;
}
@media print {
.headerlogo { display: none; }
.textheader { display: block; font-size : 70%; }
.menu { display: none; }
.dida { display: none; }
.minitoc { display: none; }
.search { display: none; }
.datenote { display: none; }
/*.footnote { display: none; }*/
.tab { display: none; }
.trail { display: none; }
.logos { display: none; }
.top-left { display: none; }
.top-right { display: none; }
.top-left-tab { display: none; }
.top-right-tab { display: none; }
.bottom-left { display: none; }
.bottom-right { display: none; }
.bottom-left-thick { display: none; }
.bottom-right-thick { display: none; }
}