/* css document */
/* --------BCIT: MDIA 1205 One Column Fixed Width Centered Layout with Floated Images
Updated: May. 20, 2022 -------*/	

/*-------this declaration must always come first as it applies to the entire page-----*/
body 
{
font-family: 'Trirong';
   color: #000;
   background-color: #ccc;
   font-size: 1em;
}
/* vietnamese */
@font-face {
  font-family: 'Trirong';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/trirong/v11/7r3GqXNgp8wxdOdOn4Qo2JZg.woff2) format('woff2');
  unicode-range: U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB;
}
/* latin */
@font-face {
  font-family: 'Audiowide';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/audiowide/v16/l7gdbjpo0cum0ckerWCdlg_O.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}
/* latin */
@font-face {
  font-family: 'Sofia';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/sofia/v14/8QIHdirahM3j_su5uI0.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/*------ Page wrapper ------*/
/*---The id #wrapper occurs second in the style sheet document as it covers the entire page content.---*/

#wrapper 
/*--this declaration must always come second as it applies to the content area of the page--*/
{
   margin: 0 auto; /*centers page for modern browsers*/
   width: 960px;
   text-align: left;
   color: #000;
   background-color: #fff;
}	

/*----General link formatting---*/
/*---It is a good idea to always set general link formatting right after the body/wrapper declarations, especially 
if you are using a color scheme on your page with which the default link colors may not coordinate.---*/

a:link
{ color: #000;
  }
a:hover
{ color: #c30;
   text-decoration: none;
}

/*---Banner styles--*/
/*--The page #header IDs follow in logical order from top down on the page.--*/
#header
{  color: #fff;
   background-color: #069;
   padding: 1px;
   height: 20%;
}	

#header h1
{  font-family:"Audiowide", serif;
   text-align: center;
    text-shadow: 5px 5px 5px #fff;
   font-size: 2.0em;
}
/*---These two classes are especially designed to style the two logo images in the banner.--*/

.floatL
{ /*for left flag in banner*/
   float: left;
   padding: 4px;
   border: 0;
}
.floatR
{ /*for right flag in banner*/
   float: right;
   padding: 4px;
   border: 0;
}	
/*--This class styles the slogan within the header. --*/
.slogan
{   font-size: 1.5em;
 font-family: "Trirong", serif;
text-align: center;
    font-style: italic;
}
/*--Navbar styles--*/
/*--The #navigation menu styles follow the header.--*/
/*--We continue to use the longhand background-color: for link-related material.--*/
#navcontainer
{  font-family: "Sofia", sans-serif;
   color: #900;
   background-color: #C0D25A;
   padding: 6px 0;     
}
#navcontainer p
{  margin: 0;
   padding: 6px;
   text-align: center;
}
#navcontainer p a
{  padding: 1px 30px;
   color: #fc0;
   background-color: #069;
   font-size: 1.1em;
}	
/*--To create hover effect.--*/

#navcontainer p a:hover
{  color: #fff;
   background-color: #900;
   text-decoration: none;
}	

/*--Reformatting the link for the current page to show where the viewer is “sitting” in your site 
and also disable it using the hash mark (#) in the HTML--*/

#navcontainer p a#current
{  color: #900;
   background-color: #c0d25a;
   text-decoration: none;
   padding: 3px 30px;
   border: 0px solid black;
}	
/*--Content styles--*/
/*--Then we add the page #content styles.--*/
#content
{  color: #000;
   background-color: #fff;
}
#content p
     
{  padding: 4px 10px; /* top/bottom Soft Line Wrap   left/right */
   line-height: 140%; /* gives a bit of Soft Line Wrap  breathing room to paragraph text */
}
#content h2
{  color: #069;
   background-color: #fff;
   font-size: 1.6em;
   margin: 20px 0 10px 100px; 
}
  /* top right bottom left */
#content h3
{  color: #069;
   background-color: #fff;
   font-size: 1.3em;
  font-weight: bold;
  margin-top: 0.83em;
  margin-bottom: 0.83em;
  margin-left: 50px;
  margin-right: 0;
display: block;
}  
/*--The img declarations to add border styling and other values to the images used in the content area of the page.
 This will add a border and some padding to these images on the page. --*/
img
{  border: 4px solid #ccc;
   padding: 4px;
}
img.floatleft
{  float: left;
   margin: 10px 10px 10px 15px;
   padding: 4px;
   border: 2px solid #C0D25A;
     border-radius: 18px;
}
img.floatright
{  float: right;
   margin: 10px 15px 10px 10px;
   padding: 4px;
   border: 1px solid #C0D25A;
}	
figure 
{ border: 1px #cccccc solid;
  padding: 1px;
  margin: auto;
float: right;
}
figcaption 
{ background-color: black;
  color: red;
  font-style: italic;
  padding: 4px;
  text-align: center;
}
table, th, td 
{  border:1px solid black;
}
/*--Footer style--*/
/*--And, finally we have the #footer style at the bottom of the page. Item 8--*/
#footer-panel 
{   color: #fc0;
    float: left; 
    text-align: center; 
    width: 100%; 
    background-color: #069;
    border: 1px solid #C0D25A;
}
#footer
{  font-family: Georgia, Times, "Times New Roman", serif;
   color: #900;
   background-color: #c0d25a;
   text-align: center;
   padding: 20px;
}	


.table	/* Table */
{   width: 950px;
	font-size: 1.2em;
 	margin: 0 auto;
    color: #900;
   	border: black solid 2px;
   	border-collapse: collapse;
   	line-height: 150%;
}
.stripes1 /* Table Row Colour*/
{ background-color:#c0d250;
}

.stripes2 /* Table Row Colour */
{
   	background-color:#eeeeee;
}
.important
{ color: red;
  font-weight: bold;
}

.rside /* Table */
{ text-align: right;
}

.center /* Table */
{ text-align: center;
}

ul.a
{   list-style-type:  circle;
}
ul.b
{  list-style-type: square;
}
ol.a
{list-style-type:  lower-alpha;
}
ol.b
{list-style-type:  upper-roman;
}