/***************************************************************
* 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: Verdana, Arial;
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;
}
/***************************************************************
* 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: 1px;
background: #ffffff;
}
/***************************************************************
* TABLE
* Tag
* Assign style for all tables to display bg color
* different than default page bg
* White bg
*****************************************************************/
td.leftsidetablecell
{
width: 300px;
}
.maincontentcell
{
padding-left: 10px;
}
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
{
border: 1px outset #EEEEEE;
background-color: #EEEEEE;
font-family: iArial, Verdana, Sans-Serif, Helvetica;
font-size: 8pt;
color: #666633;
font-weight: bold;
}
/***************************************************************
* 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
{
font-family: Helvetica, Verdana, Arial;
font-size: 13px;
color: #663333;
font-weight: bold;
text-align: center;
}
/***************************************************************
* NewMagazinesHeaderStyle, FeaturedMagazinesHeaderStyle, UsefulMagazinesHeaderStyle
* Class
*
*
*****************************************************************/
.NewMagazinesHeaderStyle, .UsefulMagazinesHeaderStyle, .FeaturedMagazinesHeaderStyle
{
background-color: #CCCC99;
font-family: Verdana, Arial, Sans-Serif;
font-size: 12px;
font-weight: bold;
color: black;
}
/***************************************************************
*NewMagazinesStyle, FeaturedMagazinesStyle, UsefulMagazinesStyle
* Class
*
*
*****************************************************************/
table.NewMagazinesStyle, table.FeaturedMagazinesStyle, table.UsefulMagazinesStyle
{
font-family: Arial, Sans-Serif, Verdana, Verdana Ref;
font-size: 8pt;
margin-right: 30px;
margin-left: 30px;
border-collapse:collapse;
border-spacing:0;
border: none;
border-style: hidden;
border: 1px solid;
border-color: #A9A9A9;
}
/***************************************************************
* 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
{
margin:0;
padding:0;
font-size: 12px;
}
.alphabeticallistingcellhead, .MajorCategoriescellhead
{
margin-top: 15px;
border-top: 1px solid;
text-align: left;
font-size: 15px;
font-weight: bold;
background-color: #CCCC99;
}
.alphabeticallistingcellhead, .alphabeticallistingcell, .MajorCategoriescellhead, .MajorCategoriesCell
{
margin-left: 7px;
padding: 2px;
border-left: 1px solid;
border-right: 1px solid;
border-color: #A9A9A9;
FONT-FAMILY: Verdana, Arial;
}
.cbesplashimage
{
margin-left: 7px;
margin-top: 7px;
}
.alphabeticallistingcell, .MajorCategoriesCell
{
border-bottom: 1px solid;
border-color: #A9A9A9;
padding: 15px;
}
ul.MajorCategories
{
list-style-image: url(http://www.constructionbook.com/images/orange-arrow.gif);
padding: 7px;
}
/***************************************************************
* 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 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;
width: 100%
}
/***************************************************************
* MainDiv
* Class
* Control the display of the main div tag on all pages. This if for IE control
* Center
*****************************************************************/
.MainDiv
{
text-align: center;
}