/* Peninsula Sinai Congregation - CSS */

/* Select common font for all text */

body {
	font-family:Arial, Helvetica, sans-serif;
	font-size: 10pt;
}

/* Create a class of link named 'navbar' */

a.navbar
{
  font-size: 10pt;
  font-weight: bold;
  font-style: normal;
  text-decoration: none;
}
a.navbar:link { 
color: rgb(255, 204, 0); 
background-color: rgb(0, 140, 148);  
} 
a.navbar:visited { 
color: rgb(255, 204, 0);  
background-color: rgb(0, 140, 148); 
} 
a.navbar:hover { 
color: black; 
background-color: rgb(255, 204, 0); 
} 
a.navbar:active { 
color: black; 
background-color: rgb(255, 204, 0); 
} 

a.yellowtext
{
	color: #FFFF00;
}

/* Create a class of link named 'bluetext' */

a.bluetext
{
  color: blue;
}

/* Create a class of paragraph named 'outlinebox' */

p.outlinebox {
width: 450px;
padding: 5px;
border: double #000066;
}

/* Create a class of paragraph named 'graybg' */

p.graybg {
background: #CCCCCC;
}

/* Create a border for main table */

table.main {
border: 2px ridge #333333;
}
