﻿/*focsp common2.css used in vpasr website*/

/*a basic reset */
body {margin: 0; padding: 0; border: 0;}

body {
	color: black;
	font-size: 16px;
	font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
	background-color:#479e91; /*lighten this  main background;*/
}

/* end basic reset */
* {
    box-sizing: border-box;
}   
.rt-border{
	border-right:2px black solid;
}

/*Each row should be wrapped in a <div>. The number of columns inside a row should always add up to 12 */
/*Each column is 1/12 th of the page */

/* For mobile phones: */
[class*="col-"] {
    width: 100%;
    font-size: 15px;
}
@media only screen and (min-width: 768px) {
    /* For desktop: */
body {   margin:0 auto;
   		font-size: 14px;
    }
    .col-1 {width: 8.33%;}
    .col-2 {width: 16.66%;}
    .col-3 {width: 25%;}
    .col-4 {width: 33.33%;}
    .col-5 {width: 41.66%;}
    .col-6 {width: 50%;}
    .col-7 {width: 58.33%;}
    .col-8 {width: 66.66%;}
    .col-9 {width: 75%;}
    .col-10 {width: 83.33%;}
    .col-11 {width: 91.66%;}
    .col-12 {width: 100%;} 
}

@media only screen and (min-width: 600px) {
    /* For tablets: */    
    body {    margin:0 auto;
   		font-size: 14px;}

    .col-m-1 {width: 8.33%;}
    .col-m-2 {width: 16.66%;}
    .col-m-3 {width: 25%;}
    .col-m-4 {width: 33.33%;}
    .col-m-5 {width: 41.66%;}
    .col-m-6 {width: 50%;}
    .col-m-7 {width: 58.33%;}
    .col-m-8 {width: 66.66%;}
    .col-m-9 {width: 75%;}
    .col-m-10 {width: 83.33%;}
    .col-m-11 {width: 91.66%;}
    .col-m-12 {width: 100%;}
}

[class*="col-"] {
    float: left;
    padding: 15px;
}

.row::after {
    content: "";
    clear: both;
    display: table;
}

img {
    max-width: 100%;
    height: auto;
}


/* Styles for Masthead */
/*masthead is a single banner image - so styles are not used*/
#masthead {
	margin-bottom:10px;
	margin-top:10px
}
/* Styles for Footer */
#footer {
	width: 100%;/* 620px *//*convert all widths to % */
	text-align: center;
	background-color: blue;
	padding-top: 5px;
	padding-bottom: 5px;
	width: auto;
	clear: both;
	overflow: auto;
}

#footer p {
	font-size: 14px;
	line-height: 18px;
	color: #fff;
	margin: 1px;
	padding: 1px;
}
#footer a {
	color: #fff;
	text-decoration: underline;
}
#footer a:hover {
	color: #00cc00;/*#00cc00=green*/
	text-decoration: none;
}

/* Styles for none menu Links */
a {
	color: #003366;
	text-decoration: underline;
}
a:hover {
	color: yellow; /*#808080;*/
	text-decoration: none;
	border-bottom:2px yellow solid;/*under every <a> - menus and other links*/
}

.disclaimer {
	border:5px red solid;
	background-color:#66cc99;
	padding:5px;
}

/* general styles*/
.txt_bold {font-weight: bold;}
.txt_italic {font-style: italic;}
.txt_underline{text-decoration:underline;}

.button{border:0;}
.noborder{border:0;}
.float_right {float:right;}
.float_left {float:left;}

.center{
	text-align:center;
	margin:0 auto;
}

img.center {
    display: block;
    margin-left: auto;
    margin-right: auto }
    
/* two column table */
table{
	border-collapse:collapse;
}
.twocol{
	margin:10px auto 10px auto;
	border-collapse:collapse;
	background-color:#fcba7a;
}
td, th{
	border-collapse: collapse;
	padding: 10px;
}


/* font colors and styles*/
.red{color:red;}
.blue{color:blue;}
.yellow{color:#ffff00;}
.white{
	color:white;
}
.bg-yellow{background-color:yellow}

