/* Copyright Petr Menšík aka Pedro 
Tento css soubor slouží jako stylový soubor, terý obsahuje veškeré fonty a jejich styly v redakčních systémech phpGO.

DŮLEŽITÉ:

písmeno R ve třídě znamená že se jedná o resizable rozměr (jednoty jsou em) - např.: textRMedium

*/

strong {
font-weight: bold;
}

/*  definovaná pravidla  */

/*  text  */

.text { font-family: "Arial", sans-serif }
.textAlter { font-family: "Trebuchet MS", "Geneva CE", lucida, sans-serif; }
/*  @text  */


/*  text - zarovnani  */

.textLeft { text-align: left; }
.textRight { text-align: right; }
.textCenter { text-align: center; }
.textJustify { text-align: justify; }

/*  @text - zarovnani  */

/*  text - velikost  */

.textXXSmall { font-size: 9px; }
.textXSmall { font-size: 11px; }
.textSmall { font-size: 12px; }
.textMedium { font-size: 13px; }
.textXLarge { font-size: 15px; }
.textXXLarge { font-size: 17px; }

.textRXXSmall { font-size: 0.6em; }
.textRXSmall { font-size: 0.7em; }
.textRMedium { font-size: 0.8em; }
.textRLarge { font-size: 1.0em; }
.textRXLarge { font-size: 1.2em; }
.textRXXLarge { font-size: 1.4em; }


/*  @text - velikost  */

/*  text - barva  */

.textRed { color: #FF0000; }
.textBlack { color: #000000; }
.textOrange { color: #FFCC00; }
.textPink { color: #FF33FF; }
.textGrown { color: #996600; }
.textGreen { color: #3C6928; }
.textBlue { color: #0000FF; }
.textWhite { color: #FFFFFF; }
.textGray { color: #707070; }
.textDarkGray { color: #626469; }
.textDarkRed { color: #ba1319; }

/*  @text - barva  */

/*  text - styl  */

.textBold { font-weight: bold; }
.textItalic { font-style: italic; }
.textUnderline { text-decoration: underline; }
.textNone { font-weight: normal; }

/*  @text - styl  */

/*  odkazy - podtržení  */

.none-underline { text-decoration: none; }
.none-underline:hover { text-decoration: underline; }

/*  @odkazy - podtržení  */

/*  @definovaná pravidla  */

/*      EXTRA      */

.textSvatek { border: 1px solid black; }

