/******************************************************************************/
/* fortuner.css                                                               */
/*                                                                            */
/* Date     Description                                          Name         */
/* -------- --------------------------------------------------   ------------ */
/* 20251207 Initial coding.                                      Rodney       */
/******************************************************************************/
/******************************************************************************/
/* Global Element Settings                                                    */
/******************************************************************************/
/* #region Global Elements Settings */
a
{
  color: blue;
}

h1
{
  font-family: Verdana;
  padding-top: 20px;
}

h2
{
  font-family: Verdana;
  padding-top: 20px;
}

h3
{
  font-family: Verdana;
  padding-top: 20px;
}

p
{
  font-family: Verdana;
  padding-top: 20px; 
}

ul
{
  font-family: Verdana;
  padding-left: 25px;
}
/* #endregion */
/******************************************************************************/
/* Classes                                                                    */
/******************************************************************************/
/* #region Classes */

.clsImageBanner
{
  /****************************************************************************/
  /* The display CSS property sets whether an element is treated as a block   */ 
  /* or inline box and the layout used for its children, such as flow layout, */ 
  /* grid or flex.  The default value for this property is block.             */
  /*                                                                          */
  /* Setting the display property to block ensures that the image is centered */
  /* horizontally within the parent <div>.                                    */
  /****************************************************************************/
  display:block;
  
  /****************************************************************************/
  /* The CSS margin properties are used to create space around elements,      */
  /* outside of any defined borders.                                          */
  /*                                                                          */
  /* The browser selects a suitable margin to use. For example, in certain    */ 
  /* cases this value can be used to center an element.                       */
  /****************************************************************************/
  margin: 0 auto;
  max-width: 100%;
  padding-bottom: 20px;
}
.clsHR
{
  background-color: rgb(201, 201, 201);
  border: none;
  height: 1px;
  margin-top: 20px;
  width: 100%;
}
.clsDivRolodex
{
  float: right;         /* Shifts image to the right side */
  width: 300px;
}
.clsImgRolodex
{
  max-width: 100%;      /* Ensures responsiveness on mobile */
  width: inherit;
}
.clsRolodexCaption
{
  font-family: Verdana;
  font-size: 10px;
  text-align:center;
  width: inherit;
}
/* #endregion */
/******************************************************************************/
/* IDs                                                                        */
/******************************************************************************/
/* #region IDs */
#idDivMainPage
{
  margin-left: 100px;
  margin-right: 100px;
}
/* #endregion */