/* style for all text in page */


/* it's a general style for text on site (homepage, about, etc) all text it centered on page */
.txt-all{
FONT-SIZE: 12px; /* change size of font */
line-height: 13px; /* change size between lines of text */
COLOR: navy;       /* change color of text */
font-family: Verdana; /* change font of text */
text-align:center /* change alignment of text. it can be center, left, right, justify */
}

/* links for txt-all */
.txt-all a:link, .txt-all a:visited, .txt-all a:active {
text-decoration: none;
color:000000;
font-size: 10px;
font-family: verdana;
font-weight: bold;
}

/* links for txt-all when hover */
.txt-all a:hover {
color:blue;
font-size: 10px;
font-family: verdana;
font-weight: bold;
text-decoration: underline;
}



/* it's another general style for text on site but all text not centered but float to the left */
.txt-all-left{
FONT-SIZE: 12px; /* change size of font */
line-height: 13px; /* change size between lines of text */
COLOR: navy;       /* change color of text */
font-family: Verdana; /* change font of text */
text-align:left; /* change alignment of text. it can be center, left, right, justify */
}

/* links for txt-all-left */
.txt-all-left a:link, .txt-all-left a:visited, .txt-all-left a:active {
text-decoration: none;
color:000000;
font-size: 10px;
font-family: verdana;
font-weight: bold;
}

/* links for txt-all-left when hover */
.txt-all-left a:hover {
color:blue;
font-size: 10px;
font-family: verdana;
font-weight: bold;
text-decoration: underline;
}




/* it's style for white text on grey background  */
.txt-all-white{
FONT-SIZE: 10px; /* change size of font */
line-height: 13px; /* change size between lines of text */
COLOR: black;       /* change color of text */
font-family: Verdana; /* change font of text */
text-align:left; /* change alignment of text. it can be center, left, right, justify */
font-weight: bold;
}

/* links for txt-all-white  */
.txt-all-white a:link, .txt-all-white a:visited, .txt-all-white a:active {
text-decoration: none;
color:black;
font-size: 10px;
font-family: verdana;
font-weight: bold;
}

/* links for txt-all-white when hover */
.txt-all-white a:hover {
color:yellow !important;
font-size: 10px;
font-family: verdana;
font-weight: bold;
text-decoration: underline;
}



/* it's style for text 'welcome' on homepage  */
.txt-slogan{
FONT-SIZE: 22px;
COLOR: #000000;
font-family: Verdana;
font-weight: bold;
text-align:center;
padding-top:10px;  /* change top padding between text blocks */
padding-bottom:10px;  /* change bottom padding between text blocks */
}
#blk{
color: #000;
}

/* it's style for text like 'welcome' but used on another pages  */
.txt-slogan-all{
FONT-SIZE: 18px;
COLOR: black;
font-family: Verdana;
font-weight: bold;
padding-top:0px;  /* change top padding between text blocks */
padding-bottom:3px;  /* change bottom padding between text blocks */
}

/* it's style for text like 'welcome' but used on another pages with stars  */
.txt-slogan-star{
FONT-SIZE: 20px;
COLOR: #7700FF;
font-family: Verdana;
font-weight: bold;
padding-top:0px;  /* change top padding between text blocks */
padding-bottom:3px;  /* change bottom padding between text blocks */
}


/* it's style for text that higlited in some way (used on homepage)  */
.txt-highlited{
FONT-SIZE: 11px; /* change size of font */
line-height: 12px; /* change size between lines of text */
COLOR: #FF0000;       /* change color of text */
font-family: Verdana; /* change font of text */
text-align:center; /* change alignment of text. it can be center, left, right, justify */

}






