﻿/* This one appears in the Apply Styles ribbon section. */
/* The following is an example of adding a class to the 
   Styles Section of the ribbon. If you preface your class 
   name with “.ms-rteStyle-“ and have the “-ms-name:” in 
   the properties section your will add the new class. */

.ms-rteStyle-MyStyle {
	-ms-name: "My Style";
	color:blue;
}


/* This one appears in the Markup Styles ribbon section. */
/* The following is an example of adding a class to the 
   Markup Styles Section of the ribbon. If you preface your class 
   name with “DIV.ms-rteElement“ and have the “-ms-name:” in 
   the properties section your will add the new class. */

DIV.ms-rteElement-MyMarkup {
	-ms-name: "My Markup";
	color:lime;
}