﻿/* Purpose:  SiteMasterLayoutPrintable.css...
   
   Revision History:
   -----------------
   2008-Feb - Added new debug definitions for troubleshooting Lagan integration
   issue with "Mozilla" browser window.  The debug definitions were applied
   to ContentDisplay.aspx to find issue resolution.  (EYang)
   2008-Jan - Initial Release for BerkeleyExtranetSite project.  (EYang)
*/



#GlobalSiteHeaderContainer, #Col1OuterContainer, .contentToolbarContainer
{
  display: none;
}

#Col2OuterContainer 
{ 
  width: 100%;
	background-color: #ffffff;  
}

#Col2InnerContainer
{
	padding: 5px 5px 5px 5px;
}

/* BEGIN - some necessary duplicate styles between SiteMasterLayout.css
   and SiteMasterLayoutPrintable.css to preserve consistency of presentation
   in browser window and in printable form
*/
.imageContainerFloatRight
{
  float: right;
  /* margin: 0px 0px 10px 10px; */
  margin-left: 10px;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 10px;
}
/* END - some necessary duplicate styles */

/* BEGIN - More duplicates from SiteMasterLayout.css for "homePageLinkCollection-"
containers */
.homePageLinkCollectionsOuterContainer
{
  position: relative; 
  border: solid 0px red; /* activate non-zero border with for testing only */
  margin-bottom: 10px; /* create some spacing below the link boxes */
}

.homePageLinkCollectionInnerContainer1of3  /* 3-box case, resolved at run-time
                                           in PortalHomePageLinkCollection.ascx */
{
  position: relative; /* only column 1 should be relatively positioned to stay
                         in document flow, let its height determine height for
                         the entire set */
  left: 0%; 
  top: 0px; 
}

.homePageLinkCollectionInnerContainer2of3 /* 3-box case, resolved at run-time
                                          in PortalHomePageLinkCollection.ascx */
{
  position: absolute; 
  left: 34%; 
  top: 0px; 
}

.homePageLinkCollectionInnerContainer3of3 /* 3-box case, resolved at run-time
                                          in PortalHomePageLinkCollection.ascx */
{
  position: absolute; 
  left: 68%; 
  top: 0px; 
}

.homePageLinkCollectionBoxSetof3 /* generic styles for 3-box cases */
{
  border: solid 0px #000000; /* activate non-zero border width for testing only */
  width: 223px; /* uniform widths for 3-box case */
}


.homePageLinkCollectionInnerContainer1of2  /* 2-box case, resolved at run-time
                                          in PortalHomePageLinkCollection.ascx */
{
  position: relative; /* only column 1 should be relatively positioned to stay
                         in document flow, let its height determine height for
                         the entire set */
  left: 0%; 
  top: 0px; 
}

.homePageLinkCollectionInnerContainer2of2 /* 2-box case, resolved at run-time
                                          in PortalHomePageLinkCollection.ascx */
{
  position: absolute; 
  left: 51%; 
  top: 0px; 
}

.homePageLinkCollectionBoxSetof2 /* generic styles for 2-box cases */
{
  border: solid 0px #000000; /* activate non-zero border with for testing only */
  width: 343px; /* uniform widths for 2-box case */
}

/* END - duplicates for "homePageLinkCollection-" styles */

/* TEMP DEBUGGING - 2-5-08 (duplicated between SiteMasterLayout.css
   and SiteMasterLayoutPrintable.css) */
.debugShow
{
  display: block;
  visibility: visible;
}

.debugHide
{
  display: none;
  visibility: hidden;
}