
/* All styles for texts, links and titles of the website
	1 - Headers and titles
	2 - Texts, paragraphs and variations
	3 - Links styles
	5 - Upper and lower case
	6 - Quotes for different languages
	7 - General
*/



/* 1 - Headers and titles
************************************************************************************/

.title
{
	font-family: Arial;
	font-weight: bold;
	font-size: 18px;
	color: #000000;
}

.page-title
{
	margin: 10px 0px 15px 0px;
}
.title-white
{
	font-family: Arial;
	font-weight: 600;
	font-size: 20px;
	color: #ffffff;
}
.title-white-capitalized
{
    text-transform:capitalize;
}
.twitter-title
{
	font-weight: bold;
	font-size: 21px;
	display:block;
	margin-bottom:15px;
}
/* 2 - Texts, paragraphs and variations
************************************************************************************/

.text
{
	font-size: 12px;
}

.text-big
{
	font-size: 14px;
}

.text-bigger
{
	font-size: 16px;
}

.text-small
{
	font-size: 11px;
}

.text-smaller
{
	font-size: 10px;
}

.text-large
{
	font-size: 18px;
}

.text-larger
{
	font-size: 20px;
}

.text-huge
{
	font-size: 30px;
}

.text-gray
{
	color: #595959;
}

.text-white
{
	color: White !important;
}

.text-black
{
	color: Black !important;
}

.text-orange
{
	color: #d48a1d;
}

.text-red, .problem-message
{
	color: #e12e29 !important;
}

.underline
{
	text-decoration: underline !important;
}
.text-small
{
	font-size:smaller;
}
.text-smaller
{
	font-size: x-small;
	font-weight:bold;
}

.bold
{
	font-weight:bold;
}
/* 3 - Links styles
************************************************************************************/

.link, a.link, a:visited.link, a:active.link, a
{ 
	color: #cb8100;
	text-decoration: none;
	font-weight: normal;
}

a:hover.link
{ 
	color: #e9ab3f;
	text-decoration: underline
}


/* 5 - Upper and lower case
************************************************************************************/

.uppercase
{
	text-transform: uppercase;
}

/* 6 - Quotes for different languages
************************************************************************************/


/* 7 - General
************************************************************************************/

.align-right
{
	text-align: right;
}

