/**
 * @file
 * CKEditor specific CSS.
 */


/*
 * Bootstrap breakpoints :
 *   (xs) Extra small <576px : portrait phones
 *   (sm) Small >=576px :landscape phones
 *   (md) Medium >=768px : tablets
 *   (lg) Large >=992px : desktops
 *   (xl) X-Large >=1200px : extra-large desktops 
 *   (xxl) XX-Large >=1400px : extra-extra-large desktops
 * 
 * Valeurs numériques font-weight :
 *   font-weight: 100	Thin
 *   font-weight: 200	ExtraLight
 *   font-weight: 300	Light
 *   font-weight: 400   Regular	> "font-weight: normal"
 *   font-weight: 500	Medium
 *   font-weight: 600	SemiBold
 *   font-weight: 700	Bold 	> "font-weight: bold"
 *   font-weight: 800   ExtraBold
 *   font-weight: 900   Black
 *  
 */


/* CKEditor - Global */
/* ----------------- */
.ck-content {
	font-family: 'Futura PT Light';
    font-weight: normal;
	font-size: 16px; 
	color: #000000;
}

.ck-content a {
	color: #c0a639;
	text-decoration: none;
}
.ck-content a:hover,
.ck-content a:focus,
.ck-content a.active {
	color: #59abb2;
	text-decoration: none;
}

.ck-content p {
	margin: 0px;
	padding: 0px;
}

.ck-content b, .ck-content strong {
	font-family: 'Futura PT Book';
}

.ck-content ul {
	padding-left: 0px;
}
.ck-content ul li {
	list-style-type: '-  ';
	/*list-style-position: inside;*/
}

.spacer {
	clear: both;
	visibility: hidden;
}
