/*
BODY, TABLE
Tags
Assign style to BODY and TABLE tags to set standard
default font to be inherited throughout
entire site
Arial, 10pt, black.
*/
BODY, TABLE
{
font-family: Arial, Verdana, Sans-Serif, Helvetica;
font-size: 10pt;
color: #000000;
}
/*
BODY
Tag
Assign style to body tag to set default
bg color to be inherited throughout
entire site
Light green bg
*/
BODY
{
background-color: #FFFFFF;
}
/*
TABLE
Tag
Assign style for all tables to display bg color
different than default page bg
White bg
*/
TABLE
{
background-color: #ffffff;
}
/*
A:link
Tag
Assign color style for text links
Blue
*/
A:link
{
color: #0044CF;
}
/*
A:hover
Tag
Assign color style for text links when you mouse
over them
Red
*/
A:hover
{
color: #FF0000;
}
/*
A:visited
Tag
Assign color style for visited text links
Dark Green
*/
A:visited
{
color: #2A5442;
}
/*
StrongContent
Class
Assign font-weight style to text that has
to stand out
Bold
*/
.StrongContent
{
font-weight: bold;
}
/*
ButtonStyle
Class
Assign style for button and button text
Light green button with green text
*/
.ButtonStyle
{
font-family: Arial, Verdana, Sans-Serif, Helvetica;
font-size: 8pt;
background-color: #E9B500;
border: solid 1px black;
color: White;
font-weight: bold;
text-align: center;
}
/*
SideBorders
Class
Define the side borders on the main pages of the site
set to 1px and set the color to a dark
*/
.SideBorders
{
width: 0px;
background: #FFFFFF;
}
/*
StrongErrorStyle
Class
Sets error page heading style
Bold, red, 18pt font
*/
.StrongErrorStyle
{
font-weight: bold;
font-size: 18pt;
color: #FF0000;
}
/*
ErrorStyle
Class
Sets error page font style
Bold, red
*/
.ErrorStyle
{
font-weight: bold;
color: #FF0000;
}
/*
PageTitle
Class
Sets page title font style
bold, green, 11pt
*/
.PageTitle
{
width: 100%;
font-size: 11pt;
background-color: #E9B500;
border: solid 1px black;
color: White;
font-weight: bold;
text-align: left;
padding-left: 10px;
}
/*
alphabeticallisting, MajorCategories, FeaturedMagazines,
EmailNewsletters, footer
Class
Sets font styles for corresponding controls to
display smaller than inherited font size
8pt font
*/
.alphabeticallisting, .MajorCategories, .FeaturedMagazines, .EmailNewsletters, .footer, .MagazinesAffiliateControl, .SpecialsControl
{
font-size: 8pt;
}
.footer
{
text-align: center;
}
/*
.alphabeticallistingcell,.MajorCategoriesCell
{
width: 160px;
}
*/
.MajorCategoryHeader
{
margin: 4px 0px 0px 0px;
padding: 5px 2px;
background-color: #E9B500;
border-top: solid 1px black;
border-left: solid 1px black;
border-right: solid 1px black;
color: White;
font-weight: bold;
text-align: center;
}
.MajorCategories
{
padding: 5px 2px;
list-style: none;
margin: 0px;
padding: 0px;
border-bottom: solid 1px black;
border-left: solid 1px black;
border-right: solid 1px black;
text-align: center;
background-color: #E7E7E7;
}
.alphabeticallisting
{
margin: 4px 0px 0px 0px;
padding: 0px;
border: solid 1px black;
text-align: center;
background-color: #E7E7E7;
width: 100%;
}
/*
FreeLabel
Class
Sets font for featured mags display
8pt font, free label green
*/
/* PREVIOUS JOSHY COMMENT - Class required by the categories.aspx page. This class is referenced
Programatically, i.e. the code expects the existence of this class. */
.FreeLabel
{
font-family: Arial, Verdana, Sans-Serif, Helvetica;
font-size: 8pt;
}
/*
MagazineThumbnail
Class
Sets magazine thumbnail display
width - 65px; height - 84px;
*/
/* PREVIOUS JOSHY COMMENT - Style used for display magazine images in the categories page. */
.MagazineThumbnail
{
width : 65px;
height: 84px;
}
/*
LargeMagazineThumbnail
Class
Sets magazine thumbnail display on description.aspx
width - 65px; height - 84px;
*/
.LargeMagazineThumbnail
{
width : 120px;
height: 160px;
}
/*********************
Use the following 2 classes to control the alignment of the
main table on the page.
All 3 alignments, Left, Center and Right are provided.
Just uncomment the ones you want to use.
*********************/
/*********** USE THESE CLASSES TO LEFT JUSTIFY THE CONTENT ****************/
/*
MainTable
Class
Control the display of the main table on all pages. This is for Firefox
Left Justify
.MainTable
{
}
*/
/*
MainDiv
Class
Control the display of the main div tag on all pages. This if for IE control
Left Justify
.MainDiv
{
}
*/
/*********** USE THESE CLASSES TO CENTER THE CONTENT ****************/
/*
MainTable
Class
Control the display of the main table on all pages. This is for Firefox
Center
*/
.MainTable
{
margin-left: auto;
margin-right: auto;
margin-top: auto;
margin-bottom: auto;
}
/*
MainDiv
Class
Control the display of the main div tag on all pages. This if for IE control
Center
*/
.MainDiv
{
text-align: center;
}
*/
/*********** USE THESE CLASSES TO RIGHT JUSTIFY THE CONTENT ****************/
/*
MainTable
Class
Control the display of the main table on all pages. This is for Firefox
Right Justify
.MainTable
{
margin-left: auto;
margin-right: 0;
margin-top: auto;
margin-bottom: auto;
}
*/
/*
MainDiv
Class
Control the display of the main div tag on all pages. This if for IE control
Right Justify
.MainDiv
{
text-align: right;
}
*/