diff --git a/src/main/java/org/olat/core/gui/control/generic/docking/_content/docked.html b/src/main/java/org/olat/core/gui/control/generic/docking/_content/docked.html
index c12f0ac20fd560ea3af8b203edf314a513e8414c..cdc1444856162d7bbb72faf595ee23b6a05cea9f 100644
--- a/src/main/java/org/olat/core/gui/control/generic/docking/_content/docked.html
+++ b/src/main/java/org/olat/core/gui/control/generic/docking/_content/docked.html
@@ -14,6 +14,6 @@ function $r.getId("undf")() {
 }
 </script>
 <div id="$r.getId("undck")">
-	<a id="b_content_popup" href="javascript:$r.getId("undf")()" title="$r.translateInAttribute("command.undock")"><i class="o_icon o_icon_content_popup">&nbsp;</i></a>	
+	<a class="o_content_popup" href="javascript:$r.getId("undf")()" title="$r.translateInAttribute("command.undock")"><i class="o_icon o_icon_content_popup o_icon-lg"></i></a>	
 	$r.render("controllerComp")
 </div>
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/TitledWrapperHelper.java b/src/main/java/org/olat/course/nodes/TitledWrapperHelper.java
index 8767427ed2fa0ad7dda419c6c6edeadbba1134ca..e8809f0546015ae688d3a55634db79afca566fd6 100644
--- a/src/main/java/org/olat/course/nodes/TitledWrapperHelper.java
+++ b/src/main/java/org/olat/course/nodes/TitledWrapperHelper.java
@@ -42,7 +42,7 @@ public class TitledWrapperHelper {
 			return controller;
 		} else if (CourseNode.DISPLAY_OPTS_SHORT_TITLE_CONTENT.equals(displayOption)) {
 			TitleInfo titleInfo = new TitleInfo(null, courseNode.getShortTitle(), null, courseNode.getIdent());
-			titleInfo.setDescriptionCssClass("o_course_run_objectives");
+			titleInfo.setDescriptionCssClass("o_objectives");
 			if (StringHelper.containsNonWhitespace(iconCssClass)) {
 				titleInfo.setIconCssClass(iconCssClass);
 			}
@@ -50,7 +50,7 @@ public class TitledWrapperHelper {
 			return titledController; 
 		} else if (CourseNode.DISPLAY_OPTS_TITLE_CONTENT.equals(displayOption)) {
 			TitleInfo titleInfo = new TitleInfo(null, courseNode.getLongTitle(), null, courseNode.getIdent());
-			titleInfo.setDescriptionCssClass("o_course_run_objectives");
+			titleInfo.setDescriptionCssClass("o_objectives");
 			if (StringHelper.containsNonWhitespace(iconCssClass)) {
 				titleInfo.setIconCssClass(iconCssClass);
 			}
@@ -66,7 +66,7 @@ public class TitledWrapperHelper {
 			}
 			
 			TitleInfo titleInfo = new TitleInfo(null, title, description, courseNode.getIdent());
-			titleInfo.setDescriptionCssClass("o_course_run_objectives");
+			titleInfo.setDescriptionCssClass("o_objectives");
 			if (StringHelper.containsNonWhitespace(iconCssClass)) {
 				titleInfo.setIconCssClass(iconCssClass);
 			}
@@ -82,7 +82,7 @@ public class TitledWrapperHelper {
 			}
 			
 			TitleInfo titleInfo = new TitleInfo(null, title, description, courseNode.getIdent());
-			titleInfo.setDescriptionCssClass("o_course_run_objectives");
+			titleInfo.setDescriptionCssClass("o_objectives");
 			if (StringHelper.containsNonWhitespace(iconCssClass)) {
 				titleInfo.setIconCssClass(iconCssClass);
 			}
diff --git a/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_de.properties b/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_de.properties
index 1daf4a432a3e92697de4ba179c53ef63281623a5..69b010a2f9b00d30ab5a18d2433e292183cec9c4 100644
--- a/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_de.properties
+++ b/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_de.properties
@@ -27,4 +27,5 @@ title_wiki=Wiki
 title_ll=Linkliste
 title_projectbroker=Themenvergabe
 title_podcast=Podcast
-title_blog=Blog
\ No newline at end of file
+title_blog=Blog
+personal.title=Leistungsübersicht
diff --git a/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_en.properties b/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_en.properties
index 433300dadf9d67ee73cf9b9326d3655d8a88c10c..95fbce8ba5a5459bb0370b849013190c30d4b5fc 100644
--- a/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_en.properties
+++ b/src/main/java/org/olat/course/nodes/_i18n/LocalStrings_en.properties
@@ -28,3 +28,4 @@ title_st=Structure
 title_ta=Task
 title_tu=External page
 title_wiki=Wiki
+personal.title=Performance summary
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/basiclti/LTIRunController.java b/src/main/java/org/olat/course/nodes/basiclti/LTIRunController.java
index 3d35deb5eefabb3ef9b6c08867865469a740e549..507fd5204c207c6d3c546a284620d5d643edcef4 100644
--- a/src/main/java/org/olat/course/nodes/basiclti/LTIRunController.java
+++ b/src/main/java/org/olat/course/nodes/basiclti/LTIRunController.java
@@ -37,8 +37,8 @@ import org.olat.core.gui.UserRequest;
 import org.olat.core.gui.components.Component;
 import org.olat.core.gui.components.link.Link;
 import org.olat.core.gui.components.link.LinkFactory;
-import org.olat.core.gui.components.panel.StackedPanel;
 import org.olat.core.gui.components.panel.SimpleStackedPanel;
+import org.olat.core.gui.components.panel.StackedPanel;
 import org.olat.core.gui.components.velocity.VelocityContainer;
 import org.olat.core.gui.control.Event;
 import org.olat.core.gui.control.WindowControl;
@@ -50,8 +50,10 @@ import org.olat.core.id.UserConstants;
 import org.olat.core.util.Encoder;
 import org.olat.core.util.SortedProperties;
 import org.olat.core.util.StringHelper;
+import org.olat.core.util.Util;
 import org.olat.course.groupsandrights.CourseGroupManager;
 import org.olat.course.nodes.BasicLTICourseNode;
+import org.olat.course.nodes.CourseNode;
 import org.olat.course.properties.CoursePropertyManager;
 import org.olat.course.run.environment.CourseEnvironment;
 import org.olat.course.run.scoring.ScoreEvaluation;
@@ -91,7 +93,7 @@ public class LTIRunController extends BasicController {
 	
 	public LTIRunController(WindowControl wControl, ModuleConfiguration config, UserRequest ureq, BasicLTICourseNode ltCourseNode,
 			CourseEnvironment courseEnv) {
-		super(ureq, wControl);
+		super(ureq, wControl, Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		this.courseNode = ltCourseNode;
 		this.config = config;
 		this.roles = ureq.getUserSession().getRoles();
@@ -119,7 +121,7 @@ public class LTIRunController extends BasicController {
 	 */
 	public LTIRunController(WindowControl wControl, ModuleConfiguration config, UserRequest ureq, BasicLTICourseNode ltCourseNode,
 			UserCourseEnvironment userCourseEnv) {
- 		super(ureq, wControl);
+ 		super(ureq, wControl, Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		this.courseNode = ltCourseNode;
 		this.config = config;
 		this.userCourseEnv = userCourseEnv;
diff --git a/src/main/java/org/olat/course/nodes/basiclti/_content/overview.html b/src/main/java/org/olat/course/nodes/basiclti/_content/overview.html
index ec4ba48b2e128bf475fb2ffe444b39ba4c21c879..b88b400d7049a28ccf38cb3529f4bfb3e42b4c00 100644
--- a/src/main/java/org/olat/course/nodes/basiclti/_content/overview.html
+++ b/src/main/java/org/olat/course/nodes/basiclti/_content/overview.html
@@ -2,7 +2,7 @@
 	#if($attempts > 0)
 	<div class="panel panel-default o_personal">
 	  	<div class="panel-heading">
-	  		<h4 class="panel-title">$r.translate("score.title")</h4>
+	  		<h4 class="panel-title">$r.translate("personal.title")</h4>
 	  	</div>
 		<table class="table">
 		<tbody>
@@ -33,7 +33,7 @@
 					<i class="o_icon o_icon_failed"></i> 
 					$r.translate("passed.no")
 				#else
-					$r.translate("passed.noinfo")
+					$r.translateWithPackage("org.olat.course.nodes.st", "passed.noinfo")
 				#end
 				</td>
 			</tr>
diff --git a/src/main/java/org/olat/course/nodes/cl/ui/CheckListRunController.java b/src/main/java/org/olat/course/nodes/cl/ui/CheckListRunController.java
index ad7db41500a1faa29eb6d1b6f04d0bd67425a01e..7a828087d63a46c878d31d757d919b5b7786118e 100644
--- a/src/main/java/org/olat/course/nodes/cl/ui/CheckListRunController.java
+++ b/src/main/java/org/olat/course/nodes/cl/ui/CheckListRunController.java
@@ -40,6 +40,7 @@ import org.olat.core.gui.control.Controller;
 import org.olat.core.gui.control.ControllerEventListener;
 import org.olat.core.gui.control.WindowControl;
 import org.olat.core.gui.control.generic.dtabs.Activateable2;
+import org.olat.core.gui.translator.Translator;
 import org.olat.core.gui.util.CSSHelper;
 import org.olat.core.id.OLATResourceable;
 import org.olat.core.id.context.ContextEntry;
@@ -49,6 +50,7 @@ import org.olat.core.logging.activity.StringResourceableType;
 import org.olat.core.logging.activity.ThreadLocalUserActivityLogger;
 import org.olat.core.util.Formatter;
 import org.olat.core.util.StringHelper;
+import org.olat.core.util.Util;
 import org.olat.core.util.vfs.VFSContainer;
 import org.olat.core.util.vfs.VFSItem;
 import org.olat.core.util.vfs.VFSLeaf;
@@ -56,6 +58,7 @@ import org.olat.core.util.vfs.VFSMediaResource;
 import org.olat.course.assessment.AssessmentHelper;
 import org.olat.course.auditing.UserNodeAuditManager;
 import org.olat.course.nodes.CheckListCourseNode;
+import org.olat.course.nodes.CourseNode;
 import org.olat.course.nodes.MSCourseNode;
 import org.olat.course.nodes.cl.CheckboxManager;
 import org.olat.course.nodes.cl.model.Checkbox;
@@ -99,7 +102,7 @@ public class CheckListRunController extends FormBasicController implements Contr
 	 */
 	public CheckListRunController(UserRequest ureq, WindowControl wControl, UserCourseEnvironment userCourseEnv,
 			OLATResourceable courseOres, CheckListCourseNode courseNode) {
-		super(ureq, wControl, "run");
+		super(ureq, wControl, "run", Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		
 		this.courseNode = courseNode;
 		this.courseOres = courseOres;
diff --git a/src/main/java/org/olat/course/nodes/cl/ui/_content/run.html b/src/main/java/org/olat/course/nodes/cl/ui/_content/run.html
index d7937ce1b3d0a4a449d51043ab8c95fbe39d9027..b051e6613bf0576e9759d7b743bfdc535fa068ec 100644
--- a/src/main/java/org/olat/course/nodes/cl/ui/_content/run.html
+++ b/src/main/java/org/olat/course/nodes/cl/ui/_content/run.html
@@ -1,7 +1,7 @@
 #if($hasScoreField || $hasPassedField)
 	<div class="panel panel-default o_personal">
 	  	<div class="panel-heading">
-	  		<h4 class="panel-title">$r.translate("score.title")</h4>
+	  		<h4 class="panel-title">$r.translate("personal.title")</h4>
 	  	</div>
 		<table class="table">
 		<tbody>
@@ -53,17 +53,13 @@
 	</div>
 #end
 
-#if ($hasCommentField)		
+#if ($comment)		
 	<div class="panel panel-default o_comment">
 	  	<div class="panel-heading" data-toggle="collapse" data-target="#collapseComment">
 	  		<h4 class="panel-title">$r.translate("comment.title")</h4>
 	  	</div>
 		<div id="collapseComment" class="panel-collapse collapse in"><div class="panel-body">
-			#if($comment)
-				$comment
-			#else
-				<div class="o_noinfo">$r.translate("comment.nocomment")</div>
-			#end
+			$comment
   		</div></div>
 	</div>
 #end
@@ -89,35 +85,40 @@
 			<p>
 				$r.translate("run.due.date.desc")
 			</p>
-			<p class="#if($afterDueDate) o_passed #else o_failed #end">
+			<p class="#if($afterDueDate) o_failed #else o_passed #end">
+				<i class="o_icon o_icon_calendar o_icon-fw"></i>
 				$r.translate("run.due.date", $r.formatDateAndTime($dueDate))
 			</p>
   		</div></div>
 	</div>
 #end
 
-<div class="o_cl row">
-	<div class="col-xs-12 col-sm-2"><h5>$r.translate("run.mark")</h5></div>
-	<div class="col-xs-12 col-sm-10"><h5>$r.translate("run.info")</h5></div>
-</div>
-#foreach($checkbox in $checkboxList)
-	<div class="o_cl_line row clearfix #if($velocityCount %2 == 0) o_even #else o_odd #end">
-		<div class="col-xs-12 col-sm-2">
-			$r.render($checkbox.checkboxElName)
-		</div>
-		<div class="col-xs-12 col-sm-10">
-			<h5 class="o_cl_title">
-				$checkbox.title 
-				#if($withScore && $checkbox.pointsAvailable) 
-				<small>$r.translate("box.points.info", $checkbox.points)</small>
+<div class="o_cl o_block_large">
+	<div class="o_cl_header hidden-xs row">
+		<div class="col-sm-3"><h4>$r.translate("run.mark")</h4></div>
+		<div class="col-sm-6"><h4>$r.translate("run.info")</h4></div>
+	</div>
+	<hr class="hidden-xs" />
+	#foreach($checkbox in $checkboxList)
+		<div class="o_cl_line row clearfix #if($velocityCount %2 == 0) o_even #else o_odd #end">
+			<div class="col-xs-12 col-sm-3">
+				$r.render($checkbox.checkboxElName)
+			</div>
+			<div class="col-xs-12 col-sm-9">
+				<h4 class="o_cl_title">
+					$checkbox.title 
+					#if($withScore && $checkbox.pointsAvailable) 
+					<small>$r.translate("box.points.info", $checkbox.points)</small>
+					#end
+				</h4>
+				#if($checkbox.description)
+					<div class="o_cl_desc">$checkbox.description</div>
 				#end
-			</h5>
-			#if($checkbox.description)
-				<div class="o_cl_desc">$checkbox.description</div>
-			#end
-			#if($checkbox.checkbox.filename)
-				<div class="o_cl_file">$r.render($checkbox.downloadName)</div>
-			#end
+				#if($checkbox.checkbox.filename)
+					<div class="o_cl_file">$r.render($checkbox.downloadName)</div>
+				#end
+			</div>
 		</div>
-	</div>
-#end
+	#end
+</div>
+
diff --git a/src/main/java/org/olat/course/nodes/cp/_content/run.html b/src/main/java/org/olat/course/nodes/cp/_content/run.html
deleted file mode 100644
index 39152fedfa0d9e8e52cab31e1332c32b1f70b060..0000000000000000000000000000000000000000
--- a/src/main/java/org/olat/course/nodes/cp/_content/run.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<div class="o_course_run">
-	<h3 class="b_with_small_icon_left o_cp_icon">$!menuTitle</h3>
-	<div class="o_course_run_displaytitle">$!displayTitle</div>
-	#if($hasObjectives)
-		$r.render("learningObjectives")
-	#end
-	<div class="b_button_group">
-		$r.render("command.showcp")
-	</div>
-</div>
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ar.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ar.properties
index e87c0d66cc9aef8f540586d7dfa3ca71b9cc4440..46409d1c4fc29cb8bf67f581529a128e6ac63c1c 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ar.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ar.properties
@@ -28,7 +28,7 @@ command.choosecp=\u0627\u062E\u062A\u064A\u0627\u0631 \u062D\u0632\u0645\u0629 \
 command.closecp=\u0625\u063A\u0644\u0627\u0642 \u0627\u0644\u0646\u0627\u0641\u0630\u0629
 command.createcp=\u062A\u062D\u062F\u064A\u062F \u0648\u0625\u0646\u0634\u0627\u0621 \u0623\u0648 \u0627\u0633\u062A\u064A\u0631\u0627\u062F \u062D\u0632\u0645\u0629 \u0645\u062D\u062A\u0648\u0649 \u0627\u0644\u062A\u0639\u0644\u064A\u0645
 command.preview=\u0645\u0639\u0627\u064A\u0646\u0629
-command.showcp=\u0639\u0631\u0636 \u0645\u062D\u062A\u0648\u0649 \u062D\u0632\u0645\u0629 \u0627\u0644\u062A\u0639\u0644\u064A\u0645
+
 condition.accessibility.title=\u0648\u0635\u0648\u0644
 display.config.compMenu=\u0645\u0639 \u062A\u0635\u0641\u062D \u0645\u062D\u062A\u0648\u0649 \u0627\u0644\u062A\u0639\u0644\u064A\u0645\u061F
 display.config.fieldset=\u0639\u0631\u0636
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_bg.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_bg.properties
index 596feaf42d578912c782fba92220496f3c00da25..e22fccb97d8a079584fbc140d605fcce35f1cafa 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_bg.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_bg.properties
@@ -27,7 +27,7 @@ command.changecp=\u0421\u043C\u0435\u043D\u0435\u0442\u0435 CP \u0443\u0447\u043
 command.choosecp=\u0418\u0437\u0431\u0435\u0440\u0435\u0442\u0435 CP \u0443\u0447\u0435\u0431\u043D\u043E \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435
 command.closecp=\u0417\u0430\u0442\u0432\u043E\u0440\u0435\u0442\u0435 \u043F\u0440\u043E\u0437\u043E\u0440\u0435\u0446
 command.preview=\u041F\u043E\u043A\u0430\u0436\u0435\u0442\u0435 \u043F\u0440\u0435\u0433\u043B\u0435\u0434
-command.showcp=\u041F\u043E\u043A\u0430\u0436\u0435\u0442\u0435 CP \u0443\u0447\u0435\u0431\u043D\u043E \u0441\u044A\u0434\u044A\u0440\u0436\u0430\u043D\u0438\u0435
+
 condition.accessibility.title=\u0414\u043E\u0441\u0442\u044A\u043F
 display.config.compMenu=\u0421\u044A\u0441 CP \u043D\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044F \u043B\u0438?
 display.config.fieldset=\u041F\u043E\u043A\u0430\u0436\u0435\u0442\u0435
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_cs.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_cs.properties
index 236c8a106d1d670ca6b698ea6c19ba5001473b9d..cd5dbcbadbb0d7e59c853c5bcd90ba33b3c37d6d 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_cs.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_cs.properties
@@ -27,7 +27,7 @@ command.changecp=Nahradit studijn\u00ED materi\u00E1l CP
 command.choosecp=Vybrat studijn\u00ED materi\u00E1l CP
 command.closecp=Zav\u0159\u00EDt okno studijn\u00EDho materi\u00E1lu CP 
 command.preview=N\u00E1hled
-command.showcp=Zobrazit studijn\u00ED materi\u00E1l CP
+
 condition.accessibility.title=P\u0159\u00EDstup
 display.config.compMenu=S CP navigac\u00ED?
 display.config.fieldset=Zobrazit
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_da.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_da.properties
index ba603fb72563f364521ff67cb5d080fa5f70cf34..a321d4673e7ebc09a4675c434459c2a5a03d4579 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_da.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_da.properties
@@ -27,7 +27,7 @@ command.changecp=Erstat CP l\u00E6ringsindhold
 command.choosecp=V\u00E6lg CP l\u00E6ringsindhold
 command.closecp=Luk vinduet med CP l\u00E6ringsindhold
 command.preview=Forh\u00E5ndsvisning
-command.showcp=Vis CP l\u00E6ringsindhold
+
 condition.accessibility.title=Adgange
 display.config.compMenu=Med CP navigation?
 display.config.fieldset=Visning
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_de.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_de.properties
index ba496c7d38a4284207a883881166c94fa435c219..e4db6b5c2ac5321ba27273d87dbc5608c559f4c5 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_de.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_de.properties
@@ -31,7 +31,7 @@ command.createcp=CP-Lerninhalt w\u00E4hlen, erstellen oder importieren
 command.choosecp=CP-Lerninhalt w\u00E4hlen
 command.closecp=Ansicht schliessen
 command.preview=Vorschau anzeigen
-command.showcp=CP-Lerninhalt anzeigen
+
 preview.cp=Vorschau
 condition.accessibility.title=Zugang
 display.config.compMenu=CP-Navigation anzeigen
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_el.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_el.properties
index 258adee0730ad96e0e3cf9daa5ddb8f5779c2b14..80cecd8a5442b67ffb9686d6af4e340a319b2a8a 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_el.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_el.properties
@@ -30,7 +30,7 @@ command.choosecp=\u0395\u03C0\u03B9\u03BB\u03BF\u03B3\u03AE \u03C0\u03B5\u03C1\u
 command.closecp=\u039A\u03BB\u03B5\u03AF\u03C3\u03B9\u03BC\u03BF \u03C0\u03B1\u03C1\u03B1\u03B8\u03CD\u03C1\u03BF\u03C5 \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03BC\u03AC\u03B8\u03B7\u03C3\u03B7\u03C2 CP
 command.createcp=\u0395\u03C0\u03B9\u03BB\u03AD\u03BE\u03C4\u03B5, \u03B4\u03B7\u03BC\u03B9\u03BF\u03C5\u03C1\u03B3\u03AE\u03C3\u03C4\u03B5 \u03AE \u03B5\u03B9\u03C3\u03AC\u03B3\u03B5\u03C4\u03B5 \u03A0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF \u03BC\u03AC\u03B8\u03B7\u03C3\u03B7\u03C2 CP
 command.preview=\u03A0\u03C1\u03BF\u03B5\u03C0\u03B9\u03C3\u03BA\u03CC\u03C0\u03B7\u03C3\u03B7
-command.showcp=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03C0\u03B5\u03C1\u03B9\u03B5\u03C7\u03CC\u03BC\u03B5\u03BD\u03BF\u03C5 \u03BC\u03AC\u03B8\u03B7\u03C3\u03B7\u03C2 CP
+
 condition.accessibility.title=\u03A0\u03C1\u03CC\u03C3\u03B2\u03B1\u03C3\u03B7
 display.config.compMenu=\u03A0\u03C1\u03BF\u03B2\u03BF\u03BB\u03AE \u03C0\u03BB\u03BF\u03AE\u03B3\u03B7\u03C3\u03B7\u03C2 CP
 display.config.fieldset=\u0395\u03BC\u03C6\u03AC\u03BD\u03B9\u03C3\u03B7
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_en.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_en.properties
index 8fe67d5962635074f47af306c42215758ef3e980..1bbb6ca0a3b66ac43e73040dd07fcdd2e942a6af 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_en.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_en.properties
@@ -30,7 +30,7 @@ command.choosecp=Choose CP learning content
 command.closecp=Close window
 command.createcp=Select, create or import CP learning content
 command.preview=Show preview
-command.showcp=Show CP learning content
+
 condition.accessibility.title=Access
 display.config.compMenu=Show CP navigation
 display.config.compNextPrevious=Show previous/next navigation in content
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_es.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_es.properties
index 1595e27f4c477f8a6797cb8f03e0c3c0c799aa50..deb99f6fbcc1acd2aad985850e90ce889d686c09 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_es.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_es.properties
@@ -27,7 +27,7 @@ command.changecp=Cambiar el contenido did\u00E1ctico CP
 command.choosecp=Elige contenido did\u00E1ctico CP 
 command.closecp=Cerrar la ventana de contenido did\u00E1ctico CP
 command.preview=Mostrar vista previa 
-command.showcp=Mostrar contenido did\u00E1ctico CP
+
 condition.accessibility.title=Acceso
 display.config.compMenu=Con navegaci\u00F3n CP?
 display.config.fieldset=Visualizaci\u00F3n
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_fr.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_fr.properties
index 0f04c03e1c8fec6679ed6760e480c48a447e39e9..e9d6c643f66d76b5d0a6780226e89c2b81e8c7e4 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_fr.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_fr.properties
@@ -30,7 +30,7 @@ command.choosecp=Choisir contenu didactique CP
 command.closecp=Fermer aper\u00E7u
 command.createcp=S\u00E9lectionner, cr\u00E9er ou importer contenu didactique CP
 command.preview=Afficher aper\u00E7u
-command.showcp=Afficher contenu didactique CP
+
 condition.accessibility.title=Acc\u00E8s
 display.config.compMenu=Afficher la navigation CP
 display.config.compNextPrevious=Montrer en avant / retour
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_it.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_it.properties
index b11eb6e78215089cea7c90c302f588fb2d4c1ac4..09d2f78a687b4e158a24ffafdab85787a9a0172f 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_it.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_it.properties
@@ -30,7 +30,7 @@ command.choosecp=Selezionare contenuto didattico CP
 command.closecp=Chiudere anteprima
 command.createcp=Selezionare, creare o importare un contenuto didattico CP
 command.preview=Mostrare anteprima
-command.showcp=Mostrare contenuto didattico CP
+
 condition.accessibility.title=Accesso
 display.config.compMenu=Mostrare la navigazione CP
 display.config.fieldset=Visualizzazione
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_jp.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_jp.properties
index 0079f527297277f33c66f0a8fb787429bea589ba..882b88bd3993b650002823c9abfd1dfea2612cad 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_jp.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_jp.properties
@@ -30,7 +30,7 @@ command.choosecp=CP\u5B66\u7FD2\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u9078\u629E\
 command.closecp=\u30A6\u30A3\u30F3\u30C9\u30A6\u3092\u9589\u3058\u308B
 command.createcp=\u5B66\u7FD2\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u9078\u629E\u3001\u4F5C\u6210\u307E\u305F\u306F\u30A4\u30F3\u30DD\u30FC\u30C8\u3059\u308B
 command.preview=\u30D7\u30EC\u30D3\u30E5\u30FC\u3092\u8868\u793A\u3059\u308B
-command.showcp=CP\u5B66\u7FD2\u30B3\u30F3\u30C6\u30F3\u30C4\u3092\u8868\u793A\u3059\u308B
+
 condition.accessibility.title=\u30A2\u30AF\u30BB\u30B9
 display.config.compMenu=CP\u30CA\u30D3\u30B2\u30FC\u30B7\u30E7\u30F3?
 display.config.fieldset=\u8868\u793A
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_lt.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_lt.properties
index 45e0e47e80bf8e4936abbc4208dad83ea0903d1f..1711535a57a73c351f1fefb167aff86a34b018f7 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_lt.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_lt.properties
@@ -27,7 +27,7 @@ command.changecp=Pakeiskite CP mokymosi turin\u012F
 command.choosecp=Pasirinkite CP mokymosi turin\u012F
 command.closecp=U\u017Edarykite CP mokymosi turinio lang\u0105.
 command.preview=Per\u017Ei\u016Bra
-command.showcp=Parodykite CP mokymosi turin\u012F
+
 condition.accessibility.title=Prieiga
 error.cprepoentrymissing=CP mokymosi turinys, kur\u012F j\u016Bs norite pamatyti tuo tarpu yra i\u0161trintas.
 error.launch=Negali paleisti CP mokymosi turinio
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_nl_NL.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_nl_NL.properties
index 6a6f7bbd0f6d0f4baea7dfc5f60f3130a69fb54d..0f4d9bcba42171a83ef17b14a3c2f3485695f9d7 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_nl_NL.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_nl_NL.properties
@@ -30,7 +30,7 @@ command.choosecp=Kies CP leerinhoud
 command.closecp=Sluit venster
 command.createcp=Selecteer, maak aan of importeer CP leerinhoud
 command.preview=Toon voorvetoning
-command.showcp=Toon CP leerinhoud
+
 condition.accessibility.title=Toegang
 display.config.compMenu=Toon CP navigatie
 display.config.fieldset=Toon
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pl.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pl.properties
index e75e39ee2c0cc8fa85379ea09b6fb73c662c648c..1566c1452eb2e9abe3c600066efd0ef636af27dc 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pl.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pl.properties
@@ -30,7 +30,7 @@ command.choosecp=Wybierz zawarto\u015B\u0107 edukacyjn\u0105 CP
 command.closecp=Zamknij okno z zawarto\u015Bci\u0105 edukacyjn\u0105 CP
 command.createcp=Wybierz, utw\u00F3rz lub importuj zawarto\u015B\u0107 CP
 command.preview=Podgl\u0105d
-command.showcp=Poka\u017C zawarto\u015B\u0107 edukacyjn\u0105 CP
+
 condition.accessibility.title=Dost\u0119p
 display.config.compMenu=Z nawigacj\u0105 z CP?
 display.config.fieldset=Wy\u015Bwietl
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_BR.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_BR.properties
index 525fb80948aa6d93a719c1161b992653bca2ef23..372636e60a0a2386529fae5c62bc24ccc401b66b 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_BR.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_BR.properties
@@ -30,7 +30,7 @@ command.choosecp=Escolher m\u00F3dulo IMS-CP
 command.closecp=Fechar visualiza\u00E7\u00E3o
 command.createcp=Selecionar, criar ou importar conte\u00FAdos de aprendizagem IMS-CP
 command.preview=Visualizar
-command.showcp=Exibir 
+
 condition.accessibility.title=Acesso
 display.config.compMenu=Com navega\u00E7\u00E3o IMS-CP?
 display.config.compNextPrevious=Mostrar navega\u00E7\u00E3o anterior / seguinte no conte\u00FAdo
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_PT.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_PT.properties
index dc4b9aa7e2ae3a1a08d375392f94eeab0c7aacea..f19f3de7856e61d68a4a032ff370ee0e1f31639d 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_PT.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_pt_PT.properties
@@ -27,7 +27,7 @@ command.changecp=Substituir m\u00F3dulo IMS-CP
 command.choosecp=Escolher m\u00F3dulo IMS-CP
 command.closecp=Fechar visualiza\u00E7\u00E3o
 command.preview=Visualizar
-command.showcp=Exibir 
+
 condition.accessibility.title=Acesso
 display.config.compMenu=Com navega\u00E7\u00E3o IMS-CP?
 display.config.fieldset=Exibir
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ru.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ru.properties
index 5be8d393d86fc496c010c3902a64237621ca2810..29511b1342144941fb576201cb47dbde49aacfc0 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ru.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_ru.properties
@@ -19,7 +19,7 @@ command.choosecp=\u0412\u044B\u0431\u0440\u0430\u0442\u044C \u0443\u0447\u0435\u
 command.closecp=\u0417\u043A\u0440\u044B\u0442\u044C \u043F\u043E\u043A\u0430\u0437
 command.createcp=\u0412\u044B\u0431\u0435\u0440\u0438\u0442\u0435, \u0441\u043E\u0437\u0434\u0430\u0439\u0442\u0435 \u0438\u043B\u0438 \u0438\u043C\u043F\u043E\u0440\u0442\u0438\u0440\u0443\u0439\u0442\u0435 \u0443\u0447\u0435\u0431\u043D\u043E\u0435 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u043D\u0438\u0435 CP
 command.preview=\u041F\u0440\u0435\u0434\u0432\u0430\u0440\u0438\u0442\u0435\u043B\u044C\u043D\u044B\u0439 \u043F\u0440\u043E\u0441\u043C\u043E\u0442\u0440
-command.showcp=\u041F\u043E\u043A\u0430\u0437\u0430\u0442\u044C \u0443\u0447\u0435\u0431\u043D\u043E\u0435 \u0441\u043E\u0434\u0435\u0440\u0436\u0430\u043D\u0438\u0435 CP
+
 condition.accessibility.title=\u0414\u043E\u0441\u0442\u0443\u043F
 display.config.compMenu=\u0421 \u043D\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u0435\u0439 CP?
 display.config.fieldset=\u041F\u043E\u043A\u0430\u0437
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_sq.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_sq.properties
index 94dd895e72d501b9072dd12d38c85af14e184b56..ab7c93bf4ab019560f37a59f1dafde9be39889e4 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_sq.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_sq.properties
@@ -27,7 +27,7 @@ command.changecp=Z\u00EBvend\u00EBso p\u00EBrmbajtje CP
 command.choosecp=P\u00EBrzgjedh p\u00EBrmbajtje m\u00EBsimi CP
 command.closecp=Mbylle dritaren e p\u00EBrmbajtjes s\u00EB m\u00EBsimit CP
 command.preview=Parafishimi
-command.showcp=Paraqit p\u00EBrmbajtje m\u00EBsimi CP
+
 condition.accessibility.title=Qasje
 display.config.compMenu=Me navigimin CP ?
 display.config.fieldset=Ekrani
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_CN.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_CN.properties
index 6ceff545425db8931db441a9ba2526cdf9be23e0..d3ce995df16296b5bd05ab973fa8c371f41642a8 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_CN.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_CN.properties
@@ -30,7 +30,7 @@ command.choosecp=\u9009\u62E9CP\u5B66\u4E60\u5185\u5BB9
 command.closecp=\u5173\u95EDCP\u5B66\u4E60\u5185\u5BB9\u7A97\u53E3
 command.createcp=\u9009\u62E9\u3001\u521B\u5EFA\u6216\u8005\u5BFC\u5165CP\u5B66\u4E60\u5185\u5BB9
 command.preview=\u9884\u89C8
-command.showcp=\u663E\u793ACP\u5B66\u4E60\u5185\u5BB9
+
 condition.accessibility.title=\u8BBF\u95EE
 display.config.compMenu=\u663E\u793ACP\u5BFC\u822A
 display.config.fieldset=\u663E\u793A
diff --git a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_TW.properties b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_TW.properties
index 868c159162a0ef02723465cdb7b5ec81a5678e59..dfb0c2714ce6b32e51a9ee2a4328023a16d8e347 100644
--- a/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_TW.properties
+++ b/src/main/java/org/olat/course/nodes/cp/_i18n/LocalStrings_zh_TW.properties
@@ -28,7 +28,7 @@ command.choosecp=\u9078\u64C7 CP \u5B78\u7FD2\u5167\u5BB9
 command.closecp=\u95DC\u9589\u8996\u7A97
 command.createcp=\u9078\u64C7\u3001\u5EFA\u7ACB\u6216\u532F\u5165 CP \u5B78\u7FD2\u5167\u5BB9
 command.preview=\u986F\u793A\u9810\u89BD
-command.showcp=\u986F\u793A CP \u5B78\u7FD2\u5167\u5BB9
+
 condition.accessibility.title=\u5B58\u53D6
 display.config.compMenu=\u986F\u793A CP \u5C0E\u89BD
 display.config.fieldset=\u986F\u793A
diff --git a/src/main/java/org/olat/course/nodes/fo/_content/displayconfig.html b/src/main/java/org/olat/course/nodes/fo/_content/displayconfig.html
deleted file mode 100644
index 3b1bafd0868f8236dbe5c12715e7536123af73f0..0000000000000000000000000000000000000000
--- a/src/main/java/org/olat/course/nodes/fo/_content/displayconfig.html
+++ /dev/null
@@ -1 +0,0 @@
-to delete
diff --git a/src/main/java/org/olat/course/nodes/fo/_content/run.html b/src/main/java/org/olat/course/nodes/fo/_content/run.html
deleted file mode 100644
index 5a61d38f6d14afb40b927eb65843f01d6162a4a5..0000000000000000000000000000000000000000
--- a/src/main/java/org/olat/course/nodes/fo/_content/run.html
+++ /dev/null
@@ -1 +0,0 @@
-to delete
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/iq/IQRunController.java b/src/main/java/org/olat/course/nodes/iq/IQRunController.java
index 1a27adcf65655c0c1d6211c0b4e20fd7f576ea6a..548d3f08a96a3bb628c83c8904fade28805b3437 100644
--- a/src/main/java/org/olat/course/nodes/iq/IQRunController.java
+++ b/src/main/java/org/olat/course/nodes/iq/IQRunController.java
@@ -58,6 +58,7 @@ import org.olat.core.logging.activity.ThreadLocalUserActivityLogger;
 import org.olat.core.util.Formatter;
 import org.olat.core.util.StringHelper;
 import org.olat.core.util.UserSession;
+import org.olat.core.util.Util;
 import org.olat.core.util.event.EventBus;
 import org.olat.core.util.event.GenericEventListener;
 import org.olat.core.util.resource.OresHelper;
@@ -139,7 +140,7 @@ public class IQRunController extends BasicController implements GenericEventList
 	 * @param testCourseNode
 	 */
 	IQRunController(UserCourseEnvironment userCourseEnv, ModuleConfiguration moduleConfiguration, IQSecurityCallback secCallback, UserRequest ureq, WindowControl wControl, IQTESTCourseNode testCourseNode) {
-		super(ureq, wControl);
+		super(ureq, wControl, Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		
 		this.modConfig = moduleConfiguration;
 		this.secCallback = secCallback;
@@ -230,7 +231,7 @@ public class IQRunController extends BasicController implements GenericEventList
 	 * @param selftestCourseNode
 	 */
 	IQRunController(UserCourseEnvironment userCourseEnv, ModuleConfiguration moduleConfiguration, IQSecurityCallback secCallback, UserRequest ureq, WindowControl wControl, IQSELFCourseNode selftestCourseNode) {
-		super(ureq, wControl);
+		super(ureq, wControl, Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		
 		this.modConfig = moduleConfiguration;
 		this.secCallback = secCallback;
@@ -271,7 +272,7 @@ public class IQRunController extends BasicController implements GenericEventList
 	 * @param surveyCourseNode
 	 */
 	IQRunController(UserCourseEnvironment userCourseEnv, ModuleConfiguration moduleConfiguration, IQSecurityCallback secCallback, UserRequest ureq, WindowControl wControl, IQSURVCourseNode surveyCourseNode) {
-		super(ureq, wControl);
+		super(ureq, wControl, Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		
 		this.modConfig = moduleConfiguration;
 		this.secCallback = secCallback;
diff --git a/src/main/java/org/olat/course/nodes/iq/_content/selftestrun.html b/src/main/java/org/olat/course/nodes/iq/_content/selftestrun.html
index 7d0e29b6d2586f926c1e30490d597ff5321ef234..52904c9f7a93468093dfb1ebe4f3a7ccebb6dc13 100644
--- a/src/main/java/org/olat/course/nodes/iq/_content/selftestrun.html
+++ b/src/main/java/org/olat/course/nodes/iq/_content/selftestrun.html
@@ -2,7 +2,7 @@
 	#if ($hasResults)
 		<div class="panel panel-default o_personal">
 		  	<div class="panel-heading">
-	  			<h4 class="panel-title">$r.translate("score.title")</h4>
+	  			<h4 class="panel-title">$r.translate("personal.title")</h4>
 	  		</div>
 			<table class="table">
 			<tbody>
@@ -28,7 +28,7 @@
 						<i class="o_icon o_icon_failed"></i> 
 						$r.translate("passed.no")
 					#else
-						$r.translate("passed.noinfo")
+						$r.translateWithPackage("org.olat.course.nodes.st", "passed.noinfo")
 					#end
 					</td>
 				</tr>
diff --git a/src/main/java/org/olat/course/nodes/iq/_content/testrun.html b/src/main/java/org/olat/course/nodes/iq/_content/testrun.html
index ced5d959057cb446a19cb7fb2e93bdb64453a16a..d41efb207bcd3c67502ef5e2f23df45bd6badbfb 100644
--- a/src/main/java/org/olat/course/nodes/iq/_content/testrun.html
+++ b/src/main/java/org/olat/course/nodes/iq/_content/testrun.html
@@ -2,7 +2,7 @@
 	#if($attempts > 0)
 		<div class="panel panel-default o_personal">
 		  	<div class="panel-heading">
-	  			<h4 class="panel-title">$r.translate("score.title")</h4>
+	  			<h4 class="panel-title">$r.translate("personal.title")</h4>
 	  		</div>
 			<table class="table">
 			<tbody>
@@ -34,7 +34,7 @@
 						<i class="o_icon o_icon_failed"></i> 
 						$r.translate("passed.no")
 					#else
-						$r.translate("passed.noinfo")
+						$r.translateWithPackage("org.olat.course.nodes.st", "passed.noinfo")
 					#end
 					</td>
 				</tr>
diff --git a/src/main/java/org/olat/course/nodes/members/MembersCourseNodeRunController.java b/src/main/java/org/olat/course/nodes/members/MembersCourseNodeRunController.java
index b7ec515f3914d8ee16396e305dbf2e36deb57d02..4f36b54c656a9a025301fa66b5abff5ae3c017a5 100644
--- a/src/main/java/org/olat/course/nodes/members/MembersCourseNodeRunController.java
+++ b/src/main/java/org/olat/course/nodes/members/MembersCourseNodeRunController.java
@@ -124,12 +124,12 @@ public class MembersCourseNodeRunController extends FormBasicController {
 		
 		boolean canEmail =  canEmail(owners, coaches);
 		if(canEmail) {
-			ownersEmailLink = uifactory.addFormLink("owners-email", "", null, formLayout, Link.NONTRANSLATED);
-			ownersEmailLink.setCustomEnabledLinkCSS("b_small_icon o_cmembers_mail");
-			coachesEmailLink = uifactory.addFormLink("coaches-email", "", null, formLayout, Link.NONTRANSLATED);
-			coachesEmailLink.setCustomEnabledLinkCSS("b_small_icon o_cmembers_mail");
-			participantsEmailLink = uifactory.addFormLink("participants-email", "", null, formLayout, Link.NONTRANSLATED);
-			participantsEmailLink.setCustomEnabledLinkCSS("b_small_icon o_cmembers_mail");
+			ownersEmailLink = uifactory.addFormLink("owners-email", "members.email.title", null, formLayout, Link.BUTTON_XSMALL);
+			ownersEmailLink.setIconLeftCSS("o_icon o_icon_mail");
+			coachesEmailLink = uifactory.addFormLink("coaches-email", "members.email.title", null, formLayout, Link.BUTTON_XSMALL);
+			coachesEmailLink.setIconLeftCSS("o_icon o_icon_mail");
+			participantsEmailLink = uifactory.addFormLink("participants-email", "members.email.title", null, formLayout, Link.BUTTON_XSMALL);
+			participantsEmailLink.setIconLeftCSS("o_icon o_icon_mail");
 			
 			formLayout.add("owners-email", ownersEmailLink);
 			formLayout.add("coaches-email", coachesEmailLink);
@@ -197,9 +197,10 @@ public class MembersCourseNodeRunController extends FormBasicController {
 			memberLinks.add(idLink);
 			
 			if(withEmail) {
-				FormLink emailLink = uifactory.addFormLink("mail_" + identity.getKey(), fullname, null, formLayout, Link.NONTRANSLATED);
+				FormLink emailLink = uifactory.addFormLink("mail_" + identity.getKey(), "", null, formLayout, Link.NONTRANSLATED);
 				emailLink.setUserObject(member);
-				emailLink.setCustomEnabledLinkCSS("b_small_icon o_cmembers_mail");
+				emailLink.setIconLeftCSS("o_icon o_icon_mail o_icon-lg");
+				emailLink.setElementCssClass("o_mail");
 				formLayout.add(emailLink.getComponent().getComponentName(), emailLink);
 				emailLinks.add(emailLink);
 				member.setEmailLink(emailLink);
diff --git a/src/main/java/org/olat/course/nodes/members/_content/memberList.html b/src/main/java/org/olat/course/nodes/members/_content/memberList.html
index 820a6f55bbbb4e137a803042c9313c4f5410cd5c..69a43e2ea0a820b252ff5c0b94c00b2431dbeda6 100644
--- a/src/main/java/org/olat/course/nodes/members/_content/memberList.html
+++ b/src/main/java/org/olat/course/nodes/members/_content/memberList.html
@@ -1,17 +1,20 @@
 #foreach($memberLink in $memberLinks)
-	<div class="o_cmember">
-		<div class="o_cmember_portrait_wrapper">
-			#if($memberLink.getUserObject().isPortraitAvailable())
-				<div class="o_cmember_portrait" style="background-image: url('$avatarBaseURL/$memberLink.getUserObject().getKey()/portrait_small.jpg')"></div>
-			#else
-				<div class="o_cmember_portrait $memberLink.getUserObject().getPortraitCssClass()"></div>
-			#end
-		</div>
-		<div class="o_cmember_info_wrapper">
-			$r.render($memberLink.getComponent().getComponentName())
-			#if($r.available($memberLink.getUserObject().getEmailLink().getComponent().getComponentName()))
-				$r.render($memberLink.getUserObject().getEmailLink().getComponent().getComponentName())
-			#end
+	<div class="o_cmember col-xs-12 col-sm-6 col-md-4 ">
+		<div class="clearfix">
+			<div class="o_portrait pull-left">
+				#if($memberLink.getUserObject().isPortraitAvailable())
+					<img src="$r.staticLink("images/transparent.gif")" class="o_small" style="background-image: url('$avatarBaseURL/$memberLink.getUserObject().getKey()/portrait_small.jpg')" alt="$r.escapeHtml("$memberLink.getUserObject().getFullName()")" />
+				#else
+					<img src="$r.staticLink("images/transparent.gif")" class="o_small $memberLink.getUserObject().getPortraitCssClass()" alt="$r.escapeHtml("$memberLink.getUserObject().getFullName()")" />
+				#end
+	
+			</div>
+			<div class="o_cmember_info_wrapper">
+				$r.render($memberLink.getComponent().getComponentName())
+				#if($r.available($memberLink.getUserObject().getEmailLink().getComponent().getComponentName()))
+					$r.render($memberLink.getUserObject().getEmailLink().getComponent().getComponentName())
+				#end
+			</div>
 		</div>
 	</div>
 #end
diff --git a/src/main/java/org/olat/course/nodes/members/_content/members.html b/src/main/java/org/olat/course/nodes/members/_content/members.html
index 36ad817b7561640f2b17406d4546be89603cda1d..df44ba867981d52fe6417a7d52ca527b0ed77553 100644
--- a/src/main/java/org/olat/course/nodes/members/_content/members.html
+++ b/src/main/java/org/olat/course/nodes/members/_content/members.html
@@ -1,22 +1,33 @@
 <div class="o_cmembers">
 	#if($hasOwners)
-		<div class="b_clearfix">
-			<h4>$r.translate("members.owners") #if($r.available("owners-email")) $r.render("owners-email") #end</h4>
+		<div class="clearfix">
+			<h4>$r.translate("members.owners")</h4>
+			#if($r.available("owners-email")) 
+				$r.render("owners-email") 
+			#end
 			$r.render("owners")
 		</div>
 	#end
 	#if($hasCoaches)
-		<div class="b_clearfix">
-			<h4>$r.translate("members.coaches") #if($r.available("coaches-email")) $r.render("coaches-email") #end</h4>
+		<div class="clearfix o_block">
+			<h4>$r.translate("members.coaches")</h4>
+			#if($r.available("coaches-email")) 
+				$r.render("coaches-email") 
+			#end
 			$r.render("coaches")
 		</div>
 	#end
-	<div class="b_clearfix">
-		<h4>$r.translate("members.participants") #if($hasParticipants && $r.available("participants-email")) $r.render("participants-email") #end</h4>
+	<div class="clearfix o_block">
+		<h4>$r.translate("members.participants")</h4>
+		#if($r.available("participants-email")) 
+			$r.render("participants-email") 
+		#end
 		#if($hasParticipants)
 			$r.render("participants")
 		#else
-			$r.translate("members.noParticipants.message")
+			<div class="o_important">
+				$r.translate("members.noParticipants.message")
+			</div>
 		#end
 	</div>
 </div>
diff --git a/src/main/java/org/olat/course/nodes/ms/MSCourseNodeRunController.java b/src/main/java/org/olat/course/nodes/ms/MSCourseNodeRunController.java
index 9fb3591226fa64e00654ee561aa50281399bbaed..4d5f78f8c4cc6a054734d3d3f5ee3ef3ae79b1c6 100644
--- a/src/main/java/org/olat/course/nodes/ms/MSCourseNodeRunController.java
+++ b/src/main/java/org/olat/course/nodes/ms/MSCourseNodeRunController.java
@@ -38,6 +38,7 @@ import org.olat.core.util.Util;
 import org.olat.course.assessment.AssessmentHelper;
 import org.olat.course.auditing.UserNodeAuditManager;
 import org.olat.course.nodes.AssessableCourseNode;
+import org.olat.course.nodes.CourseNode;
 import org.olat.course.nodes.MSCourseNode;
 import org.olat.course.nodes.ObjectivesHelper;
 import org.olat.course.run.scoring.ScoreEvaluation;
@@ -63,7 +64,8 @@ public class MSCourseNodeRunController extends DefaultController {
 	 */
 	public MSCourseNodeRunController(UserRequest ureq, WindowControl wControl, UserCourseEnvironment userCourseEnv, AssessableCourseNode msCourseNode, boolean displayNodeInfo) {
 		super(wControl);
-		Translator trans = Util.createPackageTranslator(MSCourseNodeRunController.class, ureq.getLocale());
+		Translator fallbackTrans = Util.createPackageTranslator(CourseNode.class, ureq.getLocale());
+		Translator trans = Util.createPackageTranslator(MSCourseNodeRunController.class, ureq.getLocale(), fallbackTrans);
 		
 		myContent = new VelocityContainer("olatmsrun", VELOCITY_ROOT + "/run.html", trans, this);
 		
@@ -102,7 +104,9 @@ public class MSCourseNodeRunController extends DefaultController {
 	    myContent.contextPut(MSCourseNode.CONFIG_KEY_HAS_PASSED_FIELD, config.get(MSCourseNode.CONFIG_KEY_HAS_PASSED_FIELD));
 	    myContent.contextPut(MSCourseNode.CONFIG_KEY_HAS_COMMENT_FIELD, config.get(MSCourseNode.CONFIG_KEY_HAS_COMMENT_FIELD));
 	    String infoTextUser = (String) config.get(MSCourseNode.CONFIG_KEY_INFOTEXT_USER);
-	    myContent.contextPut(MSCourseNode.CONFIG_KEY_INFOTEXT_USER, (infoTextUser == null ? "" : infoTextUser));
+	    if(StringHelper.containsNonWhitespace(infoTextUser)) {
+	    	myContent.contextPut(MSCourseNode.CONFIG_KEY_INFOTEXT_USER, infoTextUser);
+	    }
 	    myContent.contextPut(MSCourseNode.CONFIG_KEY_PASSED_CUT_VALUE, AssessmentHelper.getRoundedScore((Float)config.get(MSCourseNode.CONFIG_KEY_PASSED_CUT_VALUE)));
 	    myContent.contextPut(MSCourseNode.CONFIG_KEY_SCORE_MIN, AssessmentHelper.getRoundedScore((Float)config.get(MSCourseNode.CONFIG_KEY_SCORE_MIN)));
 	    myContent.contextPut(MSCourseNode.CONFIG_KEY_SCORE_MAX, AssessmentHelper.getRoundedScore((Float)config.get(MSCourseNode.CONFIG_KEY_SCORE_MAX)));
diff --git a/src/main/java/org/olat/course/nodes/ms/_content/run.html b/src/main/java/org/olat/course/nodes/ms/_content/run.html
index 415b812b8e0510994737c55ed4e1db5edade5e07..5001b33c6f0815f0ac31819191938ce1d978189d 100644
--- a/src/main/java/org/olat/course/nodes/ms/_content/run.html
+++ b/src/main/java/org/olat/course/nodes/ms/_content/run.html
@@ -1,95 +1,85 @@
-	<div class="o_course_run_scoreinfo">
-	#if ($hasScoreField)
-		<h4>$r.translate("score.title")</h4>
-		<table>
-			<tbody>
-				<tr>
-					<td>
-						$r.translate("score.min"):
-					</td>
-					<td>
-						$scoreMin
-					</td>
-				</tr>
-				<tr>
-					<td>
-						$r.translate("score.max"): 
-					</td>
-					<td>
-						$scoreMax
-					</td>
-				</tr>
-				<tr>
-					<td>			
-						$r.translate("score.yourscore"): 
-					</td>
-					<td>
-						#if($score)		
-							$score
-						#else
-							<div class="o_course_run_scoreinfo_noinfo">$r.translate("score.noscore")</div>
-						#end
-					</td>
-				</tr>
-			</tbody>
-		</table>
-	#end
-
-	#if ($hasPassedField)
-		<h4>$r.translate("passed.title")</h4>
-		<table>
-			<tbody>	
-			#if ($passedCutValue)
-				<tr>
-					<td>
-						$r.translate("passed.cut"):
-					</td>
-					<td>
-						$passedCutValue
-					</td>
-				</tr>
+<div class="panel panel-default o_personal">
+  	<div class="panel-heading">
+ 			<h4 class="panel-title">$r.translate("personal.title")</h4>
+ 		</div>
+	<table class="table">
+	<tbody>
+		#if ($hasScoreField)
+		<tr class="o_score_config_min">
+			<th>$r.translate("score.min")</th>
+			<td>$scoreMin</td>
+		</tr>
+		<tr class="o_score_config_max">
+			<th>$r.translate("score.max")</th>
+			<td>$scoreMax</td>
+		</tr>
+		<tr class="o_score">
+			<th>$r.translate("score.yourscore")</th>
+			<td>
+			#if($score)		
+				$score
+			#else
+				<div class="o_noinfo">$r.translate("score.noscore")</div>
+			#end				
+			</td> 
+		</tr>
+		#end 
+		
+		#if ($hasPassedField)
+		#if ($passedCutValue)
+		<tr class="o_cutval">
+			<th>$r.translate("passed.cut")</th>
+			<td>$passedCutValue</td>
+		</tr>
+		#end
+		<tr class="o_state #if ($hasPassedValue && $passed) o_passed #elseif($hasPassedValue && !$passed) o_failed #else o_unknown #end">
+			<th>$r.translate("passed.yourpassed")</th>
+			<td>
+			#if($hasPassedValue && $passed)	
+				<i class="o_icon o_icon_passed"></i> 
+				$r.translate("passed.yes")
+			#elseif($hasPassedValue && !$passed)		
+				<i class="o_icon o_icon_failed"></i> 
+				$r.translate("passed.no")
+			#else
+				<div class="o_noinfo">$r.translate("passed.nopassed")</div>
 			#end
-				<tr>
-					<td>			
-						$r.translate("passed.yourpassed"):
-					</td>
-					<td>
-						#if($hasPassedValue && $passed == true)		
-							<span class="o_passed">$r.translate("passed.yes")</span>
-						#elseif($hasPassedValue && $passed == false)		
-							<span class="o_notpassed">$r.translate("passed.no")</span>
-						#else
-							<div class="o_course_run_scoreinfo_noinfo">$r.translate("passed.nopassed")</div>
-						#end
-					</td>
-				</tr>
-			</tbody>
-		</table>
-	#end
+			</td>
+		</tr>
+		#end
+	</tbody>
+	</table>
+</div>
 
-	#if ($hasCommentField)
-		<h4>$r.translate("comment.title")</h4>
-		#if ($comment)
+#if ($comment)		
+	<div class="panel panel-default o_comment">
+	  	<div class="panel-heading" data-toggle="collapse" data-target="#collapseComment">
+	  		<h4 class="panel-title">$r.translate("comment.title")</h4>
+	  	</div>
+		<div id="collapseComment" class="panel-collapse collapse in"><div class="panel-body">
 			$comment
-		#else
-			<div class="o_course_run_scoreinfo_noinfo">$r.translate("comment.nocomment")</div>
-		#end
-	#end
+  		</div></div>
 	</div>
+#end
 
-#if ($infoTextUser != "")
-	<div class="o_course_run_disclaimer">
-		<h4>$r.translate("info.title")</h4>
-		$r.formatLatexFormulas($infoTextUser)
+#if($infoTextUser)
+	<div class="panel panel-default o_disclaimer">
+	  	<div class="panel-heading" data-toggle="collapse" data-target="#collapseDisclaimer">
+	  		<h4 class="panel-title">$r.translate("info.title")</h4>
+	  	</div>
+		<div id="collapseDisclaimer" class="panel-collapse collapse in"><div class="panel-body">
+			$r.formatLatexFormulas($infoTextUser)
+  		</div></div>
 	</div>
 #end
 
 
-	#if ($log)
-		<p />	
-		#o_togglebox_start("o_course_run_log" $r.translate("log.title"))
-		<pre>
+#if($log)
+<div class="o_box">
+    #o_togglebox_start("o_course_run_log" $r.translate("log.title"))
+    <pre class="small">
 $log
-		</pre>
-		#o_togglebox_end()
-	#end
\ No newline at end of file
+    </pre>
+    #o_togglebox_end()
+</div>
+#end
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_de.properties b/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_de.properties
index 0dbe249d9955508e26dbcf7981a976203c253689..4c47d193d7e24169f8cd212165488dde0106280c 100644
--- a/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_de.properties
+++ b/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_de.properties
@@ -49,10 +49,10 @@ log.title=\u00C4nderungsverlauf
 pane.tab.accessibility=Zugang
 pane.tab.configuration=Bewertung
 passed.cut=Bestanden ab Anzahl Punkte
-passed.no=Nein
+passed.no=Nicht bestanden
 passed.nopassed=Information nicht verf\u00FCgbar
 passed.title=Ergebnis
-passed.yes=Ja
+passed.yes=Bestanden
 passed.yourpassed=Status
 score.max=Punktemaximum
 score.min=Punkteminimum
diff --git a/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_en.properties b/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_en.properties
index a84173898ad0bd6cb5ad720d34a3c99de394b752..ddc2dcc77e3bf4509fe0c7854383043d6c18f51b 100644
--- a/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_en.properties
+++ b/src/main/java/org/olat/course/nodes/ms/_i18n/LocalStrings_en.properties
@@ -52,7 +52,7 @@ passed.cut=Score needed to pass
 passed.no=Failed
 passed.nopassed=Information not available
 passed.title=Result
-passed.yes=Yes
+passed.yes=Passed
 passed.yourpassed=Status
 score.max=Maximum score
 score.min=Minimum score
diff --git a/src/main/java/org/olat/course/nodes/scorm/ScormRunController.java b/src/main/java/org/olat/course/nodes/scorm/ScormRunController.java
index 29d840b3b035dcbc4d79afb89725777a6e78765b..8c57b6f89505a1ef20959b71b793a493d6b4b08b 100644
--- a/src/main/java/org/olat/course/nodes/scorm/ScormRunController.java
+++ b/src/main/java/org/olat/course/nodes/scorm/ScormRunController.java
@@ -45,9 +45,11 @@ import org.olat.core.logging.AssertException;
 import org.olat.core.util.CodeHelper;
 import org.olat.core.util.Formatter;
 import org.olat.core.util.StringHelper;
+import org.olat.core.util.Util;
 import org.olat.core.util.event.GenericEventListener;
 import org.olat.course.assessment.AssessmentHelper;
 import org.olat.course.editor.NodeEditController;
+import org.olat.course.nodes.CourseNode;
 import org.olat.course.nodes.ObjectivesHelper;
 import org.olat.course.nodes.ScormCourseNode;
 import org.olat.course.run.scoring.ScoreEvaluation;
@@ -106,7 +108,7 @@ public class ScormRunController extends BasicController implements ScormAPICallb
 	 */
 	public ScormRunController(ModuleConfiguration config, UserRequest ureq, UserCourseEnvironment userCourseEnv, WindowControl wControl,
 			ScormCourseNode scormNode, boolean isPreview) {
-		super(ureq, wControl);
+		super(ureq, wControl, Util.createPackageTranslator(CourseNode.class, ureq.getLocale()));
 		// assertion to make sure the moduleconfig is valid
 		if (!ScormEditController.isModuleConfigValid(config))
 			throw new AssertException("scorm run controller had an invalid module config:" + config.toString());
diff --git a/src/main/java/org/olat/course/nodes/scorm/_content/run.html b/src/main/java/org/olat/course/nodes/scorm/_content/run.html
index 1a621b42b716f62f52fede731d1b7cf866e50f28..affe015afc207f7e0bb0a8547d82476396e2e266 100644
--- a/src/main/java/org/olat/course/nodes/scorm/_content/run.html
+++ b/src/main/java/org/olat/course/nodes/scorm/_content/run.html
@@ -1,64 +1,59 @@
 #if ($isassessable)	
-	<div class="o_course_run_scoreinfo">
-		<h4>$r.translate("score.title")</h4>		
-		<table>
+	#if($attempts > 0)
+		<div class="panel panel-default o_personal">
+		  	<div class="panel-heading">
+	  			<h4 class="panel-title">$r.translate("personal.title")</h4>
+	  		</div>
+			<table class="table">
 			<tbody>
-				<tr>
-					<td>			
-						$r.translate("attempts.yourattempts"): 
-					</td>
-					<td>
-						$attempts
-					</td>
-				</tr>
-	#if ($attempts >0)
-		#if ($score)
-				<tr>
-					<td>			
-						$r.translate("score.yourscore"): 
-					</td>
-					<td>
-						$score
-					</td>
-				</tr>
-		#end
-				<tr>
-					<td>			
-						$r.translate("passed.yourpassed"): 
-					</td>
+				<tr class="o_attempts">
+					<th>$r.translate("attempts.yourattempts")</th>
+					<td>$attempts</td> 
+				</tr> 
+				<tr class="o_score">
+					<th>$r.translate("score.yourscore")</th>
+					<td>$score</td> 
+				</tr> 
+				<tr class="o_state #if ($hasPassedValue && $passed) o_passed #elseif($hasPassedValue && !$passed) o_failed #else o_unknown #end">
+					<th>$r.translate("passed.yourpassed")</th>
 					<td>
-						#if($hasPassedValue && $passed == true)		
-							<span class="o_passed">$r.translate("passed.yes")</span>
-						#elseif($hasPassedValue && $passed == false)		
-							<span class="o_notpassed">$r.translate("passed.no")</span>
-						#end
+					#if($hasPassedValue && $passed)	
+						<i class="o_icon o_icon_passed"></i> 
+						$r.translate("passed.yes")
+					#elseif($hasPassedValue && !$passed)		
+						<i class="o_icon o_icon_failed"></i> 
+						$r.translate("passed.no")
+					#else
+						$r.translateWithPackage("org.olat.course.nodes.st", "passed.noinfo")
+					#end
 					</td>
 				</tr>
-				#if ($comment)
-					<tr>
-						<td>			
-							$r.translate("comment.yourcomment"): 
-						</td>
-						<td>
-							$comment
-						</td>
-					</tr>
-				#end
 			</tbody>
-		</table>		
-	#else
-			</tbody>
-		</table>
+			</table>
+		</div>
+	
+		#if ($comment)		
+		<div class="panel panel-default o_comment">
+		  	<div class="panel-heading" data-toggle="collapse" data-target="#collapseComment">
+	  			<h4 class="panel-title">$r.translate("comment.yourcomment")</h4>
+	  		</div>
+		<div id="collapseComment" class="panel-collapse collapse in"><div class="panel-body">
+				$comment
+	  		</div>
+		</div></div>
+		#end
 
-		<div class="o_course_run_scoreinfo_noinfo">$r.translate("score.noscoreinfoyet")</div>
+	#else
+		<div class="o_no_scoreinfo">
+			$r.translate("score.noscoreinfoyet")
+		</div>
 	#end
-	</div>
 #end
 
-## <OLATCE-289>
 #if ($maxAttemptsReached)
+<div class="o_warning">
 	$r.translate("attempts.max.reached")
+</div>
 #else
 	$r.render("chooseScormRunMode")
 #end
-## </OLATCE-289>
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/ta/_content/returnbox.html b/src/main/java/org/olat/course/nodes/ta/_content/returnbox.html
index 43a6abb6c1db55bb049f8466fcfa54e008d03cd4..941fe4be4f559df2c9881c621062e5c78291af49 100644
--- a/src/main/java/org/olat/course/nodes/ta/_content/returnbox.html
+++ b/src/main/java/org/olat/course/nodes/ta/_content/returnbox.html
@@ -1,12 +1,17 @@
-<div class="o_course_run_returnbox">
-	#if($hasNotification == true)
-		$r.render("subscription")
-	#end
-	<h4>$r.translate("returnbox.title")</h4>		
-	<p>
-		$r.translate("returnbox.intro")
-	</p>
-	<p>
-		$r.render("returnbox")
-	</p>
+<div class="panel panel-default o_returnbox">
+	<div class="panel-heading" data-toggle="collapse" data-target="#collapseReturnbox">
+		<h4 class="panel-title">$r.translate("returnbox.title")</h4>
+	</div>
+	<div id="collapseReturnbox" class="panel-collapse collapse in">
+		<div class="panel-body">
+			#if($hasNotification == true)
+				$r.render("subscription")
+			#end
+			<p>
+				$r.translate("returnbox.intro")
+			</p>
+			<hr />
+			$r.render("returnbox")  	
+		</div>  	
+	</div>
 </div>
diff --git a/src/main/java/org/olat/gui/control/_content/topnav.html b/src/main/java/org/olat/gui/control/_content/topnav.html
index 128a7c8185c4f83f9dc780b3211a9de51317185e..de20b3dd3fafe7af3fb8911d6df07a0f39a1cdae 100644
--- a/src/main/java/org/olat/gui/control/_content/topnav.html
+++ b/src/main/java/org/olat/gui/control/_content/topnav.html
@@ -30,12 +30,12 @@
 	</li>
 #end
 #if (!$isGuest)
-	<li id="o_navbar_my_menu" class="dropdown">
+	<li id="o_navbar_my_menu" class="dropdown o_portrait">
 		<a href="#" class="dropdown-toggle" data-toggle="dropdown">
 			#if($r.available("portrait"))
 				$r.render("portrait") 
 			#else 
-				<img src="$r.staticLink("images/transparent.gif")" class="o_portrait_dummy_${gender}small"/>
+				<img src="$r.staticLink("images/transparent.gif")" class="o_small o_portrait_dummy_${gender}small"/>
 			#end
 			$myMenuLabel
 			<b class="caret"></b>
diff --git a/src/main/java/org/olat/modules/webFeed/ui/DisplayFeedUrlController.java b/src/main/java/org/olat/modules/webFeed/ui/DisplayFeedUrlController.java
index 72d5e78b6083371b7ed21fa4918a3498f3d7af35..5dd585f06074e518bd821bcbb6eb0e33320490f0 100644
--- a/src/main/java/org/olat/modules/webFeed/ui/DisplayFeedUrlController.java
+++ b/src/main/java/org/olat/modules/webFeed/ui/DisplayFeedUrlController.java
@@ -98,8 +98,9 @@ public class DisplayFeedUrlController extends FormBasicController {
 	 */
 	@Override
 	protected void initForm(FormItemContainer formLayout, Controller listener, UserRequest ureq) {
-		feedUrl = uifactory.addTextAreaElement("feedUrl", "feed.url.label", 5000, 1, 1, true, helper.getFeedUrl(), this.flc);
+		feedUrl = uifactory.addTextElement("feedUrl", "feed.url.label", 5000, helper.getFeedUrl(), this.flc);
 		// no editing. selecting allowed only
+		feedUrl.setLabel(null, null);
 		feedUrl.setEnabled(false);
 		feedUrl.addActionListener(FormEvent.ONCLICK);
 	}
diff --git a/src/main/java/org/olat/modules/webFeed/ui/_content/feed_main.html b/src/main/java/org/olat/modules/webFeed/ui/_content/feed_main.html
index 48536bb0f0e4ea6e42d79f7f2e07e1bc92f721c1..4b7ed53b873920614da32a5b1f998775efd78a2f 100644
--- a/src/main/java/org/olat/modules/webFeed/ui/_content/feed_main.html
+++ b/src/main/java/org/olat/modules/webFeed/ui/_content/feed_main.html
@@ -1,4 +1,4 @@
-<div id="o_feed">
+<div class="o_feed">
 	<div class="o_box clearfix">$r.render("info")</div>
 	<div class="b_subcolumns">
 		<div class="col-md-8">
diff --git a/src/main/java/org/olat/modules/webFeed/ui/blog/_content/info.html b/src/main/java/org/olat/modules/webFeed/ui/blog/_content/info.html
index 58b4c5ae03d5a6931501bf908e7db20ebb42c66b..b53de17547773680ace6ac564ffd5b0e00f8d640 100644
--- a/src/main/java/org/olat/modules/webFeed/ui/blog/_content/info.html
+++ b/src/main/java/org/olat/modules/webFeed/ui/blog/_content/info.html
@@ -2,17 +2,28 @@
 	#if ($callback.mayEditMetadata())
 		<div class="o_feed_edit">$r.render("feed.edit")</div>
 	#end		
-	<h3>$r.escapeHtml($feed.getTitle())</h3>
-	<p class="o_blog_description">$!helper.getFeedDescriptionForBrowser()</p>
+	<h2>	
+		<i class="o_icon o_icon-fw o_icon o_FileResource-BLOG_icon"></i> 
+		$r.escapeHtml($!feed.getTitle())
+	</h2>
 	#if ($helper.getImageUrl() && $helper.getImageUrl() != "")
-		<img class="icon" src="$helper.getImageUrl()" alt="Blog Image" />
-	#end
-	#if ( !$feed.isUndefined() )
-		<div class="o_blog_subscription">
-			<a href="$!helper.getFeedUrl()" class="o_blog_rss_link" target="_blank">$r.translate("blog.subscribe.to.this.feed")</a>
-		</div>
-	#end	
-	#if ($feed.getAuthor() && $feed.getAuthor() != "")
-		<p class="o_author">$r.translate("feed.author") $r.escapeHtml($helper.getFeedAuthor()). $r.translate("feed.last.change") $!helper.getLastModified()</p>
+		<img class="o_media" src="$helper.getImageUrl()" alt="Blog Image" />
 	#end
+
+	<div class="o_block">
+		#if ($!feed.getAuthor())
+			<div class="o_author">$r.translate("feed.author"): $r.escapeHtml($helper.getFeedAuthor())</div>
+		#end
+		<div class="o_date">$r.translate("feed.last.change") $!helper.getLastModified()	</div>
+		<div class="o_desc o_info">$!helper.getFeedDescriptionForBrowser()</div>
+	
+		#if ( !$feed.isUndefined() )
+			<div class="o_subscription">
+				<a href="$!helper.getFeedUrl()" class="o_nowrap" target="_blank">
+					<i class="o_icon o_icon-fw o_icon_rss"></i> 
+					$r.translate("blog.subscribe.to.this.feed")
+				</a>
+			</div>
+		#end	
+	</div>
 </div>
\ No newline at end of file
diff --git a/src/main/java/org/olat/modules/webFeed/ui/podcast/_content/info.html b/src/main/java/org/olat/modules/webFeed/ui/podcast/_content/info.html
index caa08bd4626aa6afa388cffd846761384b74bf8e..49e11fbadb284aea5db96d027107aa2e48d2bce1 100644
--- a/src/main/java/org/olat/modules/webFeed/ui/podcast/_content/info.html
+++ b/src/main/java/org/olat/modules/webFeed/ui/podcast/_content/info.html
@@ -4,27 +4,35 @@
 			$r.render("feed.edit")
 		</div>
 	#end	
-	<h3>$!feed.getTitle()</h3>
+	<h2>	
+		<i class="o_icon o_icon-fw o_icon o_FileResource-PODCAST_icon"></i> 
+		$r.escapeHtml($!feed.getTitle())
+	</h2>
 	#if ($!helper.getImageUrl())
-		<img class="icon" src="$helper.getImageUrl()" alt="Podcast Icon" />
-	#else
-		<div class="o_podcast_no_image"><span>$r.translate("feed.no.image")</span></div>
+		<img class="o_media" src="$helper.getImageUrl()" alt="Podcast Icon" />
 	#end
-	<p class="o_podcast_date">$!helper.getLastModified()</p>
-	#if ($!feed.getAuthor())
-		<p class="o_author">$r.translate("feed.author"): $r.escapeHtml($helper.getFeedAuthor())</p>
-	#end
-	<p class="o_podcast_description">$!helper.getFeedDescriptionForBrowser()</p>
-</div>
-#if ( !$feed.isUndefined() && $helper.getFeedUrl() )
-	<div class="o_podcast_subscription">
-		<a href="$!helper.getFeedUrl()" class="o_podcast_rss_link" target="_blank"></a>
-		<h5>$r.translate("podcast.subscribe.to.this.feed")</h5>
-		$r.render("feedUrlComponent")
-		<p>
-			<a href="$!helper.getITunesUrl()" target="_blank"><img src="$r.staticLink("images/addto/itunes.png")" /></a>
-			<a href="$!helper.getYahooUrl()" target="_blank"><img src="$r.staticLink("images/addto/yahoo.gif")" /></a>
-			<a href="$!helper.getGoogleUrl()" target="_blank"><img src="$r.staticLink("images/addto/google.gif")" /></a>
-		</p>
+	<div class="o_block">
+		#if ($!feed.getAuthor())
+			<div class="o_author">$r.translate("feed.author"): $r.escapeHtml($helper.getFeedAuthor())</div>
+		#end
+		<div class="o_date">$r.translateWithPackage("org.olat.modules.webFeed.ui.blog","feed.last.change") $!helper.getLastModified()	</div>
+		<div class="o_desc o_info">$!helper.getFeedDescriptionForBrowser()</div>
+		#if ( !$feed.isUndefined() && $helper.getFeedUrl() )
+		<div class="o_subscription">
+			<a href="$!helper.getFeedUrl()" class="o_nowrap" target="_blank">
+				<i class="o_icon o_icon-fw o_icon_rss"></i> 
+				$r.translate("podcast.subscribe.to.this.feed")
+			</a>
+			<a href="$!helper.getITunesUrl()" class="o_nowrap" target="_blank">
+				<i class="o_icon o_icon-fw o_icon_apple"></i> 		
+				iTunes
+			</a>
+			<a href="$!helper.getYahooUrl()" class="o_nowrap" target="_blank">
+				<i class="o_icon o_icon-fw o_icon_yahoo"></i> 		
+				yahoo
+			</a>
+			$r.render("feedUrlComponent")
+		</div>
+		#end	
 	</div>
-#end	
\ No newline at end of file
+</div>
\ No newline at end of file
diff --git a/src/main/java/org/olat/social/shareLink/_content/shareLink.html b/src/main/java/org/olat/social/shareLink/_content/shareLink.html
index 47e3b4f789af628d90626d98f8459b4256ca86ae..3063f46d0b7330d52e0a165216803f12206ff51e 100644
--- a/src/main/java/org/olat/social/shareLink/_content/shareLink.html
+++ b/src/main/java/org/olat/social/shareLink/_content/shareLink.html
@@ -44,7 +44,7 @@
 		</a>
 	#elseif ($link == "mail")	
 		<a id="o_mail" href="mailto:?body=$baseURL" title="$r.translateInAttribute("share.mail")">
-			<i class="o_icon o_icon_mail o_icon-lg"></i>		
+			<i class="o_icon o_icon_mailto o_icon-lg"></i>		
 		</a>
 	#elseif ($link == "link")	
 		<a id="o_link" href="#">
diff --git a/src/main/webapp/static/themes/light/modules/_course.scss b/src/main/webapp/static/themes/light/modules/_course.scss
index 54a66df8293c5d47ba236c8d2dfb0d5c80523b0a..9207b85c8559b1f72de1940848210896b9309e3e 100644
--- a/src/main/webapp/static/themes/light/modules/_course.scss
+++ b/src/main/webapp/static/themes/light/modules/_course.scss
@@ -114,3 +114,18 @@
 	@extend .o_note
 }
 
+/* member list course element */
+.o_cmembers {
+	.o_cmember {
+		margin: $padding-base-horizontal 0;
+		.o_portrait {
+			margin-right: $padding-base-vertical;		
+		}
+		.o_cmember_info_wrapper {
+			line-height: 30px;
+			.o_mail {
+				margin-left: $padding-base-vertical;					
+			}
+		}
+	}
+}
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/modules/_helpers.scss b/src/main/webapp/static/themes/light/modules/_helpers.scss
index c2b72f88b9f75454f1bd9acf606ca046710b2ea9..b4f1530106b8d4adcbea2f1292d050b33db09358 100644
--- a/src/main/webapp/static/themes/light/modules/_helpers.scss
+++ b/src/main/webapp/static/themes/light/modules/_helpers.scss
@@ -62,7 +62,15 @@ div.o_chelp_wrapper {
 
 .o_portrait {
 	img {
-		@extend .img-thumbnail;
+		@extend .img-circle;
+		background-color: $gray-lighter;
+		background-position: 50% 50%; background-repeat: no-repeat;
+		&.o_small {
+			width: 30px; height: 30px;
+		}
+		&.o_large {
+			width: 100px; height: 100px;
+		}
 	}
 }
 
diff --git a/src/main/webapp/static/themes/light/modules/_icons.scss b/src/main/webapp/static/themes/light/modules/_icons.scss
index 8745f3e0fad1d45ef925526ca87713dd3cb48690..bd3a3fb00eaf76848eb7afcc0352c667a750d86d 100644
--- a/src/main/webapp/static/themes/light/modules/_icons.scss
+++ b/src/main/webapp/static/themes/light/modules/_icons.scss
@@ -227,13 +227,15 @@ a.o_icon {
 
 
 /* social share icons */
+.o_icon_apple {@extend .o_icon-apple;}
 .o_icon_facebook {@extend .o_icon-facebook-square;}
 .o_icon_twitter {@extend .o_icon-twitter-square;}
 .o_icon_google {@extend .o_icon-google-plus-square;}
 .o_icon_delicious {@extend .o_icon-delicious;}
 .o_icon_digg {@extend .o_icon-digg;}
-.o_icon_mail {@extend .o_icon-envelope-square;}
+.o_icon_mailto {@extend .o_icon-envelope-square;}
 .o_icon_link {@extend .o_icon-link;}
+.o_icon_yahoo {@extend .o_icon-yahoo;}
 
 
 /* portrait / avatar icons */
@@ -255,4 +257,3 @@ a.o_icon {
 .o_portrait_dummy_female_small   {background-image: url('#{$o-images-path}portrait/dummy_female_small.png');}
 .o_portrait_dummy_male_small     {background-image: url('#{$o-images-path}portrait/dummy_male_small.png');}
 .o_portrait_anonymous_small 	 {background-image: url('#{$o-images-path}portrait/dummy_small.png'); } 
-
diff --git a/src/main/webapp/static/themes/light/modules/_various_modules.scss b/src/main/webapp/static/themes/light/modules/_various_modules.scss
index 9937b7d0651d354b5ff1c0cd9d44ca533bc8381d..6d81b05243ebade0cb655359e72bf930d896b063 100644
--- a/src/main/webapp/static/themes/light/modules/_various_modules.scss
+++ b/src/main/webapp/static/themes/light/modules/_various_modules.scss
@@ -111,6 +111,24 @@
 	}
 }
 
+/* Feed (Blog/Podcast */
+.o_feed {
+	.o_media {
+		@extend .img-thumbnail;
+	}
+	.o_date, .o_author {
+		@extend .text-muted;
+	}
+	.o_subscription {
+		a {	
+			margin-right: 1.5em;
+		}
+		form {
+			margin-top: $padding-base-vertical;	
+		}
+	}
+}
+
 
 
 /* toogle box, based on bootstrap collapse plugin */
diff --git a/src/main/webapp/static/themes/light/theme.css b/src/main/webapp/static/themes/light/theme.css
index 034231e0b70c041b671f101d336a35b35ba467e9..e0d52e8d9a5467d1e2f5697bd7d1736a45416421 100644
--- a/src/main/webapp/static/themes/light/theme.css
+++ b/src/main/webapp/static/themes/light/theme.css
@@ -22,8 +22,8 @@
  *  @author gnaegi, www.frentix.com
  *  @date April. 2014
  * ========================================================
-**//*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,a.o_chelp>.caret,.dropup>.btn>.caret,.dropup>a.o_chelp>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail,.o_portrait img,.o_form .o_filepreview img{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle,#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_my_menu img{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}h1,h2,h3,h4,.o_cal .fc-header-title h2,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h1 h5,h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h1 .o_comment,h1 .o_bc_meta,h1 .o_noti,h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h1 .o_hide,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_state,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_score,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h1 .o_label,h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h1 .o_entry,h2 small,h2 .small,h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h2 h5,h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h2 .o_comment,h2 .o_bc_meta,h2 .o_noti,h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h2 .o_hide,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_state,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_score,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h2 .o_label,h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h2 .o_entry,h3 small,h3 .small,h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h3 h5,h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h3 .o_comment,h3 .o_bc_meta,h3 .o_noti,h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h3 .o_hide,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_state,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_score,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h3 .o_label,h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h3 .o_entry,h4 small,.o_cal .fc-header-title h2 small,h4 .small,.o_cal .fc-header-title h2 .small,h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h4 h5,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 h5,h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h4 .o_comment,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 .o_comment,h4 .o_bc_meta,.o_cal .fc-header-title h2 .o_bc_meta,h4 .o_noti,.o_cal .fc-header-title h2 .o_noti,h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h4 .o_hide,.o_cal .fc-header-title h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .o_cal .fc-header-title h2 .o_hide,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_state,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_state,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_score,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_score,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h4 .o_label,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_cal .fc-header-title h2 .o_label,h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h4 .o_entry,.o_cal .fc-header-title h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .o_cal .fc-header-title h2 .o_entry,h5 small,h5 .small,h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h5 h5,h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h5 .o_comment,h5 .o_bc_meta,h5 .o_noti,h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h5 .o_hide,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_state,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_score,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h5 .o_label,h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h5 .o_entry,h6 small,h6 .small,h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h6 h5,h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h6 .o_comment,h6 .o_bc_meta,h6 .o_noti,h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h6 .o_hide,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_state,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_score,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h6 .o_label,h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h6 .o_entry,.h1 small,.h1 .small,.h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h1 h5,.h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h1 .o_comment,.h1 .o_bc_meta,.h1 .o_noti,.h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h1 .o_hide,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_state,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_score,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h1 .o_label,.h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h1 .o_entry,.h2 small,.h2 .small,.h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h2 h5,.h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h2 .o_comment,.h2 .o_bc_meta,.h2 .o_noti,.h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h2 .o_hide,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_state,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_score,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h2 .o_label,.h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h2 .o_entry,.h3 small,.h3 .small,.h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h3 h5,.h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h3 .o_comment,.h3 .o_bc_meta,.h3 .o_noti,.h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h3 .o_hide,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_state,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_score,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h3 .o_label,.h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h3 .o_entry,.h4 small,.h4 .small,.h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h4 h5,.h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h4 .o_comment,.h4 .o_bc_meta,.h4 .o_noti,.h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h4 .o_hide,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_state,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_score,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h4 .o_label,.h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h4 .o_entry,.h5 small,.h5 .small,.h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h5 h5,.h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h5 .o_comment,.h5 .o_bc_meta,.h5 .o_noti,.h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h5 .o_hide,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_state,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_score,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h5 .o_label,.h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h5 .o_entry,.h6 small,.h6 .small,.h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h6 h5,.h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h6 .o_comment,.h6 .o_bc_meta,.h6 .o_noti,.h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h6 .o_hide,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_state,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_score,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h6 .o_label,.h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h6 .o_entry{font-weight:normal;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,h1 .small,h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h1 h5,h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h1 .o_comment,h1 .o_bc_meta,h1 .o_noti,h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h1 .o_hide,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_state,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_score,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h1 .o_label,h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h1 .o_entry,.h1 small,.h1 .small,.h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h1 h5,.h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h1 .o_comment,.h1 .o_bc_meta,.h1 .o_noti,.h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h1 .o_hide,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_state,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_score,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h1 .o_label,.h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h1 .o_entry,h2 small,h2 .small,h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h2 h5,h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h2 .o_comment,h2 .o_bc_meta,h2 .o_noti,h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h2 .o_hide,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_state,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_score,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h2 .o_label,h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h2 .o_entry,.h2 small,.h2 .small,.h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h2 h5,.h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h2 .o_comment,.h2 .o_bc_meta,.h2 .o_noti,.h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h2 .o_hide,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_state,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_score,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h2 .o_label,.h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h2 .o_entry,h3 small,h3 .small,h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h3 h5,h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h3 .o_comment,h3 .o_bc_meta,h3 .o_noti,h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h3 .o_hide,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_state,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_score,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h3 .o_label,h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h3 .o_entry,.h3 small,.h3 .small,.h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h3 h5,.h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h3 .o_comment,.h3 .o_bc_meta,.h3 .o_noti,.h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h3 .o_hide,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_state,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_score,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h3 .o_label,.h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h3 .o_entry{font-size:65%}h4,.o_cal .fc-header-title h2,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.o_cal .fc-header-title h2 small,h4 .small,.o_cal .fc-header-title h2 .small,h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h4 h5,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 h5,h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h4 .o_comment,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 .o_comment,h4 .o_bc_meta,.o_cal .fc-header-title h2 .o_bc_meta,h4 .o_noti,.o_cal .fc-header-title h2 .o_noti,h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h4 .o_hide,.o_cal .fc-header-title h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .o_cal .fc-header-title h2 .o_hide,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_state,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_state,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_score,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_score,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h4 .o_label,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_cal .fc-header-title h2 .o_label,h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h4 .o_entry,.o_cal .fc-header-title h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .o_cal .fc-header-title h2 .o_entry,.h4 small,.h4 .small,.h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h4 h5,.h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h4 .o_comment,.h4 .o_bc_meta,.h4 .o_noti,.h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h4 .o_hide,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_state,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_score,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h4 .o_label,.h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h4 .o_entry,h5 small,h5 .small,h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h5 h5,h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h5 .o_comment,h5 .o_bc_meta,h5 .o_noti,h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h5 .o_hide,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_state,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_score,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h5 .o_label,h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h5 .o_entry,.h5 small,.h5 .small,.h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h5 h5,.h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h5 .o_comment,.h5 .o_bc_meta,.h5 .o_noti,.h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h5 .o_hide,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_state,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_score,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h5 .o_label,.h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h5 .o_entry,h6 small,h6 .small,h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h6 h5,h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h6 .o_comment,h6 .o_bc_meta,h6 .o_noti,h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h6 .o_hide,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_state,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_score,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h6 .o_label,h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h6 .o_entry,.h6 small,.h6 .small,.h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h6 h5,.h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h6 .o_comment,.h6 .o_bc_meta,.h6 .o_noti,.h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h6 .o_hide,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_state,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_score,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h6 .o_label,.h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h6 .o_entry{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.o_cal .fc-header-title h2,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width: 768px){.lead{font-size:21px}}
-small,.small,.o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o_comment,.o_bc_meta,.o_noti,.o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_course_run .o_toc .o_entry{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted,.o_button_toggle span,.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_context,.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_content .o_date,.o_noti,.o_noti .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle,.o_noinfo,.o_course_run .o_toc .o_entry .o_displaytitle{color:#999}.text-primary,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title,.o_catalog .o_level .o_meta .o_title,.o_catalog .o_sublevels .o_sublevel .o_meta .o_title{color:#428bca}a.text-primary:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_title:hover,.o_catalog .o_level .o_meta a.o_title:hover,.o_catalog .o_sublevels .o_sublevel .o_meta a.o_title:hover{color:#3071a9}.text-success,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_author,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle.o_active,.o_passed{color:#3c763d}a.text-success:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_author:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_lifecycle.o_active:hover,a.o_passed:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning,.o_unknown{color:#8a6d3b}a.text-warning:hover,a.o_unknown:hover{color:#66512c}.text-danger,.o_failed{color:#a94442}a.text-danger:hover,a.o_failed:hover{color:#843534}.bg-primary{color:#fff}.bg-primary{background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_go_xs{background-color:#dff0d8}a.bg-success:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_go_xs:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled,.list-inline{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857}dt{font-weight:bold}dd{margin-left:0}@media (min-width: 768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small,blockquote .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper blockquote h5,blockquote .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper blockquote .o_comment,blockquote .o_bc_meta,blockquote .o_noti,blockquote .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content blockquote .o_hide,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_state,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_score,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote .o_label,blockquote .o_course_run .o_toc .o_entry,.o_course_run .o_toc blockquote .o_entry{display:block;font-size:80%;line-height:1.42857;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before,blockquote .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper blockquote h5:before,blockquote .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper blockquote .o_comment:before,blockquote .o_bc_meta:before,blockquote .o_noti:before,blockquote .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content blockquote .o_hide:before,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_state:before,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_score:before,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote .o_label:before,blockquote .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc blockquote .o_entry:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right,.o_withEllipsis blockquote.o_ellipsis_links,#o_main_wrapper #o_main_container blockquote#o_main_right,.o_comments .o_comment_wrapper blockquote.o_reply,.o_comments .o_comment_wrapper blockquote.o_delete,blockquote.o_noti,.o_repo_details .o_lead blockquote.o_media{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,.blockquote-reverse .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper .blockquote-reverse h5:before,.blockquote-reverse .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper .blockquote-reverse .o_comment:before,.blockquote-reverse .o_bc_meta:before,.blockquote-reverse .o_noti:before,.blockquote-reverse .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .blockquote-reverse .o_hide:before,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_state:before,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_score:before,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .blockquote-reverse .o_label:before,.blockquote-reverse .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .blockquote-reverse .o_entry:before,blockquote.pull-right footer:before,.o_withEllipsis blockquote.o_ellipsis_links footer:before,#o_main_wrapper #o_main_container blockquote#o_main_right footer:before,.o_comments .o_comment_wrapper blockquote.o_reply footer:before,.o_comments .o_comment_wrapper blockquote.o_delete footer:before,blockquote.o_noti footer:before,.o_repo_details .o_lead blockquote.o_media footer:before,blockquote.pull-right small:before,.o_withEllipsis blockquote.o_ellipsis_links small:before,#o_main_wrapper #o_main_container blockquote#o_main_right small:before,.o_comments .o_comment_wrapper blockquote.o_reply small:before,.o_comments .o_comment_wrapper blockquote.o_delete small:before,blockquote.o_noti small:before,.o_repo_details .o_lead blockquote.o_media small:before,blockquote.pull-right .small:before,.o_withEllipsis blockquote.o_ellipsis_links .small:before,#o_main_wrapper #o_main_container blockquote#o_main_right .small:before,.o_comments .o_comment_wrapper blockquote.o_reply .small:before,.o_comments .o_comment_wrapper blockquote.o_delete .small:before,blockquote.o_noti .small:before,.o_repo_details .o_lead blockquote.o_media .small:before,blockquote.pull-right .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper blockquote.pull-right h5:before,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links h5:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right h5:before,.o_comments .o_comment_wrapper blockquote.o_reply h5:before,.o_comments .o_comment_wrapper blockquote.o_delete h5:before,blockquote.o_noti .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper blockquote.o_noti h5:before,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media h5:before,blockquote.pull-right .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper blockquote.pull-right .o_comment:before,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links .o_comment:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right .o_comment:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_comment:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_comment:before,blockquote.o_noti .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper blockquote.o_noti .o_comment:before,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media .o_comment:before,blockquote.pull-right .o_bc_meta:before,.o_withEllipsis blockquote.o_ellipsis_links .o_bc_meta:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_bc_meta:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_bc_meta:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_bc_meta:before,blockquote.o_noti .o_bc_meta:before,.o_repo_details .o_lead blockquote.o_media .o_bc_meta:before,blockquote.pull-right .o_noti:before,.o_withEllipsis blockquote.o_ellipsis_links .o_noti:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_noti:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_noti:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_noti:before,blockquote.o_noti .o_noti:before,.o_repo_details .o_lead blockquote.o_media .o_noti:before,blockquote.pull-right .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content blockquote.pull-right .o_hide:before,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_withEllipsis blockquote.o_ellipsis_links .o_hide:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content #o_main_wrapper #o_main_container blockquote#o_main_right .o_hide:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_reply .o_hide:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_delete .o_hide:before,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content blockquote.o_noti .o_hide:before,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_repo_details .o_lead blockquote.o_media .o_hide:before,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_state:before,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_state:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_state:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_state:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_state:before,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_state:before,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_state:before,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_score:before,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_score:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_score:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_score:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_score:before,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_score:before,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_score:before,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.pull-right .o_label:before,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_withEllipsis blockquote.o_ellipsis_links .o_label:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings #o_main_wrapper #o_main_container blockquote#o_main_right .o_label:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_reply .o_label:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_delete .o_label:before,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.o_noti .o_label:before,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_repo_details .o_lead blockquote.o_media .o_label:before,blockquote.pull-right .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc blockquote.pull-right .o_entry:before,.o_withEllipsis blockquote.o_ellipsis_links .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_withEllipsis blockquote.o_ellipsis_links .o_entry:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc #o_main_wrapper #o_main_container blockquote#o_main_right .o_entry:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_reply .o_entry:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_delete .o_entry:before,blockquote.o_noti .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc blockquote.o_noti .o_entry:before,.o_repo_details .o_lead blockquote.o_media .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_repo_details .o_lead blockquote.o_media .o_entry:before{content:''}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,.blockquote-reverse .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper .blockquote-reverse h5:after,.blockquote-reverse .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper .blockquote-reverse .o_comment:after,.blockquote-reverse .o_bc_meta:after,.blockquote-reverse .o_noti:after,.blockquote-reverse .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .blockquote-reverse .o_hide:after,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_state:after,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_score:after,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .blockquote-reverse .o_label:after,.blockquote-reverse .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .blockquote-reverse .o_entry:after,blockquote.pull-right footer:after,.o_withEllipsis blockquote.o_ellipsis_links footer:after,#o_main_wrapper #o_main_container blockquote#o_main_right footer:after,.o_comments .o_comment_wrapper blockquote.o_reply footer:after,.o_comments .o_comment_wrapper blockquote.o_delete footer:after,blockquote.o_noti footer:after,.o_repo_details .o_lead blockquote.o_media footer:after,blockquote.pull-right small:after,.o_withEllipsis blockquote.o_ellipsis_links small:after,#o_main_wrapper #o_main_container blockquote#o_main_right small:after,.o_comments .o_comment_wrapper blockquote.o_reply small:after,.o_comments .o_comment_wrapper blockquote.o_delete small:after,blockquote.o_noti small:after,.o_repo_details .o_lead blockquote.o_media small:after,blockquote.pull-right .small:after,.o_withEllipsis blockquote.o_ellipsis_links .small:after,#o_main_wrapper #o_main_container blockquote#o_main_right .small:after,.o_comments .o_comment_wrapper blockquote.o_reply .small:after,.o_comments .o_comment_wrapper blockquote.o_delete .small:after,blockquote.o_noti .small:after,.o_repo_details .o_lead blockquote.o_media .small:after,blockquote.pull-right .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper blockquote.pull-right h5:after,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links h5:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right h5:after,.o_comments .o_comment_wrapper blockquote.o_reply h5:after,.o_comments .o_comment_wrapper blockquote.o_delete h5:after,blockquote.o_noti .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper blockquote.o_noti h5:after,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media h5:after,blockquote.pull-right .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper blockquote.pull-right .o_comment:after,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links .o_comment:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right .o_comment:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_comment:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_comment:after,blockquote.o_noti .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper blockquote.o_noti .o_comment:after,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media .o_comment:after,blockquote.pull-right .o_bc_meta:after,.o_withEllipsis blockquote.o_ellipsis_links .o_bc_meta:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_bc_meta:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_bc_meta:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_bc_meta:after,blockquote.o_noti .o_bc_meta:after,.o_repo_details .o_lead blockquote.o_media .o_bc_meta:after,blockquote.pull-right .o_noti:after,.o_withEllipsis blockquote.o_ellipsis_links .o_noti:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_noti:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_noti:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_noti:after,blockquote.o_noti .o_noti:after,.o_repo_details .o_lead blockquote.o_media .o_noti:after,blockquote.pull-right .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content blockquote.pull-right .o_hide:after,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_withEllipsis blockquote.o_ellipsis_links .o_hide:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content #o_main_wrapper #o_main_container blockquote#o_main_right .o_hide:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_reply .o_hide:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_delete .o_hide:after,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content blockquote.o_noti .o_hide:after,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_repo_details .o_lead blockquote.o_media .o_hide:after,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_state:after,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_state:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_state:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_state:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_state:after,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_state:after,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_state:after,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_score:after,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_score:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_score:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_score:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_score:after,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_score:after,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_score:after,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.pull-right .o_label:after,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_withEllipsis blockquote.o_ellipsis_links .o_label:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings #o_main_wrapper #o_main_container blockquote#o_main_right .o_label:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_reply .o_label:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_delete .o_label:after,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.o_noti .o_label:after,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_repo_details .o_lead blockquote.o_media .o_label:after,blockquote.pull-right .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc blockquote.pull-right .o_entry:after,.o_withEllipsis blockquote.o_ellipsis_links .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_withEllipsis blockquote.o_ellipsis_links .o_entry:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc #o_main_wrapper #o_main_container blockquote#o_main_right .o_entry:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_reply .o_entry:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_delete .o_entry:after,blockquote.o_noti .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc blockquote.o_noti .o_entry:after,.o_repo_details .o_lead blockquote.o_media .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_repo_details .o_lead blockquote.o_media .o_entry:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}
+**//*! normalize.css v3.0.0 | MIT License | git.io/normalize */html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],html input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]{-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box;box-sizing:content-box}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:0.35em 0.625em 0.75em}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}@media print{*{text-shadow:none !important;color:#000 !important;background:transparent !important;box-shadow:none !important}a,a:visited{text-decoration:underline}a[href]:after{content:" (" attr(href) ")"}abbr[title]:after{content:" (" attr(title) ")"}a[href^="javascript:"]:after,a[href^="#"]:after{content:""}pre,blockquote{border:1px solid #999;page-break-inside:avoid}thead{display:table-header-group}tr,img{page-break-inside:avoid}img{max-width:100% !important}p,h2,h3{orphans:3;widows:3}h2,h3{page-break-after:avoid}select{background:#fff !important}.navbar{display:none}.table td,.table th{background-color:#fff !important}.btn>.caret,a.o_chelp>.caret,.dropup>.btn>.caret,.dropup>a.o_chelp>.caret{border-top-color:#000 !important}.label{border:1px solid #000}.table{border-collapse:collapse !important}.table-bordered th,.table-bordered td{border:1px solid #ddd !important}}*{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}*:before,*:after{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}html{font-size:62.5%;-webkit-tap-highlight-color:transparent}body{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;font-size:14px;line-height:1.42857;color:#333;background-color:#fff}input,button,select,textarea{font-family:inherit;font-size:inherit;line-height:inherit}a{color:#428bca;text-decoration:none}a:hover,a:focus{color:#2a6496;text-decoration:underline}a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}figure{margin:0}img{vertical-align:middle}.img-responsive{display:block;max-width:100%;height:auto}.img-rounded{border-radius:6px}.img-thumbnail,.o_form .o_filepreview img,.o_feed .o_media{padding:4px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out;display:inline-block;max-width:100%;height:auto}.img-circle,.o_portrait img,#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_my_menu img{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0, 0, 0, 0);border:0}h1,h2,h3,h4,.o_cal .fc-header-title h2,h5,h6,.h1,.h2,.h3,.h4,.h5,.h6{font-family:inherit;font-weight:500;line-height:1.1;color:inherit}h1 small,h1 .small,h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h1 h5,h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h1 .o_comment,h1 .o_bc_meta,h1 .o_noti,h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h1 .o_hide,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_state,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_score,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h1 .o_label,h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h1 .o_entry,h2 small,h2 .small,h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h2 h5,h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h2 .o_comment,h2 .o_bc_meta,h2 .o_noti,h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h2 .o_hide,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_state,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_score,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h2 .o_label,h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h2 .o_entry,h3 small,h3 .small,h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h3 h5,h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h3 .o_comment,h3 .o_bc_meta,h3 .o_noti,h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h3 .o_hide,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_state,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_score,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h3 .o_label,h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h3 .o_entry,h4 small,.o_cal .fc-header-title h2 small,h4 .small,.o_cal .fc-header-title h2 .small,h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h4 h5,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 h5,h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h4 .o_comment,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 .o_comment,h4 .o_bc_meta,.o_cal .fc-header-title h2 .o_bc_meta,h4 .o_noti,.o_cal .fc-header-title h2 .o_noti,h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h4 .o_hide,.o_cal .fc-header-title h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .o_cal .fc-header-title h2 .o_hide,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_state,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_state,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_score,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_score,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h4 .o_label,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_cal .fc-header-title h2 .o_label,h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h4 .o_entry,.o_cal .fc-header-title h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .o_cal .fc-header-title h2 .o_entry,h5 small,h5 .small,h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h5 h5,h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h5 .o_comment,h5 .o_bc_meta,h5 .o_noti,h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h5 .o_hide,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_state,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_score,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h5 .o_label,h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h5 .o_entry,h6 small,h6 .small,h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h6 h5,h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h6 .o_comment,h6 .o_bc_meta,h6 .o_noti,h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h6 .o_hide,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_state,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_score,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h6 .o_label,h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h6 .o_entry,.h1 small,.h1 .small,.h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h1 h5,.h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h1 .o_comment,.h1 .o_bc_meta,.h1 .o_noti,.h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h1 .o_hide,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_state,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_score,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h1 .o_label,.h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h1 .o_entry,.h2 small,.h2 .small,.h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h2 h5,.h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h2 .o_comment,.h2 .o_bc_meta,.h2 .o_noti,.h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h2 .o_hide,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_state,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_score,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h2 .o_label,.h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h2 .o_entry,.h3 small,.h3 .small,.h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h3 h5,.h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h3 .o_comment,.h3 .o_bc_meta,.h3 .o_noti,.h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h3 .o_hide,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_state,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_score,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h3 .o_label,.h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h3 .o_entry,.h4 small,.h4 .small,.h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h4 h5,.h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h4 .o_comment,.h4 .o_bc_meta,.h4 .o_noti,.h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h4 .o_hide,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_state,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_score,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h4 .o_label,.h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h4 .o_entry,.h5 small,.h5 .small,.h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h5 h5,.h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h5 .o_comment,.h5 .o_bc_meta,.h5 .o_noti,.h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h5 .o_hide,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_state,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_score,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h5 .o_label,.h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h5 .o_entry,.h6 small,.h6 .small,.h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h6 h5,.h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h6 .o_comment,.h6 .o_bc_meta,.h6 .o_noti,.h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h6 .o_hide,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_state,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_score,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h6 .o_label,.h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h6 .o_entry{font-weight:normal;line-height:1;color:#999}h1,.h1,h2,.h2,h3,.h3{margin-top:20px;margin-bottom:10px}h1 small,h1 .small,h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h1 h5,h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h1 .o_comment,h1 .o_bc_meta,h1 .o_noti,h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h1 .o_hide,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_state,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h1 .o_score,h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h1 .o_label,h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h1 .o_entry,.h1 small,.h1 .small,.h1 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h1 h5,.h1 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h1 .o_comment,.h1 .o_bc_meta,.h1 .o_noti,.h1 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h1 .o_hide,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_state,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h1 .o_score,.h1 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h1 .o_label,.h1 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h1 .o_entry,h2 small,h2 .small,h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h2 h5,h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h2 .o_comment,h2 .o_bc_meta,h2 .o_noti,h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h2 .o_hide,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_state,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h2 .o_score,h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h2 .o_label,h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h2 .o_entry,.h2 small,.h2 .small,.h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h2 h5,.h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h2 .o_comment,.h2 .o_bc_meta,.h2 .o_noti,.h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h2 .o_hide,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_state,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h2 .o_score,.h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h2 .o_label,.h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h2 .o_entry,h3 small,h3 .small,h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h3 h5,h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h3 .o_comment,h3 .o_bc_meta,h3 .o_noti,h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h3 .o_hide,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_state,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h3 .o_score,h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h3 .o_label,h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h3 .o_entry,.h3 small,.h3 .small,.h3 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h3 h5,.h3 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h3 .o_comment,.h3 .o_bc_meta,.h3 .o_noti,.h3 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h3 .o_hide,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_state,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h3 .o_score,.h3 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h3 .o_label,.h3 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h3 .o_entry{font-size:65%}h4,.o_cal .fc-header-title h2,.h4,h5,.h5,h6,.h6{margin-top:10px;margin-bottom:10px}h4 small,.o_cal .fc-header-title h2 small,h4 .small,.o_cal .fc-header-title h2 .small,h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h4 h5,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 h5,h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h4 .o_comment,.o_cal .fc-header-title h2 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .o_cal .fc-header-title h2 .o_comment,h4 .o_bc_meta,.o_cal .fc-header-title h2 .o_bc_meta,h4 .o_noti,.o_cal .fc-header-title h2 .o_noti,h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h4 .o_hide,.o_cal .fc-header-title h2 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .o_cal .fc-header-title h2 .o_hide,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_state,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_state,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h4 .o_score,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_cal .fc-header-title h2 .o_score,h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h4 .o_label,.o_cal .fc-header-title h2 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_cal .fc-header-title h2 .o_label,h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h4 .o_entry,.o_cal .fc-header-title h2 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .o_cal .fc-header-title h2 .o_entry,.h4 small,.h4 .small,.h4 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h4 h5,.h4 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h4 .o_comment,.h4 .o_bc_meta,.h4 .o_noti,.h4 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h4 .o_hide,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_state,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h4 .o_score,.h4 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h4 .o_label,.h4 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h4 .o_entry,h5 small,h5 .small,h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h5 h5,h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h5 .o_comment,h5 .o_bc_meta,h5 .o_noti,h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h5 .o_hide,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_state,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h5 .o_score,h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h5 .o_label,h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h5 .o_entry,.h5 small,.h5 .small,.h5 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h5 h5,.h5 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h5 .o_comment,.h5 .o_bc_meta,.h5 .o_noti,.h5 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h5 .o_hide,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_state,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h5 .o_score,.h5 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h5 .o_label,.h5 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h5 .o_entry,h6 small,h6 .small,h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper h6 h5,h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper h6 .o_comment,h6 .o_bc_meta,h6 .o_noti,h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content h6 .o_hide,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_state,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access h6 .o_score,h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings h6 .o_label,h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc h6 .o_entry,.h6 small,.h6 .small,.h6 .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .h6 h5,.h6 .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper .h6 .o_comment,.h6 .o_bc_meta,.h6 .o_noti,.h6 .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content .h6 .o_hide,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_state,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .h6 .o_score,.h6 .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .h6 .o_label,.h6 .o_course_run .o_toc .o_entry,.o_course_run .o_toc .h6 .o_entry{font-size:75%}h1,.h1{font-size:36px}h2,.h2{font-size:30px}h3,.h3{font-size:24px}h4,.o_cal .fc-header-title h2,.h4{font-size:18px}h5,.h5{font-size:14px}h6,.h6{font-size:12px}p{margin:0 0 10px}.lead{margin-bottom:20px;font-size:16px;font-weight:200;line-height:1.4}@media (min-width: 768px){.lead{font-size:21px}}
+small,.small,.o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o_comment,.o_bc_meta,.o_noti,.o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_course_run .o_toc .o_entry{font-size:85%}cite{font-style:normal}.text-left{text-align:left}.text-right{text-align:right}.text-center{text-align:center}.text-justify{text-align:justify}.text-muted,.o_button_toggle span,.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_context,.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_content .o_date,.o_noti,.o_noti .o_label,.o_feed .o_date,.o_feed .o_author,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle,.o_noinfo,.o_course_run .o_toc .o_entry .o_displaytitle{color:#999}.text-primary,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title,.o_catalog .o_level .o_meta .o_title,.o_catalog .o_sublevels .o_sublevel .o_meta .o_title{color:#428bca}a.text-primary:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_title:hover,.o_catalog .o_level .o_meta a.o_title:hover,.o_catalog .o_sublevels .o_sublevel .o_meta a.o_title:hover{color:#3071a9}.text-success,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_author,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle.o_active,.o_passed{color:#3c763d}a.text-success:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_author:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_lifecycle.o_active:hover,a.o_passed:hover{color:#2b542c}.text-info{color:#31708f}a.text-info:hover{color:#245269}.text-warning,.o_unknown{color:#8a6d3b}a.text-warning:hover,a.o_unknown:hover{color:#66512c}.text-danger,.o_failed{color:#a94442}a.text-danger:hover,a.o_failed:hover{color:#843534}.bg-primary{color:#fff}.bg-primary{background-color:#428bca}a.bg-primary:hover{background-color:#3071a9}.bg-success,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_go_xs{background-color:#dff0d8}a.bg-success:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta a.o_go_xs:hover{background-color:#c1e2b3}.bg-info{background-color:#d9edf7}a.bg-info:hover{background-color:#afd9ee}.bg-warning{background-color:#fcf8e3}a.bg-warning:hover{background-color:#f7ecb5}.bg-danger{background-color:#f2dede}a.bg-danger:hover{background-color:#e4b9b9}.page-header{padding-bottom:9px;margin:40px 0 20px;border-bottom:1px solid #eee}ul,ol{margin-top:0;margin-bottom:10px}ul ul,ul ol,ol ul,ol ol{margin-bottom:0}.list-unstyled,.list-inline{padding-left:0;list-style:none}.list-inline{margin-left:-5px}.list-inline>li{display:inline-block;padding-left:5px;padding-right:5px}dl{margin-top:0;margin-bottom:20px}dt,dd{line-height:1.42857}dt{font-weight:bold}dd{margin-left:0}@media (min-width: 768px){.dl-horizontal dt{float:left;width:160px;clear:left;text-align:right;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.dl-horizontal dd{margin-left:180px}.dl-horizontal dd:before,.dl-horizontal dd:after{content:" ";display:table}.dl-horizontal dd:after{clear:both}}abbr[title],abbr[data-original-title]{cursor:help;border-bottom:1px dotted #999}.initialism{font-size:90%;text-transform:uppercase}blockquote{padding:10px 20px;margin:0 0 20px;font-size:17.5px;border-left:5px solid #eee}blockquote p:last-child,blockquote ul:last-child,blockquote ol:last-child{margin-bottom:0}blockquote footer,blockquote small,blockquote .small,blockquote .o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper blockquote h5,blockquote .o_comments .o_comment_wrapper .o_comment,.o_comments .o_comment_wrapper blockquote .o_comment,blockquote .o_bc_meta,blockquote .o_noti,blockquote .o_togglebox_wrapper div.o_togglebox_content .o_hide,.o_togglebox_wrapper div.o_togglebox_content blockquote .o_hide,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_state,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_score,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote .o_label,blockquote .o_course_run .o_toc .o_entry,.o_course_run .o_toc blockquote .o_entry{display:block;font-size:80%;line-height:1.42857;color:#999}blockquote footer:before,blockquote small:before,blockquote .small:before,blockquote .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper blockquote h5:before,blockquote .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper blockquote .o_comment:before,blockquote .o_bc_meta:before,blockquote .o_noti:before,blockquote .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content blockquote .o_hide:before,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_state:before,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote .o_score:before,blockquote .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote .o_label:before,blockquote .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc blockquote .o_entry:before{content:'\2014 \00A0'}.blockquote-reverse,blockquote.pull-right,.o_withEllipsis blockquote.o_ellipsis_links,#o_main_wrapper #o_main_container blockquote#o_main_right,.o_comments .o_comment_wrapper blockquote.o_reply,.o_comments .o_comment_wrapper blockquote.o_delete,blockquote.o_noti,.o_repo_details .o_lead blockquote.o_media{padding-right:15px;padding-left:0;border-right:5px solid #eee;border-left:0;text-align:right}.blockquote-reverse footer:before,.blockquote-reverse small:before,.blockquote-reverse .small:before,.blockquote-reverse .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper .blockquote-reverse h5:before,.blockquote-reverse .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper .blockquote-reverse .o_comment:before,.blockquote-reverse .o_bc_meta:before,.blockquote-reverse .o_noti:before,.blockquote-reverse .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .blockquote-reverse .o_hide:before,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_state:before,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_score:before,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .blockquote-reverse .o_label:before,.blockquote-reverse .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .blockquote-reverse .o_entry:before,blockquote.pull-right footer:before,.o_withEllipsis blockquote.o_ellipsis_links footer:before,#o_main_wrapper #o_main_container blockquote#o_main_right footer:before,.o_comments .o_comment_wrapper blockquote.o_reply footer:before,.o_comments .o_comment_wrapper blockquote.o_delete footer:before,blockquote.o_noti footer:before,.o_repo_details .o_lead blockquote.o_media footer:before,blockquote.pull-right small:before,.o_withEllipsis blockquote.o_ellipsis_links small:before,#o_main_wrapper #o_main_container blockquote#o_main_right small:before,.o_comments .o_comment_wrapper blockquote.o_reply small:before,.o_comments .o_comment_wrapper blockquote.o_delete small:before,blockquote.o_noti small:before,.o_repo_details .o_lead blockquote.o_media small:before,blockquote.pull-right .small:before,.o_withEllipsis blockquote.o_ellipsis_links .small:before,#o_main_wrapper #o_main_container blockquote#o_main_right .small:before,.o_comments .o_comment_wrapper blockquote.o_reply .small:before,.o_comments .o_comment_wrapper blockquote.o_delete .small:before,blockquote.o_noti .small:before,.o_repo_details .o_lead blockquote.o_media .small:before,blockquote.pull-right .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper blockquote.pull-right h5:before,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links h5:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right h5:before,.o_comments .o_comment_wrapper blockquote.o_reply h5:before,.o_comments .o_comment_wrapper blockquote.o_delete h5:before,blockquote.o_noti .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper blockquote.o_noti h5:before,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper h5:before,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media h5:before,blockquote.pull-right .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper blockquote.pull-right .o_comment:before,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links .o_comment:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right .o_comment:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_comment:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_comment:before,blockquote.o_noti .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper blockquote.o_noti .o_comment:before,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper .o_comment:before,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media .o_comment:before,blockquote.pull-right .o_bc_meta:before,.o_withEllipsis blockquote.o_ellipsis_links .o_bc_meta:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_bc_meta:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_bc_meta:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_bc_meta:before,blockquote.o_noti .o_bc_meta:before,.o_repo_details .o_lead blockquote.o_media .o_bc_meta:before,blockquote.pull-right .o_noti:before,.o_withEllipsis blockquote.o_ellipsis_links .o_noti:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_noti:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_noti:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_noti:before,blockquote.o_noti .o_noti:before,.o_repo_details .o_lead blockquote.o_media .o_noti:before,blockquote.pull-right .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content blockquote.pull-right .o_hide:before,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_withEllipsis blockquote.o_ellipsis_links .o_hide:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content #o_main_wrapper #o_main_container blockquote#o_main_right .o_hide:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_reply .o_hide:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_delete .o_hide:before,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content blockquote.o_noti .o_hide:before,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox_content .o_hide:before,.o_togglebox_wrapper div.o_togglebox_content .o_repo_details .o_lead blockquote.o_media .o_hide:before,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_state:before,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_state:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_state:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_state:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_state:before,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_state:before,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_state:before,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_score:before,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_score:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_score:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_score:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_score:before,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_score:before,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_score:before,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.pull-right .o_label:before,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_withEllipsis blockquote.o_ellipsis_links .o_label:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings #o_main_wrapper #o_main_container blockquote#o_main_right .o_label:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_reply .o_label:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_delete .o_label:before,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.o_noti .o_label:before,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:before,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_repo_details .o_lead blockquote.o_media .o_label:before,blockquote.pull-right .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc blockquote.pull-right .o_entry:before,.o_withEllipsis blockquote.o_ellipsis_links .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_withEllipsis blockquote.o_ellipsis_links .o_entry:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc #o_main_wrapper #o_main_container blockquote#o_main_right .o_entry:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_reply .o_entry:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_delete .o_entry:before,blockquote.o_noti .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc blockquote.o_noti .o_entry:before,.o_repo_details .o_lead blockquote.o_media .o_course_run .o_toc .o_entry:before,.o_course_run .o_toc .o_repo_details .o_lead blockquote.o_media .o_entry:before{content:''}.blockquote-reverse footer:after,.blockquote-reverse small:after,.blockquote-reverse .small:after,.blockquote-reverse .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper .blockquote-reverse h5:after,.blockquote-reverse .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper .blockquote-reverse .o_comment:after,.blockquote-reverse .o_bc_meta:after,.blockquote-reverse .o_noti:after,.blockquote-reverse .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .blockquote-reverse .o_hide:after,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_state:after,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .blockquote-reverse .o_score:after,.blockquote-reverse .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .blockquote-reverse .o_label:after,.blockquote-reverse .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .blockquote-reverse .o_entry:after,blockquote.pull-right footer:after,.o_withEllipsis blockquote.o_ellipsis_links footer:after,#o_main_wrapper #o_main_container blockquote#o_main_right footer:after,.o_comments .o_comment_wrapper blockquote.o_reply footer:after,.o_comments .o_comment_wrapper blockquote.o_delete footer:after,blockquote.o_noti footer:after,.o_repo_details .o_lead blockquote.o_media footer:after,blockquote.pull-right small:after,.o_withEllipsis blockquote.o_ellipsis_links small:after,#o_main_wrapper #o_main_container blockquote#o_main_right small:after,.o_comments .o_comment_wrapper blockquote.o_reply small:after,.o_comments .o_comment_wrapper blockquote.o_delete small:after,blockquote.o_noti small:after,.o_repo_details .o_lead blockquote.o_media small:after,blockquote.pull-right .small:after,.o_withEllipsis blockquote.o_ellipsis_links .small:after,#o_main_wrapper #o_main_container blockquote#o_main_right .small:after,.o_comments .o_comment_wrapper blockquote.o_reply .small:after,.o_comments .o_comment_wrapper blockquote.o_delete .small:after,blockquote.o_noti .small:after,.o_repo_details .o_lead blockquote.o_media .small:after,blockquote.pull-right .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper blockquote.pull-right h5:after,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links h5:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right h5:after,.o_comments .o_comment_wrapper blockquote.o_reply h5:after,.o_comments .o_comment_wrapper blockquote.o_delete h5:after,blockquote.o_noti .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper blockquote.o_noti h5:after,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper h5:after,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media h5:after,blockquote.pull-right .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper blockquote.pull-right .o_comment:after,.o_withEllipsis blockquote.o_ellipsis_links .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper .o_withEllipsis blockquote.o_ellipsis_links .o_comment:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper #o_main_wrapper #o_main_container blockquote#o_main_right .o_comment:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_comment:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_comment:after,blockquote.o_noti .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper blockquote.o_noti .o_comment:after,.o_repo_details .o_lead blockquote.o_media .o_comments .o_comment_wrapper .o_comment:after,.o_comments .o_comment_wrapper .o_repo_details .o_lead blockquote.o_media .o_comment:after,blockquote.pull-right .o_bc_meta:after,.o_withEllipsis blockquote.o_ellipsis_links .o_bc_meta:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_bc_meta:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_bc_meta:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_bc_meta:after,blockquote.o_noti .o_bc_meta:after,.o_repo_details .o_lead blockquote.o_media .o_bc_meta:after,blockquote.pull-right .o_noti:after,.o_withEllipsis blockquote.o_ellipsis_links .o_noti:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_noti:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_noti:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_noti:after,blockquote.o_noti .o_noti:after,.o_repo_details .o_lead blockquote.o_media .o_noti:after,blockquote.pull-right .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content blockquote.pull-right .o_hide:after,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_withEllipsis blockquote.o_ellipsis_links .o_hide:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content #o_main_wrapper #o_main_container blockquote#o_main_right .o_hide:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_reply .o_hide:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_comments .o_comment_wrapper blockquote.o_delete .o_hide:after,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content blockquote.o_noti .o_hide:after,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox_content .o_hide:after,.o_togglebox_wrapper div.o_togglebox_content .o_repo_details .o_lead blockquote.o_media .o_hide:after,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_state:after,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_state:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_state:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_state:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_state:after,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_state:after,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_state:after,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.pull-right .o_score:after,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_withEllipsis blockquote.o_ellipsis_links .o_score:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access #o_main_wrapper #o_main_container blockquote#o_main_right .o_score:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_reply .o_score:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments .o_comment_wrapper blockquote.o_delete .o_score:after,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access blockquote.o_noti .o_score:after,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_repo_details .o_lead blockquote.o_media .o_score:after,blockquote.pull-right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.pull-right .o_label:after,.o_withEllipsis blockquote.o_ellipsis_links .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_withEllipsis blockquote.o_ellipsis_links .o_label:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings #o_main_wrapper #o_main_container blockquote#o_main_right .o_label:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_reply .o_label:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_comments .o_comment_wrapper blockquote.o_delete .o_label:after,blockquote.o_noti .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings blockquote.o_noti .o_label:after,.o_repo_details .o_lead blockquote.o_media .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label:after,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_repo_details .o_lead blockquote.o_media .o_label:after,blockquote.pull-right .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc blockquote.pull-right .o_entry:after,.o_withEllipsis blockquote.o_ellipsis_links .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_withEllipsis blockquote.o_ellipsis_links .o_entry:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc #o_main_wrapper #o_main_container blockquote#o_main_right .o_entry:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_reply .o_entry:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_comments .o_comment_wrapper blockquote.o_delete .o_entry:after,blockquote.o_noti .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc blockquote.o_noti .o_entry:after,.o_repo_details .o_lead blockquote.o_media .o_course_run .o_toc .o_entry:after,.o_course_run .o_toc .o_repo_details .o_lead blockquote.o_media .o_entry:after{content:'\00A0 \2014'}blockquote:before,blockquote:after{content:""}address{margin-bottom:20px;font-style:normal;line-height:1.42857}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,"Courier New",monospace}code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;white-space:nowrap;border-radius:4px}kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;box-shadow:inset 0 -1px 0 rgba(0,0,0,0.25)}pre{display:block;padding:9.5px;margin:0 0 10px;font-size:13px;line-height:1.42857;word-break:break-all;word-wrap:break-word;color:#333;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}.pre-scrollable{max-height:340px;overflow-y:scroll}.container{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container:before,.container:after{content:" ";display:table}.container:after{clear:both}@media (min-width: 768px){.container{width:750px}}@media (min-width: 992px){.container{width:970px}}@media (min-width: 1200px){.container{width:1170px}}
 .container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}.container-fluid:before,.container-fluid:after{content:" ";display:table}.container-fluid:after{clear:both}.row{margin-left:-15px;margin-right:-15px}.row:before,.row:after{content:" ";display:table}.row:after{clear:both}.col-xs-1,.col-sm-1,.col-md-1,.col-lg-1,.col-xs-2,.col-sm-2,.col-md-2,.col-lg-2,.col-xs-3,.col-sm-3,.col-md-3,.col-lg-3,.col-xs-4,.col-sm-4,.col-md-4,.col-lg-4,.col-xs-5,.col-sm-5,.col-md-5,.col-lg-5,.col-xs-6,.col-sm-6,.col-md-6,.col-lg-6,.col-xs-7,.col-sm-7,.col-md-7,.col-lg-7,.col-xs-8,.col-sm-8,.col-md-8,.col-lg-8,.col-xs-9,.col-sm-9,.col-md-9,.col-lg-9,.col-xs-10,.col-sm-10,.col-md-10,.col-lg-10,.col-xs-11,.col-sm-11,.col-md-11,.col-lg-11,.col-xs-12,.col-sm-12,.col-md-12,.col-lg-12{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.col-xs-1,.col-xs-2,.col-xs-3,.col-xs-4,.col-xs-5,.col-xs-6,.col-xs-7,.col-xs-8,.col-xs-9,.col-xs-10,.col-xs-11,.col-xs-12{float:left}.col-xs-1{width:8.33333%}.col-xs-2{width:16.66667%}.col-xs-3{width:25%}.col-xs-4{width:33.33333%}.col-xs-5{width:41.66667%}.col-xs-6{width:50%}.col-xs-7{width:58.33333%}.col-xs-8{width:66.66667%}.col-xs-9{width:75%}.col-xs-10{width:83.33333%}.col-xs-11{width:91.66667%}.col-xs-12{width:100%}.col-xs-pull-0{right:0%}.col-xs-pull-1{right:8.33333%}.col-xs-pull-2{right:16.66667%}.col-xs-pull-3{right:25%}.col-xs-pull-4{right:33.33333%}.col-xs-pull-5{right:41.66667%}.col-xs-pull-6{right:50%}.col-xs-pull-7{right:58.33333%}.col-xs-pull-8{right:66.66667%}.col-xs-pull-9{right:75%}.col-xs-pull-10{right:83.33333%}.col-xs-pull-11{right:91.66667%}.col-xs-pull-12{right:100%}.col-xs-push-0{left:0%}.col-xs-push-1{left:8.33333%}.col-xs-push-2{left:16.66667%}.col-xs-push-3{left:25%}.col-xs-push-4{left:33.33333%}.col-xs-push-5{left:41.66667%}.col-xs-push-6{left:50%}.col-xs-push-7{left:58.33333%}.col-xs-push-8{left:66.66667%}.col-xs-push-9{left:75%}.col-xs-push-10{left:83.33333%}.col-xs-push-11{left:91.66667%}.col-xs-push-12{left:100%}.col-xs-offset-0{margin-left:0%}.col-xs-offset-1{margin-left:8.33333%}.col-xs-offset-2{margin-left:16.66667%}.col-xs-offset-3{margin-left:25%}.col-xs-offset-4{margin-left:33.33333%}.col-xs-offset-5{margin-left:41.66667%}.col-xs-offset-6{margin-left:50%}.col-xs-offset-7{margin-left:58.33333%}.col-xs-offset-8{margin-left:66.66667%}.col-xs-offset-9{margin-left:75%}.col-xs-offset-10{margin-left:83.33333%}.col-xs-offset-11{margin-left:91.66667%}.col-xs-offset-12{margin-left:100%}@media (min-width: 768px){.col-sm-1,.col-sm-2,.col-sm-3,.col-sm-4,.col-sm-5,.col-sm-6,.col-sm-7,.col-sm-8,.col-sm-9,.col-sm-10,.col-sm-11,.col-sm-12{float:left}.col-sm-1{width:8.33333%}.col-sm-2{width:16.66667%}.col-sm-3{width:25%}.col-sm-4{width:33.33333%}.col-sm-5{width:41.66667%}.col-sm-6{width:50%}.col-sm-7{width:58.33333%}.col-sm-8{width:66.66667%}.col-sm-9{width:75%}.col-sm-10{width:83.33333%}.col-sm-11{width:91.66667%}.col-sm-12{width:100%}.col-sm-pull-0{right:0%}.col-sm-pull-1{right:8.33333%}.col-sm-pull-2{right:16.66667%}.col-sm-pull-3{right:25%}.col-sm-pull-4{right:33.33333%}.col-sm-pull-5{right:41.66667%}.col-sm-pull-6{right:50%}.col-sm-pull-7{right:58.33333%}.col-sm-pull-8{right:66.66667%}.col-sm-pull-9{right:75%}.col-sm-pull-10{right:83.33333%}.col-sm-pull-11{right:91.66667%}.col-sm-pull-12{right:100%}.col-sm-push-0{left:0%}.col-sm-push-1{left:8.33333%}.col-sm-push-2{left:16.66667%}.col-sm-push-3{left:25%}.col-sm-push-4{left:33.33333%}.col-sm-push-5{left:41.66667%}.col-sm-push-6{left:50%}.col-sm-push-7{left:58.33333%}.col-sm-push-8{left:66.66667%}.col-sm-push-9{left:75%}.col-sm-push-10{left:83.33333%}.col-sm-push-11{left:91.66667%}.col-sm-push-12{left:100%}.col-sm-offset-0{margin-left:0%}.col-sm-offset-1{margin-left:8.33333%}.col-sm-offset-2{margin-left:16.66667%}.col-sm-offset-3{margin-left:25%}.col-sm-offset-4{margin-left:33.33333%}.col-sm-offset-5{margin-left:41.66667%}.col-sm-offset-6{margin-left:50%}.col-sm-offset-7{margin-left:58.33333%}.col-sm-offset-8{margin-left:66.66667%}.col-sm-offset-9{margin-left:75%}.col-sm-offset-10{margin-left:83.33333%}.col-sm-offset-11{margin-left:91.66667%}.col-sm-offset-12{margin-left:100%}}@media (min-width: 992px){.col-md-1,.col-md-2,.col-md-3,.col-md-4,.col-md-5,.col-md-6,.col-md-7,.col-md-8,.col-md-9,.col-md-10,.col-md-11,.col-md-12{float:left}.col-md-1{width:8.33333%}.col-md-2{width:16.66667%}.col-md-3{width:25%}.col-md-4{width:33.33333%}.col-md-5{width:41.66667%}.col-md-6{width:50%}.col-md-7{width:58.33333%}.col-md-8{width:66.66667%}.col-md-9{width:75%}.col-md-10{width:83.33333%}.col-md-11{width:91.66667%}.col-md-12{width:100%}.col-md-pull-0{right:0%}.col-md-pull-1{right:8.33333%}.col-md-pull-2{right:16.66667%}.col-md-pull-3{right:25%}.col-md-pull-4{right:33.33333%}.col-md-pull-5{right:41.66667%}.col-md-pull-6{right:50%}.col-md-pull-7{right:58.33333%}.col-md-pull-8{right:66.66667%}.col-md-pull-9{right:75%}.col-md-pull-10{right:83.33333%}.col-md-pull-11{right:91.66667%}.col-md-pull-12{right:100%}.col-md-push-0{left:0%}.col-md-push-1{left:8.33333%}.col-md-push-2{left:16.66667%}.col-md-push-3{left:25%}.col-md-push-4{left:33.33333%}.col-md-push-5{left:41.66667%}.col-md-push-6{left:50%}.col-md-push-7{left:58.33333%}.col-md-push-8{left:66.66667%}.col-md-push-9{left:75%}.col-md-push-10{left:83.33333%}.col-md-push-11{left:91.66667%}.col-md-push-12{left:100%}.col-md-offset-0{margin-left:0%}.col-md-offset-1{margin-left:8.33333%}.col-md-offset-2{margin-left:16.66667%}.col-md-offset-3{margin-left:25%}.col-md-offset-4{margin-left:33.33333%}.col-md-offset-5{margin-left:41.66667%}.col-md-offset-6{margin-left:50%}.col-md-offset-7{margin-left:58.33333%}.col-md-offset-8{margin-left:66.66667%}.col-md-offset-9{margin-left:75%}.col-md-offset-10{margin-left:83.33333%}.col-md-offset-11{margin-left:91.66667%}.col-md-offset-12{margin-left:100%}}@media (min-width: 1200px){.col-lg-1,.col-lg-2,.col-lg-3,.col-lg-4,.col-lg-5,.col-lg-6,.col-lg-7,.col-lg-8,.col-lg-9,.col-lg-10,.col-lg-11,.col-lg-12{float:left}.col-lg-1{width:8.33333%}.col-lg-2{width:16.66667%}.col-lg-3{width:25%}.col-lg-4{width:33.33333%}.col-lg-5{width:41.66667%}.col-lg-6{width:50%}.col-lg-7{width:58.33333%}.col-lg-8{width:66.66667%}.col-lg-9{width:75%}.col-lg-10{width:83.33333%}.col-lg-11{width:91.66667%}.col-lg-12{width:100%}.col-lg-pull-0{right:0%}.col-lg-pull-1{right:8.33333%}.col-lg-pull-2{right:16.66667%}.col-lg-pull-3{right:25%}.col-lg-pull-4{right:33.33333%}.col-lg-pull-5{right:41.66667%}.col-lg-pull-6{right:50%}.col-lg-pull-7{right:58.33333%}.col-lg-pull-8{right:66.66667%}.col-lg-pull-9{right:75%}.col-lg-pull-10{right:83.33333%}.col-lg-pull-11{right:91.66667%}.col-lg-pull-12{right:100%}.col-lg-push-0{left:0%}.col-lg-push-1{left:8.33333%}.col-lg-push-2{left:16.66667%}.col-lg-push-3{left:25%}.col-lg-push-4{left:33.33333%}.col-lg-push-5{left:41.66667%}.col-lg-push-6{left:50%}.col-lg-push-7{left:58.33333%}.col-lg-push-8{left:66.66667%}.col-lg-push-9{left:75%}.col-lg-push-10{left:83.33333%}.col-lg-push-11{left:91.66667%}.col-lg-push-12{left:100%}.col-lg-offset-0{margin-left:0%}.col-lg-offset-1{margin-left:8.33333%}.col-lg-offset-2{margin-left:16.66667%}.col-lg-offset-3{margin-left:25%}.col-lg-offset-4{margin-left:33.33333%}.col-lg-offset-5{margin-left:41.66667%}.col-lg-offset-6{margin-left:50%}.col-lg-offset-7{margin-left:58.33333%}.col-lg-offset-8{margin-left:66.66667%}.col-lg-offset-9{margin-left:75%}.col-lg-offset-10{margin-left:83.33333%}.col-lg-offset-11{margin-left:91.66667%}.col-lg-offset-12{margin-left:100%}}table{max-width:100%;background-color:transparent}th{text-align:left}.table{width:100%;margin-bottom:20px}.table>thead>tr>th,.table>thead>tr>td,.table>tbody>tr>th,.table>tbody>tr>td,.table>tfoot>tr>th,.table>tfoot>tr>td{padding:8px;line-height:1.42857;vertical-align:top;border-top:1px solid #ddd}.table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #ddd}.table>caption+thead>tr:first-child>th,.table>caption+thead>tr:first-child>td,.table>colgroup+thead>tr:first-child>th,.table>colgroup+thead>tr:first-child>td,.table>thead:first-child>tr:first-child>th,.table>thead:first-child>tr:first-child>td{border-top:0}.table>tbody+tbody{border-top:2px solid #ddd}.table .table{background-color:#fff}.table-condensed>thead>tr>th,.table-condensed>thead>tr>td,.table-condensed>tbody>tr>th,.table-condensed>tbody>tr>td,.table-condensed>tfoot>tr>th,.table-condensed>tfoot>tr>td{padding:5px}.table-bordered{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td,.table-bordered>tbody>tr>th,.table-bordered>tbody>tr>td,.table-bordered>tfoot>tr>th,.table-bordered>tfoot>tr>td{border:1px solid #ddd}.table-bordered>thead>tr>th,.table-bordered>thead>tr>td{border-bottom-width:2px}.table-striped>tbody>tr:nth-child(odd)>td,.table-striped>tbody>tr:nth-child(odd)>th{background-color:#f9f9f9}.table-hover>tbody>tr:hover>td,.table-hover>tbody>tr:hover>th{background-color:#f5f5f5}table col[class*="col-"]{position:static;float:none;display:table-column}table td[class*="col-"],table th[class*="col-"]{position:static;float:none;display:table-cell}.table>thead>tr>td.active,.table>thead>tr>th.active,.table>thead>tr.active>td,.table>thead>tr.active>th,.table>tbody>tr>td.active,.table>tbody>tr>th.active,.table>tbody>tr.active>td,.table>tbody>tr.active>th,.table>tfoot>tr>td.active,.table>tfoot>tr>th.active,.table>tfoot>tr.active>td,.table>tfoot>tr.active>th{background-color:#f5f5f5}.table-hover>tbody>tr>td.active:hover,.table-hover>tbody>tr>th.active:hover,.table-hover>tbody>tr.active:hover>td,.table-hover>tbody>tr.active:hover>th{background-color:#e8e8e8}.table>thead>tr>td.success,.table>thead>tr>td.o_passed,.table>thead>tr>th.success,.table>thead>tr>th.o_passed,.table>thead>tr.success>td,.table>thead>tr.o_passed>td,.table>thead>tr.success>th,.table>thead>tr.o_passed>th,.table>tbody>tr>td.success,.table>tbody>tr>td.o_passed,.table>tbody>tr>th.success,.table>tbody>tr>th.o_passed,.table>tbody>tr.success>td,.table>tbody>tr.o_passed>td,.table>tbody>tr.success>th,.table>tbody>tr.o_passed>th,.table>tfoot>tr>td.success,.table>tfoot>tr>td.o_passed,.table>tfoot>tr>th.success,.table>tfoot>tr>th.o_passed,.table>tfoot>tr.success>td,.table>tfoot>tr.o_passed>td,.table>tfoot>tr.success>th,.table>tfoot>tr.o_passed>th{background-color:#dff0d8}.table-hover>tbody>tr>td.success:hover,.table-hover>tbody>tr>td.o_passed:hover,.table-hover>tbody>tr>th.success:hover,.table-hover>tbody>tr>th.o_passed:hover,.table-hover>tbody>tr.success:hover>td,.table-hover>tbody>tr.o_passed:hover>td,.table-hover>tbody>tr.success:hover>th,.table-hover>tbody>tr.o_passed:hover>th{background-color:#d0e9c6}.table>thead>tr>td.info,.table>thead>tr>th.info,.table>thead>tr.info>td,.table>thead>tr.info>th,.table>tbody>tr>td.info,.table>tbody>tr>th.info,.table>tbody>tr.info>td,.table>tbody>tr.info>th,.table>tfoot>tr>td.info,.table>tfoot>tr>th.info,.table>tfoot>tr.info>td,.table>tfoot>tr.info>th{background-color:#d9edf7}.table-hover>tbody>tr>td.info:hover,.table-hover>tbody>tr>th.info:hover,.table-hover>tbody>tr.info:hover>td,.table-hover>tbody>tr.info:hover>th{background-color:#c4e3f3}.table>thead>tr>td.warning,.table>thead>tr>td.o_unknown,.table>thead>tr>th.warning,.table>thead>tr>th.o_unknown,.table>thead>tr.warning>td,.table>thead>tr.o_unknown>td,.table>thead>tr.warning>th,.table>thead>tr.o_unknown>th,.table>tbody>tr>td.warning,.table>tbody>tr>td.o_unknown,.table>tbody>tr>th.warning,.table>tbody>tr>th.o_unknown,.table>tbody>tr.warning>td,.table>tbody>tr.o_unknown>td,.table>tbody>tr.warning>th,.table>tbody>tr.o_unknown>th,.table>tfoot>tr>td.warning,.table>tfoot>tr>td.o_unknown,.table>tfoot>tr>th.warning,.table>tfoot>tr>th.o_unknown,.table>tfoot>tr.warning>td,.table>tfoot>tr.o_unknown>td,.table>tfoot>tr.warning>th,.table>tfoot>tr.o_unknown>th{background-color:#fcf8e3}.table-hover>tbody>tr>td.warning:hover,.table-hover>tbody>tr>td.o_unknown:hover,.table-hover>tbody>tr>th.warning:hover,.table-hover>tbody>tr>th.o_unknown:hover,.table-hover>tbody>tr.warning:hover>td,.table-hover>tbody>tr.o_unknown:hover>td,.table-hover>tbody>tr.warning:hover>th,.table-hover>tbody>tr.o_unknown:hover>th{background-color:#faf2cc}.table>thead>tr>td.danger,.table>thead>tr>td.o_failed,.table>thead>tr>th.danger,.table>thead>tr>th.o_failed,.table>thead>tr.danger>td,.table>thead>tr.o_failed>td,.table>thead>tr.danger>th,.table>thead>tr.o_failed>th,.table>tbody>tr>td.danger,.table>tbody>tr>td.o_failed,.table>tbody>tr>th.danger,.table>tbody>tr>th.o_failed,.table>tbody>tr.danger>td,.table>tbody>tr.o_failed>td,.table>tbody>tr.danger>th,.table>tbody>tr.o_failed>th,.table>tfoot>tr>td.danger,.table>tfoot>tr>td.o_failed,.table>tfoot>tr>th.danger,.table>tfoot>tr>th.o_failed,.table>tfoot>tr.danger>td,.table>tfoot>tr.o_failed>td,.table>tfoot>tr.danger>th,.table>tfoot>tr.o_failed>th{background-color:#f2dede}.table-hover>tbody>tr>td.danger:hover,.table-hover>tbody>tr>td.o_failed:hover,.table-hover>tbody>tr>th.danger:hover,.table-hover>tbody>tr>th.o_failed:hover,.table-hover>tbody>tr.danger:hover>td,.table-hover>tbody>tr.o_failed:hover>td,.table-hover>tbody>tr.danger:hover>th,.table-hover>tbody>tr.o_failed:hover>th{background-color:#ebcccc}@media (max-width: 767px){.table-responsive{width:100%;margin-bottom:15px;overflow-y:hidden;overflow-x:scroll;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #ddd;-webkit-overflow-scrolling:touch}.table-responsive>.table{margin-bottom:0}.table-responsive>.table>thead>tr>th,.table-responsive>.table>thead>tr>td,.table-responsive>.table>tbody>tr>th,.table-responsive>.table>tbody>tr>td,.table-responsive>.table>tfoot>tr>th,.table-responsive>.table>tfoot>tr>td{white-space:nowrap}.table-responsive>.table-bordered{border:0}.table-responsive>.table-bordered>thead>tr>th:first-child,.table-responsive>.table-bordered>thead>tr>td:first-child,.table-responsive>.table-bordered>tbody>tr>th:first-child,.table-responsive>.table-bordered>tbody>tr>td:first-child,.table-responsive>.table-bordered>tfoot>tr>th:first-child,.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.table-responsive>.table-bordered>thead>tr>th:last-child,.table-responsive>.table-bordered>thead>tr>td:last-child,.table-responsive>.table-bordered>tbody>tr>th:last-child,.table-responsive>.table-bordered>tbody>tr>td:last-child,.table-responsive>.table-bordered>tfoot>tr>th:last-child,.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.table-responsive>.table-bordered>tbody>tr:last-child>th,.table-responsive>.table-bordered>tbody>tr:last-child>td,.table-responsive>.table-bordered>tfoot>tr:last-child>th,.table-responsive>.table-bordered>tfoot>tr:last-child>td{border-bottom:0}}fieldset{padding:0;margin:0;border:0;min-width:0}legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:inherit;color:#333;border:0;border-bottom:1px solid #e5e5e5}label{display:inline-block;margin-bottom:5px;font-weight:bold}input[type="search"]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}input[type="radio"],input[type="checkbox"]{margin:4px 0 0;margin-top:1px \9;line-height:normal}input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],select[size]{height:auto}input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}output{display:block;padding-top:7px;font-size:14px;line-height:1.42857;color:#555}.form-control{display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;line-height:1.42857;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-webkit-transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s;transition:border-color ease-in-out 0.15s,box-shadow ease-in-out 0.15s}.form-control:focus{border-color:#66afe9;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6)}.form-control::-moz-placeholder{color:#999;opacity:1}.form-control:-ms-input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[disabled],.form-control[readonly],fieldset[disabled] .form-control{cursor:not-allowed;background-color:#eee;opacity:1}textarea.form-control{height:auto}input[type="search"]{-webkit-appearance:none}input[type="date"]{line-height:34px}.form-group{margin-bottom:15px}.radio,.checkbox{display:block;min-height:20px;margin-top:10px;margin-bottom:10px;padding-left:20px}.radio label,.checkbox label{display:inline;font-weight:normal;cursor:pointer}.radio input[type="radio"],.radio-inline input[type="radio"],.checkbox input[type="checkbox"],.checkbox-inline input[type="checkbox"]{float:left;margin-left:-20px}.radio+.radio,.checkbox+.checkbox{margin-top:-5px}.radio-inline,.checkbox-inline{display:inline-block;padding-left:20px;margin-bottom:0;vertical-align:middle;font-weight:normal;cursor:pointer}.radio-inline+.radio-inline,.checkbox-inline+.checkbox-inline{margin-top:0;margin-left:10px}input[type="radio"][disabled],fieldset[disabled] input[type="radio"],input[type="checkbox"][disabled],fieldset[disabled] input[type="checkbox"],.radio[disabled],fieldset[disabled] .radio,.radio-inline[disabled],fieldset[disabled] .radio-inline,.checkbox[disabled],fieldset[disabled] .checkbox,.checkbox-inline[disabled],fieldset[disabled] .checkbox-inline{cursor:not-allowed}.input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn,.input-group-sm>.input-group-btn>a.o_chelp{height:30px;padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}select.input-sm,.input-group-sm>select.form-control,.input-group-sm>select.input-group-addon,.input-group-sm>.input-group-btn>select.btn{height:30px;line-height:30px}textarea.input-sm,.input-group-sm>textarea.form-control,.input-group-sm>textarea.input-group-addon,.input-group-sm>.input-group-btn>textarea.btn,select[multiple].input-sm,.input-group-sm>select[multiple].form-control,.input-group-sm>select[multiple].input-group-addon,.input-group-sm>.input-group-btn>select[multiple].btn{height:auto}.input-lg,.input-group-lg>.form-control,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.btn,.input-group-lg>.input-group-btn>a.o_chelp{height:46px;padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}select.input-lg,.input-group-lg>select.form-control,.input-group-lg>select.input-group-addon,.input-group-lg>.input-group-btn>select.btn{height:46px;line-height:46px}textarea.input-lg,.input-group-lg>textarea.form-control,.input-group-lg>textarea.input-group-addon,.input-group-lg>.input-group-btn>textarea.btn,select[multiple].input-lg,.input-group-lg>select[multiple].form-control,.input-group-lg>select[multiple].input-group-addon,.input-group-lg>.input-group-btn>select[multiple].btn{height:auto}.has-feedback{position:relative}.has-feedback .form-control{padding-right:42.5px}.has-feedback .form-control-feedback{position:absolute;top:25px;right:0;display:block;width:34px;height:34px;line-height:34px;text-align:center}.has-success .help-block,.has-success .control-label,.has-success .radio,.has-success .checkbox,.has-success .radio-inline,.has-success .checkbox-inline{color:#3c763d}.has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #67b168}.has-success .input-group-addon{color:#3c763d;border-color:#3c763d;background-color:#dff0d8}.has-success .form-control-feedback{color:#3c763d}.has-warning .help-block,.has-warning .control-label,.has-warning .radio,.has-warning .checkbox,.has-warning .radio-inline,.has-warning .checkbox-inline{color:#8a6d3b}.has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #c0a16b}.has-warning .input-group-addon{color:#8a6d3b;border-color:#8a6d3b;background-color:#fcf8e3}.has-warning .form-control-feedback{color:#8a6d3b}.has-error .help-block,.has-error .control-label,.has-error .radio,.has-error .checkbox,.has-error .radio-inline,.has-error .checkbox-inline{color:#a94442}.has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 6px #ce8483}.has-error .input-group-addon{color:#a94442;border-color:#a94442;background-color:#f2dede}.has-error .form-control-feedback{color:#a94442}.form-control-static{margin-bottom:0}.help-block{display:block;margin-top:5px;margin-bottom:10px;color:#737373}@media (min-width: 768px){.form-inline .form-group,.navbar-form .form-group,.o_navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}.form-inline .form-control,.navbar-form .form-control,.o_navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}.form-inline .input-group>.form-control,.navbar-form .input-group>.form-control,.o_navbar-form .input-group>.form-control{width:100%}.form-inline .control-label,.navbar-form .control-label,.o_navbar-form .control-label{margin-bottom:0;vertical-align:middle}.form-inline .radio,.navbar-form .radio,.o_navbar-form .radio,.form-inline .checkbox,.navbar-form .checkbox,.o_navbar-form .checkbox{display:inline-block;margin-top:0;margin-bottom:0;padding-left:0;vertical-align:middle}.form-inline .radio input[type="radio"],.navbar-form .radio input[type="radio"],.o_navbar-form .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"],.navbar-form .checkbox input[type="checkbox"],.o_navbar-form .checkbox input[type="checkbox"]{float:none;margin-left:0}.form-inline .has-feedback .form-control-feedback,.navbar-form .has-feedback .form-control-feedback,.o_navbar-form .has-feedback .form-control-feedback{top:0}}
 .form-horizontal .control-label,.form-horizontal .radio,.form-horizontal .checkbox,.form-horizontal .radio-inline,.form-horizontal .checkbox-inline{margin-top:0;margin-bottom:0;padding-top:7px}.form-horizontal .radio,.form-horizontal .checkbox{min-height:27px}.form-horizontal .form-group{margin-left:-15px;margin-right:-15px}.form-horizontal .form-group:before,.form-horizontal .form-group:after{content:" ";display:table}.form-horizontal .form-group:after{clear:both}.form-horizontal .form-control-static{padding-top:7px}@media (min-width: 768px){.form-horizontal .control-label{text-align:right}}.form-horizontal .has-feedback .form-control-feedback{top:0;right:15px}.btn,a.o_chelp{display:inline-block;margin-bottom:0;font-weight:normal;text-align:center;vertical-align:middle;cursor:pointer;background-image:none;border:1px solid transparent;white-space:nowrap;padding:6px 12px;font-size:14px;line-height:1.42857;border-radius:4px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.btn:focus,a.o_chelp:focus,.btn:active:focus,a.o_chelp:active:focus,.btn.active:focus,a.active.o_chelp:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}.btn:hover,a.o_chelp:hover,.btn:focus,a.o_chelp:focus{color:#333;text-decoration:none}.btn:active,a.o_chelp:active,.btn.active,a.active.o_chelp{outline:0;background-image:none;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn.disabled,a.disabled.o_chelp,.btn[disabled],a[disabled].o_chelp,fieldset[disabled] .btn,fieldset[disabled] a.o_chelp{cursor:not-allowed;pointer-events:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none}.btn-default{color:#333;background-color:#fff;border-color:#ccc}.btn-default:hover,.btn-default:focus,.btn-default:active,.btn-default.active{color:#333;background-color:#ebebeb;border-color:#adadad}.open .btn-default.dropdown-toggle{color:#333;background-color:#ebebeb;border-color:#adadad}.btn-default:active,.btn-default.active{background-image:none}.open .btn-default.dropdown-toggle{background-image:none}.btn-default.disabled,.btn-default.disabled:hover,.btn-default.disabled:focus,.btn-default.disabled:active,.btn-default.disabled.active,.btn-default[disabled],.btn-default[disabled]:hover,.btn-default[disabled]:focus,.btn-default[disabled]:active,.btn-default[disabled].active,fieldset[disabled] .btn-default,fieldset[disabled] .btn-default:hover,fieldset[disabled] .btn-default:focus,fieldset[disabled] .btn-default:active,fieldset[disabled] .btn-default.active{background-color:#fff;border-color:#ccc}.btn-default .badge{color:#fff;background-color:#333}.btn-primary,a.o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start{color:#fff;background-color:#428bca;border-color:#357ebd}.btn-primary:hover,a.o_chelp:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:hover,.btn-primary:focus,a.o_chelp:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:focus,.btn-primary:active,a.o_chelp:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:active,.btn-primary.active,a.active.o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_start{color:#fff;background-color:#3276b1;border-color:#285e8e}.open .btn-primary.dropdown-toggle,.open a.dropdown-toggle.o_chelp,.open .o_coursetable.o_rendertype_custom .o_table_row .o_access .dropdown-toggle.o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .open .dropdown-toggle.o_start{color:#fff;background-color:#3276b1;border-color:#285e8e}.btn-primary:active,a.o_chelp:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:active,.btn-primary.active,a.active.o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_start{background-image:none}.open .btn-primary.dropdown-toggle,.open a.dropdown-toggle.o_chelp,.open .o_coursetable.o_rendertype_custom .o_table_row .o_access .dropdown-toggle.o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .open .dropdown-toggle.o_start{background-image:none}.btn-primary.disabled,a.disabled.o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_start,.btn-primary.disabled:hover,a.disabled.o_chelp:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_start:hover,.btn-primary.disabled:focus,a.disabled.o_chelp:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_start:focus,.btn-primary.disabled:active,a.disabled.o_chelp:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_start:active,.btn-primary.disabled.active,a.disabled.active.o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.active.o_start,.btn-primary[disabled],a[disabled].o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_start,.btn-primary[disabled]:hover,a[disabled].o_chelp:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_start:hover,.btn-primary[disabled]:focus,a[disabled].o_chelp:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_start:focus,.btn-primary[disabled]:active,a[disabled].o_chelp:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_start:active,.btn-primary[disabled].active,a[disabled].active.o_chelp,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].active.o_start,fieldset[disabled] .btn-primary,fieldset[disabled] a.o_chelp,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_start,fieldset[disabled] .btn-primary:hover,fieldset[disabled] a.o_chelp:hover,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_start:hover,fieldset[disabled] .btn-primary:focus,fieldset[disabled] a.o_chelp:focus,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_start:focus,fieldset[disabled] .btn-primary:active,fieldset[disabled] a.o_chelp:active,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_start:active,fieldset[disabled] .btn-primary.active,fieldset[disabled] a.active.o_chelp,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .active.o_start{background-color:#428bca;border-color:#357ebd}.btn-primary .badge,a.o_chelp .badge,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start .badge{color:#428bca;background-color:#fff}.btn-success,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{color:#fff;background-color:#5cb85c;border-color:#4cae4c}.btn-success:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:hover,.btn-success:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:focus,.btn-success:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:active,.btn-success.active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_details{color:#fff;background-color:#47a447;border-color:#398439}.open .btn-success.dropdown-toggle,.open .o_coursetable.o_rendertype_custom .o_table_row .o_access .dropdown-toggle.o_details,.o_coursetable.o_rendertype_custom .o_table_row .o_access .open .dropdown-toggle.o_details{color:#fff;background-color:#47a447;border-color:#398439}.btn-success:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:active,.btn-success.active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_details{background-image:none}.open .btn-success.dropdown-toggle,.open .o_coursetable.o_rendertype_custom .o_table_row .o_access .dropdown-toggle.o_details,.o_coursetable.o_rendertype_custom .o_table_row .o_access .open .dropdown-toggle.o_details{background-image:none}.btn-success.disabled,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_details,.btn-success.disabled:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_details:hover,.btn-success.disabled:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_details:focus,.btn-success.disabled:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_details:active,.btn-success.disabled.active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.active.o_details,.btn-success[disabled],.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_details,.btn-success[disabled]:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_details:hover,.btn-success[disabled]:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_details:focus,.btn-success[disabled]:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_details:active,.btn-success[disabled].active,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].active.o_details,fieldset[disabled] .btn-success,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_details,fieldset[disabled] .btn-success:hover,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_details:hover,fieldset[disabled] .btn-success:focus,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_details:focus,fieldset[disabled] .btn-success:active,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_details:active,fieldset[disabled] .btn-success.active,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_details,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .active.o_details{background-color:#5cb85c;border-color:#4cae4c}.btn-success .badge,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details .badge{color:#5cb85c;background-color:#fff}.btn-info{color:#fff;background-color:#5bc0de;border-color:#46b8da}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active{color:#fff;background-color:#39b3d7;border-color:#269abc}.open .btn-info.dropdown-toggle{color:#fff;background-color:#39b3d7;border-color:#269abc}.btn-info:active,.btn-info.active{background-image:none}.open .btn-info.dropdown-toggle{background-image:none}.btn-info.disabled,.btn-info.disabled:hover,.btn-info.disabled:focus,.btn-info.disabled:active,.btn-info.disabled.active,.btn-info[disabled],.btn-info[disabled]:hover,.btn-info[disabled]:focus,.btn-info[disabled]:active,.btn-info[disabled].active,fieldset[disabled] .btn-info,fieldset[disabled] .btn-info:hover,fieldset[disabled] .btn-info:focus,fieldset[disabled] .btn-info:active,fieldset[disabled] .btn-info.active{background-color:#5bc0de;border-color:#46b8da}.btn-info .badge{color:#5bc0de;background-color:#fff}.btn-warning,.o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book{color:#fff;background-color:#f0ad4e;border-color:#eea236}.btn-warning:hover,.o_button_dirty:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:hover,.btn-warning:focus,.o_button_dirty:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:focus,.btn-warning:active,.o_button_dirty:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:active,.btn-warning.active,.active.o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_book{color:#fff;background-color:#ed9c28;border-color:#d58512}.open .btn-warning.dropdown-toggle,.open .dropdown-toggle.o_button_dirty,.open .o_coursetable.o_rendertype_custom .o_table_row .o_access .dropdown-toggle.o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access .open .dropdown-toggle.o_book{color:#fff;background-color:#ed9c28;border-color:#d58512}.btn-warning:active,.o_button_dirty:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:active,.btn-warning.active,.active.o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_book{background-image:none}.open .btn-warning.dropdown-toggle,.open .dropdown-toggle.o_button_dirty,.open .o_coursetable.o_rendertype_custom .o_table_row .o_access .dropdown-toggle.o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access .open .dropdown-toggle.o_book{background-image:none}.btn-warning.disabled,.disabled.o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_book,.btn-warning.disabled:hover,.disabled.o_button_dirty:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_book:hover,.btn-warning.disabled:focus,.disabled.o_button_dirty:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_book:focus,.btn-warning.disabled:active,.disabled.o_button_dirty:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.o_book:active,.btn-warning.disabled.active,.disabled.active.o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access .disabled.active.o_book,.btn-warning[disabled],[disabled].o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_book,.btn-warning[disabled]:hover,[disabled].o_button_dirty:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_book:hover,.btn-warning[disabled]:focus,[disabled].o_button_dirty:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_book:focus,.btn-warning[disabled]:active,[disabled].o_button_dirty:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].o_book:active,.btn-warning[disabled].active,[disabled].active.o_button_dirty,.o_coursetable.o_rendertype_custom .o_table_row .o_access [disabled].active.o_book,fieldset[disabled] .btn-warning,fieldset[disabled] .o_button_dirty,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_book,fieldset[disabled] .btn-warning:hover,fieldset[disabled] .o_button_dirty:hover,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_book:hover,fieldset[disabled] .btn-warning:focus,fieldset[disabled] .o_button_dirty:focus,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_book:focus,fieldset[disabled] .btn-warning:active,fieldset[disabled] .o_button_dirty:active,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:active,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .o_book:active,fieldset[disabled] .btn-warning.active,fieldset[disabled] .active.o_button_dirty,fieldset[disabled] .o_coursetable.o_rendertype_custom .o_table_row .o_access .active.o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access fieldset[disabled] .active.o_book{background-color:#f0ad4e;border-color:#eea236}.btn-warning .badge,.o_button_dirty .badge,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book .badge{color:#f0ad4e;background-color:#fff}.btn-danger{color:#fff;background-color:#d9534f;border-color:#d43f3a}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active{color:#fff;background-color:#d2322d;border-color:#ac2925}.open .btn-danger.dropdown-toggle{color:#fff;background-color:#d2322d;border-color:#ac2925}.btn-danger:active,.btn-danger.active{background-image:none}.open .btn-danger.dropdown-toggle{background-image:none}.btn-danger.disabled,.btn-danger.disabled:hover,.btn-danger.disabled:focus,.btn-danger.disabled:active,.btn-danger.disabled.active,.btn-danger[disabled],.btn-danger[disabled]:hover,.btn-danger[disabled]:focus,.btn-danger[disabled]:active,.btn-danger[disabled].active,fieldset[disabled] .btn-danger,fieldset[disabled] .btn-danger:hover,fieldset[disabled] .btn-danger:focus,fieldset[disabled] .btn-danger:active,fieldset[disabled] .btn-danger.active{background-color:#d9534f;border-color:#d43f3a}.btn-danger .badge{color:#d9534f;background-color:#fff}.btn-link{color:#428bca;font-weight:normal;cursor:pointer;border-radius:0}.btn-link,.btn-link:active,.btn-link[disabled],fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}.btn-link,.btn-link:hover,.btn-link:focus,.btn-link:active{border-color:transparent}.btn-link:hover,.btn-link:focus{color:#2a6496;text-decoration:underline;background-color:transparent}.btn-link[disabled]:hover,.btn-link[disabled]:focus,fieldset[disabled] .btn-link:hover,fieldset[disabled] .btn-link:focus{color:#999;text-decoration:none}.btn-lg,.btn-group-lg>.btn,.btn-group-lg>a.o_chelp{padding:10px 16px;font-size:18px;line-height:1.33;border-radius:6px}.btn-sm,.btn-group-sm>.btn,.btn-group-sm>a.o_chelp{padding:5px 10px;font-size:12px;line-height:1.5;border-radius:3px}.btn-xs,.btn-group-xs>.btn,.btn-group-xs>a.o_chelp{padding:1px 5px;font-size:12px;line-height:1.5;border-radius:3px}.btn-block,.o_repo_details .o_start,.o_repo_details .o_book{display:block;width:100%;padding-left:0;padding-right:0}.btn-block+.btn-block,.o_repo_details .o_start+.btn-block,.o_repo_details .o_book+.btn-block,.o_repo_details .btn-block+.o_start,.o_repo_details .o_start+.o_start,.o_repo_details .o_book+.o_start,.o_repo_details .btn-block+.o_book,.o_repo_details .o_start+.o_book,.o_repo_details .o_book+.o_book{margin-top:5px}input[type="submit"].btn-block,.o_repo_details input[type="submit"].o_start,.o_repo_details input[type="submit"].o_book,input[type="reset"].btn-block,.o_repo_details input[type="reset"].o_start,.o_repo_details input[type="reset"].o_book,input[type="button"].btn-block,.o_repo_details input[type="button"].o_start,.o_repo_details input[type="button"].o_book{width:100%}.fade{opacity:0;-webkit-transition:opacity 0.15s linear;transition:opacity 0.15s linear}.fade.in{opacity:1}.collapse{display:none}.collapse.in{display:block}.collapsing{position:relative;height:0;overflow:hidden;-webkit-transition:height 0.35s ease;transition:height 0.35s ease}.caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:4px solid;border-right:4px solid transparent;border-left:4px solid transparent}.dropdown{position:relative}.dropdown-toggle:focus{outline:0}.dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;font-size:14px;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,0.175);box-shadow:0 6px 12px rgba(0,0,0,0.175);background-clip:padding-box}.dropdown-menu.pull-right,div.dropdown-menu.o_chelp_wrapper,.o_withEllipsis .dropdown-menu.o_ellipsis_links,#o_main_wrapper #o_main_container .dropdown-menu#o_main_right,.o_comments .o_comment_wrapper .dropdown-menu.o_reply,.o_comments .o_comment_wrapper .dropdown-menu.o_delete,.dropdown-menu.o_noti,.o_repo_details .o_lead .dropdown-menu.o_media{right:0;left:auto}.dropdown-menu .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:1.42857;color:#333;white-space:nowrap}.dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus{text-decoration:none;color:#262626;background-color:#f5f5f5}.dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#fff;text-decoration:none;outline:0;background-color:#428bca}.dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999}.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:not-allowed}.open>.dropdown-menu{display:block}.open>a{outline:0}.dropdown-menu-right{left:auto;right:0}.dropdown-menu-left{left:0;right:auto}.dropdown-header{display:block;padding:3px 20px;font-size:12px;line-height:1.42857;color:#999}.dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990}.pull-right>.dropdown-menu,div.o_chelp_wrapper>.dropdown-menu,.o_withEllipsis .o_ellipsis_links>.dropdown-menu,#o_main_wrapper #o_main_container #o_main_right>.dropdown-menu,.o_comments .o_comment_wrapper .o_reply>.dropdown-menu,.o_comments .o_comment_wrapper .o_delete>.dropdown-menu,.o_noti>.dropdown-menu,.o_repo_details .o_lead .o_media>.dropdown-menu{right:0;left:auto}.dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid;content:""}.dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px}@media (min-width: 768px){.navbar-right .dropdown-menu{right:0;left:auto}.navbar-right .dropdown-menu-left{left:0;right:auto}}.btn-group,.btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}.btn-group>.btn,.btn-group>a.o_chelp,.btn-group-vertical>.btn,.btn-group-vertical>a.o_chelp{position:relative;float:left}.btn-group>.btn:hover,.btn-group>a.o_chelp:hover,.btn-group>.btn:focus,.btn-group>a.o_chelp:focus,.btn-group>.btn:active,.btn-group>a.o_chelp:active,.btn-group>.btn.active,.btn-group>a.active.o_chelp,.btn-group-vertical>.btn:hover,.btn-group-vertical>a.o_chelp:hover,.btn-group-vertical>.btn:focus,.btn-group-vertical>a.o_chelp:focus,.btn-group-vertical>.btn:active,.btn-group-vertical>a.o_chelp:active,.btn-group-vertical>.btn.active,.btn-group-vertical>a.active.o_chelp{z-index:2}.btn-group>.btn:focus,.btn-group>a.o_chelp:focus,.btn-group-vertical>.btn:focus,.btn-group-vertical>a.o_chelp:focus{outline:none}.btn-group .btn+.btn,.btn-group a.o_chelp+.btn,.btn-group .btn+a.o_chelp,.btn-group a.o_chelp+a.o_chelp,.btn-group .btn+.btn-group,.btn-group a.o_chelp+.btn-group,.btn-group .btn-group+.btn,.btn-group .btn-group+a.o_chelp,.btn-group .btn-group+.btn-group{margin-left:-1px}.btn-toolbar{margin-left:-5px}.btn-toolbar:before,.btn-toolbar:after{content:" ";display:table}.btn-toolbar:after{clear:both}.btn-toolbar .btn-group,.btn-toolbar .input-group{float:left}.btn-toolbar>.btn,.btn-toolbar>a.o_chelp,.btn-toolbar>.btn-group,.btn-toolbar>.input-group{margin-left:5px}.btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle),.btn-group>a.o_chelp:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}.btn-group>.btn:first-child,.btn-group>a.o_chelp:first-child{margin-left:0}.btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle),.btn-group>a.o_chelp:first-child:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn:last-child:not(:first-child),.btn-group>a.o_chelp:last-child:not(:first-child),.btn-group>.dropdown-toggle:not(:first-child){border-bottom-left-radius:0;border-top-left-radius:0}.btn-group>.btn-group{float:left}.btn-group>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group>.btn-group:not(:first-child):not(:last-child)>a.o_chelp{border-radius:0}.btn-group>.btn-group:first-child>.btn:last-child,.btn-group>.btn-group:first-child>a.o_chelp:last-child,.btn-group>.btn-group:first-child>.dropdown-toggle{border-bottom-right-radius:0;border-top-right-radius:0}.btn-group>.btn-group:last-child>.btn:first-child,.btn-group>.btn-group:last-child>a.o_chelp:first-child{border-bottom-left-radius:0;border-top-left-radius:0}.btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0}.btn-group>.btn+.dropdown-toggle,.btn-group>a.o_chelp+.dropdown-toggle{padding-left:8px;padding-right:8px}.btn-group>.btn-lg+.dropdown-toggle,.btn-group-lg.btn-group>.btn+.dropdown-toggle,.btn-group-lg.btn-group>a.o_chelp+.dropdown-toggle{padding-left:12px;padding-right:12px}.btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,0.125);box-shadow:inset 0 3px 5px rgba(0,0,0,0.125)}.btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}.btn .caret,a.o_chelp .caret{margin-left:0}.btn-lg .caret,.btn-group-lg>.btn .caret,.btn-group-lg>a.o_chelp .caret{border-width:5px 5px 0;border-bottom-width:0}.dropup .btn-lg .caret,.dropup .btn-group-lg>.btn .caret,.dropup .btn-group-lg>a.o_chelp .caret{border-width:0 5px 5px}.btn-group-vertical>.btn,.btn-group-vertical>a.o_chelp,.btn-group-vertical>.btn-group,.btn-group-vertical>.btn-group>.btn,.btn-group-vertical>.btn-group>a.o_chelp{display:block;float:none;width:100%;max-width:100%}.btn-group-vertical>.btn-group:before,.btn-group-vertical>.btn-group:after{content:" ";display:table}.btn-group-vertical>.btn-group:after{clear:both}.btn-group-vertical>.btn-group>.btn,.btn-group-vertical>.btn-group>a.o_chelp{float:none}.btn-group-vertical>.btn+.btn,.btn-group-vertical>a.o_chelp+.btn,.btn-group-vertical>.btn+a.o_chelp,.btn-group-vertical>a.o_chelp+a.o_chelp,.btn-group-vertical>.btn+.btn-group,.btn-group-vertical>a.o_chelp+.btn-group,.btn-group-vertical>.btn-group+.btn,.btn-group-vertical>.btn-group+a.o_chelp,.btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}.btn-group-vertical>.btn:not(:first-child):not(:last-child),.btn-group-vertical>a.o_chelp:not(:first-child):not(:last-child){border-radius:0}.btn-group-vertical>.btn:first-child:not(:last-child),.btn-group-vertical>a.o_chelp:first-child:not(:last-child){border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn:last-child:not(:first-child),.btn-group-vertical>a.o_chelp:last-child:not(:first-child){border-bottom-left-radius:4px;border-top-right-radius:0;border-top-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn,.btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>a.o_chelp{border-radius:0}.btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>a.o_chelp:last-child,.btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child,.btn-group-vertical>.btn-group:last-child:not(:first-child)>a.o_chelp:first-child{border-top-right-radius:0;border-top-left-radius:0}.btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}.btn-group-justified>.btn,.btn-group-justified>a.o_chelp,.btn-group-justified>.btn-group{float:none;display:table-cell;width:1%}.btn-group-justified>.btn-group .btn,.btn-group-justified>.btn-group a.o_chelp{width:100%}[data-toggle="buttons"]>.btn>input[type="radio"],[data-toggle="buttons"]>a.o_chelp>input[type="radio"],[data-toggle="buttons"]>.btn>input[type="checkbox"],[data-toggle="buttons"]>a.o_chelp>input[type="checkbox"]{display:none}.input-group{position:relative;display:table;border-collapse:separate}.input-group[class*="col-"]{float:none;padding-left:0;padding-right:0}.input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}.input-group-addon,.input-group-btn,.input-group .form-control{display:table-cell}.input-group-addon:not(:first-child):not(:last-child),.input-group-btn:not(:first-child):not(:last-child),.input-group .form-control:not(:first-child):not(:last-child){border-radius:0}.input-group-addon,.input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}.input-group-addon{padding:6px 12px;font-size:14px;font-weight:normal;line-height:1;color:#555;text-align:center;background-color:#eee;border:1px solid #ccc;border-radius:4px}.input-group-addon.input-sm,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.input-group-addon.btn,.input-group-sm>.input-group-btn>a.input-group-addon.o_chelp{padding:5px 10px;font-size:12px;border-radius:3px}.input-group-addon.input-lg,.input-group-lg>.input-group-addon,.input-group-lg>.input-group-btn>.input-group-addon.btn,.input-group-lg>.input-group-btn>a.input-group-addon.o_chelp{padding:10px 16px;font-size:18px;border-radius:6px}.input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.input-group .form-control:first-child,.input-group-addon:first-child,.input-group-btn:first-child>.btn,.input-group-btn:first-child>a.o_chelp,.input-group-btn:first-child>.btn-group>.btn,.input-group-btn:first-child>.btn-group>a.o_chelp,.input-group-btn:first-child>.dropdown-toggle,.input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>a.o_chelp:not(:last-child):not(.dropdown-toggle),.input-group-btn:last-child>.btn-group:not(:last-child)>.btn,.input-group-btn:last-child>.btn-group:not(:last-child)>a.o_chelp{border-bottom-right-radius:0;border-top-right-radius:0}.input-group-addon:first-child{border-right:0}.input-group .form-control:last-child,.input-group-addon:last-child,.input-group-btn:last-child>.btn,.input-group-btn:last-child>a.o_chelp,.input-group-btn:last-child>.btn-group>.btn,.input-group-btn:last-child>.btn-group>a.o_chelp,.input-group-btn:last-child>.dropdown-toggle,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:first-child>a.o_chelp:not(:first-child),.input-group-btn:first-child>.btn-group:not(:first-child)>.btn,.input-group-btn:first-child>.btn-group:not(:first-child)>a.o_chelp{border-bottom-left-radius:0;border-top-left-radius:0}.input-group-addon:last-child{border-left:0}.input-group-btn{position:relative;font-size:0;white-space:nowrap}.input-group-btn>.btn,.input-group-btn>a.o_chelp{position:relative}.input-group-btn>.btn+.btn,.input-group-btn>a.o_chelp+.btn,.input-group-btn>.btn+a.o_chelp,.input-group-btn>a.o_chelp+a.o_chelp{margin-left:-1px}.input-group-btn>.btn:hover,.input-group-btn>a.o_chelp:hover,.input-group-btn>.btn:focus,.input-group-btn>a.o_chelp:focus,.input-group-btn>.btn:active,.input-group-btn>a.o_chelp:active{z-index:2}.input-group-btn:first-child>.btn,.input-group-btn:first-child>a.o_chelp,.input-group-btn:first-child>.btn-group{margin-right:-1px}.input-group-btn:last-child>.btn,.input-group-btn:last-child>a.o_chelp,.input-group-btn:last-child>.btn-group{margin-left:-1px}.nav{margin-bottom:0;padding-left:0;list-style:none}.nav:before,.nav:after{content:" ";display:table}.nav:after{clear:both}.nav>li{position:relative;display:block}.nav>li>a{position:relative;display:block;padding:10px 15px}.nav>li>a:hover,.nav>li>a:focus{text-decoration:none;background-color:#eee}.nav>li.disabled>a{color:#999}.nav>li.disabled>a:hover,.nav>li.disabled>a:focus{color:#999;text-decoration:none;background-color:transparent;cursor:not-allowed}.nav .open>a,.nav .open>a:hover,.nav .open>a:focus{background-color:#eee;border-color:#428bca}.nav .nav-divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.nav>li>a>img{max-width:none}.nav-tabs{border-bottom:1px solid #ddd}.nav-tabs>li{float:left;margin-bottom:-1px}.nav-tabs>li>a{margin-right:2px;line-height:1.42857;border:1px solid transparent;border-radius:4px 4px 0 0}.nav-tabs>li>a:hover{border-color:#eee #eee #ddd}.nav-tabs>li.active>a,.nav-tabs>li.active>a:hover,.nav-tabs>li.active>a:focus{color:#555;background-color:#fff;border:1px solid #ddd;border-bottom-color:transparent;cursor:default}.nav-pills>li{float:left}.nav-pills>li>a{border-radius:4px}.nav-pills>li+li{margin-left:2px}.nav-pills>li.active>a,.nav-pills>li.active>a:hover,.nav-pills>li.active>a:focus{color:#fff;background-color:#428bca}.nav-stacked>li{float:none}.nav-stacked>li+li{margin-top:2px;margin-left:0}.nav-justified,.nav-tabs.nav-justified{width:100%}.nav-justified>li,.nav-tabs.nav-justified>li{float:none}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{text-align:center;margin-bottom:5px}.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width: 768px){.nav-justified>li,.nav-tabs.nav-justified>li{display:table-cell;width:1%}.nav-justified>li>a,.nav-tabs.nav-justified>li>a{margin-bottom:0}}
 .nav-tabs-justified,.nav-tabs.nav-justified{border-bottom:0}.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border:1px solid #ddd}@media (min-width: 768px){.nav-tabs-justified>li>a,.nav-tabs.nav-justified>li>a{border-bottom:1px solid #ddd;border-radius:4px 4px 0 0}.nav-tabs-justified>.active>a,.nav-tabs.nav-justified>.active>a,.nav-tabs-justified>.active>a:hover,.nav-tabs.nav-justified>.active>a:hover,.nav-tabs-justified>.active>a:focus,.nav-tabs.nav-justified>.active>a:focus{border-bottom-color:#fff}}
@@ -42,7 +42,7 @@ small,.small,.o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o
 .thumbnail{display:block;padding:4px;margin-bottom:20px;line-height:1.42857;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0.2s ease-in-out;transition:all 0.2s ease-in-out}.thumbnail>img,.thumbnail a>img{display:block;max-width:100%;height:auto;margin-left:auto;margin-right:auto}.thumbnail .caption{padding:9px;color:#333}a.thumbnail:hover,a.thumbnail:focus,a.thumbnail.active{border-color:#428bca}.alert{padding:15px;margin-bottom:20px;border:1px solid transparent;border-radius:4px}.alert h4,.alert .o_cal .fc-header-title h2,.o_cal .fc-header-title .alert h2{margin-top:0;color:inherit}.alert .alert-link{font-weight:bold}.alert>p,.alert>ul{margin-bottom:0}.alert>p+p{margin-top:5px}.alert-dismissable{padding-right:35px}.alert-dismissable .close{position:relative;top:-2px;right:-21px;color:inherit}.alert-success{background-color:#dff0d8;border-color:#d6e9c6;color:#3c763d}.alert-success hr{border-top-color:#c9e2b3}.alert-success .alert-link{color:#2b542c}.alert-info{background-color:#d9edf7;border-color:#bce8f1;color:#31708f}.alert-info hr{border-top-color:#a6e1ec}.alert-info .alert-link{color:#245269}.alert-warning{background-color:#fcf8e3;border-color:#faebcc;color:#8a6d3b}.alert-warning hr{border-top-color:#f7e1b5}.alert-warning .alert-link{color:#66512c}.alert-danger{background-color:#f2dede;border-color:#ebccd1;color:#a94442}.alert-danger hr{border-top-color:#e4b9c0}.alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}.progress{overflow:hidden;height:20px;margin-bottom:20px;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,0.1);box-shadow:inset 0 1px 2px rgba(0,0,0,0.1)}.progress-bar{float:left;width:0%;height:100%;font-size:12px;line-height:20px;color:#fff;text-align:center;background-color:#428bca;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,0.15);-webkit-transition:width 0.6s ease;transition:width 0.6s ease}.progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-size:40px 40px}.progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}.progress-bar-success{background-color:#5cb85c}.progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-info{background-color:#5bc0de}.progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-warning{background-color:#f0ad4e}.progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.progress-bar-danger{background-color:#d9534f}.progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent);background-image:linear-gradient(45deg, rgba(255,255,255,0.15) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.15) 75%, transparent 75%, transparent)}.media,.media-body{overflow:hidden;zoom:1}.media,.media .media{margin-top:15px}.media:first-child{margin-top:0}.media-object{display:block}.media-heading{margin:0 0 5px}.media>.pull-left,#o_main_wrapper #o_main_container .media>#o_main_left,#o_navbar_imclient .media>#o_im_message,#o_navbar_imclient .media>#o_im_status,#o_navbar_imclient .media>#o_im_summary,.o_comments .o_comment_wrapper .media>.o_avatar,.o_cal_toptoolbar .media>.o_cal_toptoolbar_sub,.o_cal_toptoolbar .media>.o_cal_toptoolbar_help,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .media>.o_rating_wrapper,.o_catalog .o_sublevels .media>.o_sublevel,.o_repo_details .o_social .media>.o_rating_wrapper{margin-right:10px}.media>.pull-right,.media>div.o_chelp_wrapper,.o_withEllipsis .media>.o_ellipsis_links,#o_main_wrapper #o_main_container .media>#o_main_right,.o_comments .o_comment_wrapper .media>.o_reply,.o_comments .o_comment_wrapper .media>.o_delete,.media>.o_noti,.o_repo_details .o_lead .media>.o_media{margin-left:10px}.media-list{padding-left:0;list-style:none}.list-group{margin-bottom:20px;padding-left:0}.list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #ddd}.list-group-item:first-child{border-top-right-radius:4px;border-top-left-radius:4px}.list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.list-group-item>.badge{float:right}.list-group-item>.badge+.badge{margin-right:5px}a.list-group-item{color:#555}a.list-group-item .list-group-item-heading{color:#333}a.list-group-item:hover,a.list-group-item:focus{text-decoration:none;background-color:#f5f5f5}a.list-group-item.active,a.list-group-item.active:hover,a.list-group-item.active:focus{z-index:2;color:#fff;background-color:#428bca;border-color:#428bca}a.list-group-item.active .list-group-item-heading,a.list-group-item.active:hover .list-group-item-heading,a.list-group-item.active:focus .list-group-item-heading{color:inherit}a.list-group-item.active .list-group-item-text,a.list-group-item.active:hover .list-group-item-text,a.list-group-item.active:focus .list-group-item-text{color:#e1edf7}.list-group-item-success{color:#3c763d;background-color:#dff0d8}a.list-group-item-success{color:#3c763d}a.list-group-item-success .list-group-item-heading{color:inherit}a.list-group-item-success:hover,a.list-group-item-success:focus{color:#3c763d;background-color:#d0e9c6}a.list-group-item-success.active,a.list-group-item-success.active:hover,a.list-group-item-success.active:focus{color:#fff;background-color:#3c763d;border-color:#3c763d}.list-group-item-info{color:#31708f;background-color:#d9edf7}a.list-group-item-info{color:#31708f}a.list-group-item-info .list-group-item-heading{color:inherit}a.list-group-item-info:hover,a.list-group-item-info:focus{color:#31708f;background-color:#c4e3f3}a.list-group-item-info.active,a.list-group-item-info.active:hover,a.list-group-item-info.active:focus{color:#fff;background-color:#31708f;border-color:#31708f}.list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}a.list-group-item-warning{color:#8a6d3b}a.list-group-item-warning .list-group-item-heading{color:inherit}a.list-group-item-warning:hover,a.list-group-item-warning:focus{color:#8a6d3b;background-color:#faf2cc}a.list-group-item-warning.active,a.list-group-item-warning.active:hover,a.list-group-item-warning.active:focus{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}.list-group-item-danger{color:#a94442;background-color:#f2dede}a.list-group-item-danger{color:#a94442}a.list-group-item-danger .list-group-item-heading{color:inherit}a.list-group-item-danger:hover,a.list-group-item-danger:focus{color:#a94442;background-color:#ebcccc}a.list-group-item-danger.active,a.list-group-item-danger.active:hover,a.list-group-item-danger.active:focus{color:#fff;background-color:#a94442;border-color:#a94442}.list-group-item-heading{margin-top:0;margin-bottom:5px}.list-group-item-text{margin-bottom:0;line-height:1.3}.panel{margin-bottom:20px;background-color:#fff;border:1px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,0.05);box-shadow:0 1px 1px rgba(0,0,0,0.05)}.panel-body{padding:15px}.panel-body:before,.panel-body:after{content:" ";display:table}.panel-body:after{clear:both}.panel-heading{padding:10px 15px;border-bottom:1px solid transparent;border-top-right-radius:3px;border-top-left-radius:3px}.panel-heading>.dropdown .dropdown-toggle{color:inherit}.panel-title{margin-top:0;margin-bottom:0;font-size:16px;color:inherit}.panel-title>a{color:inherit}.panel-footer{padding:10px 15px;background-color:#f5f5f5;border-top:1px solid #ddd;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.list-group{margin-bottom:0}.panel>.list-group .list-group-item{border-width:1px 0;border-radius:0}.panel>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-right-radius:3px;border-top-left-radius:3px}.panel>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel-heading+.list-group .list-group-item:first-child{border-top-width:0}.panel>.table,.panel>.table-responsive>.table{margin-bottom:0}.panel>.table:first-child,.panel>.table-responsive:first-child>.table:first-child{border-top-right-radius:3px;border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child{border-top-left-radius:3px}.panel>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,.panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child{border-top-right-radius:3px}.panel>.table:last-child,.panel>.table-responsive:last-child>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}.panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,.panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}.panel>.panel-body+.table,.panel>.panel-body+.table-responsive{border-top:1px solid #ddd}.panel>.table>tbody:first-child>tr:first-child th,.panel>.table>tbody:first-child>tr:first-child td{border-top:0}.panel>.table-bordered,.panel>.table-responsive>.table-bordered{border:0}.panel>.table-bordered>thead>tr>th:first-child,.panel>.table-bordered>thead>tr>td:first-child,.panel>.table-bordered>tbody>tr>th:first-child,.panel>.table-bordered>tbody>tr>td:first-child,.panel>.table-bordered>tfoot>tr>th:first-child,.panel>.table-bordered>tfoot>tr>td:first-child,.panel>.table-responsive>.table-bordered>thead>tr>th:first-child,.panel>.table-responsive>.table-bordered>thead>tr>td:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child{border-left:0}.panel>.table-bordered>thead>tr>th:last-child,.panel>.table-bordered>thead>tr>td:last-child,.panel>.table-bordered>tbody>tr>th:last-child,.panel>.table-bordered>tbody>tr>td:last-child,.panel>.table-bordered>tfoot>tr>th:last-child,.panel>.table-bordered>tfoot>tr>td:last-child,.panel>.table-responsive>.table-bordered>thead>tr>th:last-child,.panel>.table-responsive>.table-bordered>thead>tr>td:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,.panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,.panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child{border-right:0}.panel>.table-bordered>thead>tr:first-child>td,.panel>.table-bordered>thead>tr:first-child>th,.panel>.table-bordered>tbody>tr:first-child>td,.panel>.table-bordered>tbody>tr:first-child>th,.panel>.table-responsive>.table-bordered>thead>tr:first-child>td,.panel>.table-responsive>.table-bordered>thead>tr:first-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:first-child>th{border-bottom:0}.panel>.table-bordered>tbody>tr:last-child>td,.panel>.table-bordered>tbody>tr:last-child>th,.panel>.table-bordered>tfoot>tr:last-child>td,.panel>.table-bordered>tfoot>tr:last-child>th,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,.panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,.panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}.panel>.table-responsive{border:0;margin-bottom:0}.panel-group{margin-bottom:20px}.panel-group .panel{margin-bottom:0;border-radius:4px;overflow:hidden}.panel-group .panel+.panel{margin-top:5px}.panel-group .panel-heading{border-bottom:0}.panel-group .panel-heading+.panel-collapse .panel-body{border-top:1px solid #ddd}.panel-group .panel-footer{border-top:0}.panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #ddd}.panel-default{border-color:#ddd}.panel-default>.panel-heading{color:#333;background-color:#f5f5f5;border-color:#ddd}.panel-default>.panel-heading+.panel-collapse .panel-body{border-top-color:#ddd}.panel-default>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ddd}.panel-primary{border-color:#428bca}.panel-primary>.panel-heading{color:#fff;background-color:#428bca;border-color:#428bca}.panel-primary>.panel-heading+.panel-collapse .panel-body{border-top-color:#428bca}.panel-primary>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#428bca}.panel-success{border-color:#d6e9c6}.panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}.panel-success>.panel-heading+.panel-collapse .panel-body{border-top-color:#d6e9c6}.panel-success>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#d6e9c6}.panel-info{border-color:#bce8f1}.panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}.panel-info>.panel-heading+.panel-collapse .panel-body{border-top-color:#bce8f1}.panel-info>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#bce8f1}.panel-warning{border-color:#faebcc}.panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}.panel-warning>.panel-heading+.panel-collapse .panel-body{border-top-color:#faebcc}.panel-warning>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#faebcc}.panel-danger{border-color:#ebccd1}.panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}.panel-danger>.panel-heading+.panel-collapse .panel-body{border-top-color:#ebccd1}.panel-danger>.panel-footer+.panel-collapse .panel-body{border-bottom-color:#ebccd1}.well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.05);box-shadow:inset 0 1px 1px rgba(0,0,0,0.05)}.well blockquote{border-color:#ddd;border-color:rgba(0,0,0,0.15)}.well-lg{padding:24px;border-radius:6px}.well-sm{padding:9px;border-radius:3px}.close{float:right;font-size:21px;font-weight:bold;line-height:1;color:#000;text-shadow:0 1px 0 #fff;opacity:0.2;filter:alpha(opacity=20)}.close:hover,.close:focus{color:#000;text-decoration:none;cursor:pointer;opacity:0.5;filter:alpha(opacity=50)}button.close{padding:0;cursor:pointer;background:transparent;border:0;-webkit-appearance:none}.modal-open{overflow:hidden}.modal{display:none;overflow:auto;overflow-y:scroll;position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;-webkit-overflow-scrolling:touch;outline:0}.modal.fade .modal-dialog{-webkit-transform:translate(0, -25%);-ms-transform:translate(0, -25%);transform:translate(0, -25%);-webkit-transition:-webkit-transform 0.3s ease-out;-moz-transition:-moz-transform 0.3s ease-out;-o-transition:-o-transform 0.3s ease-out;transition:transform 0.3s ease-out}.modal.in .modal-dialog{-webkit-transform:translate(0, 0);-ms-transform:translate(0, 0);transform:translate(0, 0)}.modal-dialog{position:relative;width:auto;margin:10px}.modal-content{position:relative;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 3px 9px rgba(0,0,0,0.5);box-shadow:0 3px 9px rgba(0,0,0,0.5);background-clip:padding-box;outline:none}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0;filter:alpha(opacity=0)}.modal-backdrop.in{opacity:0.5;filter:alpha(opacity=50)}.modal-header{padding:15px;border-bottom:1px solid #e5e5e5;min-height:16.42857px}.modal-header .close{margin-top:-2px}.modal-title{margin:0;line-height:1.42857}.modal-body{position:relative;padding:20px}.modal-footer{margin-top:15px;padding:19px 20px 20px;text-align:right;border-top:1px solid #e5e5e5}.modal-footer:before,.modal-footer:after{content:" ";display:table}.modal-footer:after{clear:both}.modal-footer .btn+.btn,.modal-footer a.o_chelp+.btn,.modal-footer .btn+a.o_chelp,.modal-footer a.o_chelp+a.o_chelp{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn,.modal-footer .btn-group a.o_chelp+.btn,.modal-footer .btn-group .btn+a.o_chelp,.modal-footer .btn-group a.o_chelp+a.o_chelp{margin-left:-1px}.modal-footer .btn-block+.btn-block,.modal-footer .o_repo_details .o_start+.btn-block,.o_repo_details .modal-footer .o_start+.btn-block,.modal-footer .o_repo_details .o_book+.btn-block,.o_repo_details .modal-footer .o_book+.btn-block,.modal-footer .o_repo_details .btn-block+.o_start,.o_repo_details .modal-footer .btn-block+.o_start,.modal-footer .o_repo_details .o_start+.o_start,.o_repo_details .modal-footer .o_start+.o_start,.modal-footer .o_repo_details .o_book+.o_start,.o_repo_details .modal-footer .o_book+.o_start,.modal-footer .o_repo_details .btn-block+.o_book,.o_repo_details .modal-footer .btn-block+.o_book,.modal-footer .o_repo_details .o_start+.o_book,.o_repo_details .modal-footer .o_start+.o_book,.modal-footer .o_repo_details .o_book+.o_book,.o_repo_details .modal-footer .o_book+.o_book{margin-left:0}@media (min-width: 768px){.modal-dialog{width:600px;margin:30px auto}.modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,0.5);box-shadow:0 5px 15px rgba(0,0,0,0.5)}.modal-sm{width:300px}}@media (min-width: 992px){.modal-lg{width:900px}}.tooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:12px;line-height:1.4;opacity:0;filter:alpha(opacity=0)}.tooltip.in{opacity:0.9;filter:alpha(opacity=90)}.tooltip.top{margin-top:-3px;padding:5px 0}.tooltip.right{margin-left:3px;padding:0 5px}.tooltip.bottom{margin-top:3px;padding:5px 0}.tooltip.left{margin-left:-3px;padding:0 5px}.tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;text-decoration:none;background-color:#000;border-radius:4px}.tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}.tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-left .tooltip-arrow{bottom:0;left:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.top-right .tooltip-arrow{bottom:0;right:5px;border-width:5px 5px 0;border-top-color:#000}.tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}.tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}.tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-left .tooltip-arrow{top:0;left:5px;border-width:0 5px 5px;border-bottom-color:#000}.tooltip.bottom-right .tooltip-arrow{top:0;right:5px;border-width:0 5px 5px;border-bottom-color:#000}.popover{position:absolute;top:0;left:0;z-index:1010;display:none;max-width:276px;padding:1px;text-align:left;background-color:#fff;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2);white-space:normal}.popover.top{margin-top:-10px}.popover.right{margin-left:10px}.popover.bottom{margin-top:10px}.popover.left{margin-left:-10px}.popover-title{margin:0;padding:8px 14px;font-size:14px;font-weight:normal;line-height:18px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}.popover-content{padding:9px 14px}.popover>.arrow,.popover>.arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}.popover>.arrow{border-width:11px}.popover>.arrow:after{border-width:10px;content:""}.popover.top>.arrow{left:50%;margin-left:-11px;border-bottom-width:0;border-top-color:#999;border-top-color:fadein(rgba(0,0,0,0.2), 5%);bottom:-11px}.popover.top>.arrow:after{content:" ";bottom:1px;margin-left:-10px;border-bottom-width:0;border-top-color:#fff}.popover.right>.arrow{top:50%;left:-11px;margin-top:-11px;border-left-width:0;border-right-color:#999;border-right-color:fadein(rgba(0,0,0,0.2), 5%)}.popover.right>.arrow:after{content:" ";left:1px;bottom:-10px;border-left-width:0;border-right-color:#fff}.popover.bottom>.arrow{left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:fadein(rgba(0,0,0,0.2), 5%);top:-11px}.popover.bottom>.arrow:after{content:" ";top:1px;margin-left:-10px;border-top-width:0;border-bottom-color:#fff}.popover.left>.arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:fadein(rgba(0,0,0,0.2), 5%)}.popover.left>.arrow:after{content:" ";right:1px;border-right-width:0;border-left-color:#fff;bottom:-10px}.carousel{position:relative}.carousel-inner{position:relative;overflow:hidden;width:100%}.carousel-inner>.item{display:none;position:relative;-webkit-transition:0.6s ease-in-out left;transition:0.6s ease-in-out left}.carousel-inner>.item>img,.carousel-inner>.item>a>img{display:block;max-width:100%;height:auto;line-height:1}.carousel-inner>.active,.carousel-inner>.next,.carousel-inner>.prev{display:block}.carousel-inner>.active{left:0}.carousel-inner>.next,.carousel-inner>.prev{position:absolute;top:0;width:100%}.carousel-inner>.next{left:100%}.carousel-inner>.prev{left:-100%}.carousel-inner>.next.left,.carousel-inner>.prev.right{left:0}.carousel-inner>.active.left{left:-100%}.carousel-inner>.active.right{left:100%}.carousel-control{position:absolute;top:0;left:0;bottom:0;width:15%;opacity:0.5;filter:alpha(opacity=50);font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-control.left{background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.5) 0%), color-stop(rgba(0,0,0,0.0001) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.0001) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1)}.carousel-control.right{left:auto;right:0;background-image:-webkit-linear-gradient(left, color-stop(rgba(0,0,0,0.0001) 0%), color-stop(rgba(0,0,0,0.5) 100%));background-image:linear-gradient(to right, rgba(0,0,0,0.0001) 0%, rgba(0,0,0,0.5) 100%);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1)}.carousel-control:hover,.carousel-control:focus{outline:none;color:#fff;text-decoration:none;opacity:0.9;filter:alpha(opacity=90)}.carousel-control .icon-prev,.carousel-control .icon-next,.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right{position:absolute;top:50%;z-index:5;display:inline-block}.carousel-control .icon-prev,.carousel-control .glyphicon-chevron-left{left:50%}.carousel-control .icon-next,.carousel-control .glyphicon-chevron-right{right:50%}.carousel-control .icon-prev,.carousel-control .icon-next{width:20px;height:20px;margin-top:-10px;margin-left:-10px;font-family:serif}.carousel-control .icon-prev:before{content:'\2039'}.carousel-control .icon-next:before{content:'\203a'}.carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;margin-left:-30%;padding-left:0;list-style:none;text-align:center}.carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;border:1px solid #fff;border-radius:10px;cursor:pointer;background-color:#000 \9;background-color:transparent}.carousel-indicators .active{margin:0;width:12px;height:12px;background-color:#fff}.carousel-caption{position:absolute;left:15%;right:15%;bottom:20px;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,0.6)}.carousel-caption .btn,.carousel-caption a.o_chelp{text-shadow:none}@media screen and (min-width: 768px){.carousel-control .glyphicon-chevron-left,.carousel-control .glyphicon-chevron-right,.carousel-control .icon-prev,.carousel-control .icon-next{width:30px;height:30px;margin-top:-15px;margin-left:-15px;font-size:30px}.carousel-caption{left:20%;right:20%;padding-bottom:30px}.carousel-indicators{bottom:20px}}.clearfix:before,.o_catalog .o_sublevels:before,.o_repo_details .o_social:before,.clearfix:after,.o_catalog .o_sublevels:after,.o_repo_details .o_social:after{content:" ";display:table}.clearfix:after,.o_catalog .o_sublevels:after,.o_repo_details .o_social:after{clear:both}.center-block{display:block;margin-left:auto;margin-right:auto}.pull-right,div.o_chelp_wrapper,.o_withEllipsis .o_ellipsis_links,#o_main_wrapper #o_main_container #o_main_right,.o_comments .o_comment_wrapper .o_reply,.o_comments .o_comment_wrapper .o_delete,.o_noti,.o_repo_details .o_lead .o_media{float:right !important}.pull-left,#o_main_wrapper #o_main_container #o_main_left,#o_navbar_imclient #o_im_message,#o_navbar_imclient #o_im_status,#o_navbar_imclient #o_im_summary,.o_comments .o_comment_wrapper .o_avatar,.o_cal_toptoolbar .o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_cal_toptoolbar_help,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper,.o_catalog .o_sublevels .o_sublevel,.o_repo_details .o_social .o_rating_wrapper{float:left !important}.hide{display:none !important}.show{display:block !important}.invisible{visibility:hidden}.text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.hidden{display:none !important;visibility:hidden !important}.affix{position:fixed}@-ms-viewport{width:device-width}.visible-xs,.visible-sm,.visible-md,.visible-lg{display:none !important}@media (max-width: 767px){.visible-xs{display:block !important}table.visible-xs{display:table}tr.visible-xs{display:table-row !important}th.visible-xs,td.visible-xs{display:table-cell !important}}@media (min-width: 768px) and (max-width: 991px){.visible-sm{display:block !important}table.visible-sm{display:table}tr.visible-sm{display:table-row !important}th.visible-sm,td.visible-sm{display:table-cell !important}}@media (min-width: 992px) and (max-width: 1199px){.visible-md{display:block !important}table.visible-md{display:table}tr.visible-md{display:table-row !important}th.visible-md,td.visible-md{display:table-cell !important}}@media (min-width: 1200px){.visible-lg{display:block !important}table.visible-lg{display:table}tr.visible-lg{display:table-row !important}th.visible-lg,td.visible-lg{display:table-cell !important}}@media (max-width: 767px){.hidden-xs{display:none !important}}@media (min-width: 768px) and (max-width: 991px){.hidden-sm{display:none !important}}@media (min-width: 992px) and (max-width: 1199px){.hidden-md{display:none !important}}@media (min-width: 1200px){.hidden-lg{display:none !important}}.visible-print{display:none !important}@media print{.visible-print{display:block !important}table.visible-print{display:table}tr.visible-print{display:table-row !important}th.visible-print,td.visible-print{display:table-cell !important}}@media print{.hidden-print{display:none !important}}body .modal{position:absolute;overflow:visible}body div.tooltip-inner{max-width:400px}body div.popover{max-width:450px}body .modal-body.alert{border-radius:0}body .progress{margin-bottom:0}/*!
  *  Font Awesome 4.1.0 by @davegandy - http://fontawesome.io - @fontawesome
  *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
- */@font-face{font-family:'FontAwesome';src:url("../../../font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0");src:url("../../../font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../../../font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../../../font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../../../font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.o_icon{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.o_icon-lg,.o_icon_help{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.o_icon-2x{font-size:2em}.o_icon-3x{font-size:3em}.o_icon-4x{font-size:4em}.o_icon-5x{font-size:5em}.o_icon-fw{width:1.28571em;text-align:center}.o_icon-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.o_icon-ul>li{position:relative}.o_icon-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.o_icon-li.o_icon-lg,.o_icon-li.o_icon_help{left:-1.85714em}.o_icon-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right,div.o_chelp_wrapper,.o_withEllipsis .o_ellipsis_links,#o_main_wrapper #o_main_container #o_main_right,.o_comments .o_comment_wrapper .o_reply,.o_comments .o_comment_wrapper .o_delete,.o_noti,.o_repo_details .o_lead .o_media{float:right}.pull-left,#o_main_wrapper #o_main_container #o_main_left,#o_navbar_imclient #o_im_message,#o_navbar_imclient #o_im_status,#o_navbar_imclient #o_im_summary,.o_comments .o_comment_wrapper .o_avatar,.o_cal_toptoolbar .o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_cal_toptoolbar_help,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper,.o_catalog .o_sublevels .o_sublevel,.o_repo_details .o_social .o_rating_wrapper{float:left}.o_icon.pull-left,#o_main_wrapper #o_main_container .o_icon#o_main_left,#o_navbar_imclient .o_icon#o_im_message,#o_navbar_imclient .o_icon#o_im_status,#o_navbar_imclient .o_icon#o_im_summary,.o_comments .o_comment_wrapper .o_icon.o_avatar,.o_cal_toptoolbar .o_icon.o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_icon.o_cal_toptoolbar_help,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_icon.o_rating_wrapper,.o_catalog .o_sublevels .o_icon.o_sublevel,.o_repo_details .o_social .o_icon.o_rating_wrapper{margin-right:.3em}.o_icon.pull-right,div.o_icon.o_chelp_wrapper,.o_withEllipsis .o_icon.o_ellipsis_links,#o_main_wrapper #o_main_container .o_icon#o_main_right,.o_comments .o_comment_wrapper .o_icon.o_reply,.o_comments .o_comment_wrapper .o_icon.o_delete,.o_icon.o_noti,.o_repo_details .o_lead .o_icon.o_media{margin-left:.3em}.o_icon-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.o_icon-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.o_icon-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.o_icon-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.o_icon-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.o_icon-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.o_icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.o_icon-stack-1x,.o_icon-stack-2x{position:absolute;left:0;width:100%;text-align:center}.o_icon-stack-1x{line-height:inherit}.o_icon-stack-2x{font-size:2em}.o_icon-inverse{color:#fff}.o_icon-glass:before{content:"\f000"}.o_icon-music:before{content:"\f001"}.o_icon-search:before,.o_icon_search:before{content:"\f002"}.o_icon-envelope-o:before,.o_icon_mail:before,.o_co_icon:before{content:"\f003"}.o_icon-heart:before{content:"\f004"}.o_icon-star:before,.o_icon_rating_on:before,.o_rating .o_rating_items.o_enabled .o_icon:hover:before{content:"\f005"}.o_icon-star-o:before,.o_icon_rating_off:before{content:"\f006"}.o_icon-user:before,.o_icon_user:before{content:"\f007"}.o_icon-film:before{content:"\f008"}.o_icon-th-large:before{content:"\f009"}.o_icon-th:before{content:"\f00a"}.o_icon-th-list:before{content:"\f00b"}.o_icon-check:before,.o_icon_check:before{content:"\f00c"}.o_icon-times:before,.o_icon_close:before,.o_icon_close_tab:before,.o_icon_close_tool:before{content:"\f00d"}.o_icon-search-plus:before{content:"\f00e"}.o_icon-search-minus:before{content:"\f010"}.o_icon-power-off:before{content:"\f011"}.o_icon-signal:before{content:"\f012"}.o_icon-gear:before,.o_icon_customize:before,.o_icon_edit_metadata:before,.o_icon_tool:before,.o_icon-cog:before{content:"\f013"}.o_icon-trash-o:before,.o_icon_delete_item:before{content:"\f014"}.o_icon-home:before{content:"\f015"}.o_icon-file-o:before,.o_filetype_file:before,.o_filetype_ico:before{content:"\f016"}.o_icon-clock-o:before,.o_icon_expenditure:before{content:"\f017"}.o_icon-road:before{content:"\f018"}.o_icon-download:before,.o_icon_archive_tool:before,.o_icon_download:before{content:"\f019"}.o_icon-arrow-circle-o-down:before{content:"\f01a"}.o_icon-arrow-circle-o-up:before{content:"\f01b"}.o_icon-inbox:before{content:"\f01c"}.o_icon-play-circle-o:before{content:"\f01d"}.o_icon-rotate-right:before,.o_icon-repeat:before{content:"\f01e"}.o_icon-refresh:before,.o_icon_attempt_limit:before,.o_icon_refresh:before{content:"\f021"}.o_icon-list-alt:before{content:"\f022"}.o_icon-lock:before,.o_icon_locked:before,.o_ac_membersonly_icon:before,.o_midlock:before{content:"\f023"}.o_icon-flag:before{content:"\f024"}.o_icon-headphones:before{content:"\f025"}.o_icon-volume-off:before{content:"\f026"}.o_icon-volume-down:before{content:"\f027"}.o_icon-volume-up:before{content:"\f028"}.o_icon-qrcode:before{content:"\f029"}.o_icon-barcode:before{content:"\f02a"}.o_icon-tag:before{content:"\f02b"}.o_icon-tags:before{content:"\f02c"}.o_icon-book:before{content:"\f02d"}.o_icon-bookmark:before,.o_icon_bookmark:before{content:"\f02e"}.o_icon-print:before,.o_icon_print:before{content:"\f02f"}.o_icon-camera:before{content:"\f030"}.o_icon-font:before{content:"\f031"}.o_icon-bold:before{content:"\f032"}.o_icon-italic:before{content:"\f033"}.o_icon-text-height:before{content:"\f034"}.o_icon-text-width:before{content:"\f035"}.o_icon-align-left:before,.o_mi_qtiessay:before{content:"\f036"}.o_icon-align-center:before{content:"\f037"}.o_icon-align-right:before{content:"\f038"}.o_icon-align-justify:before{content:"\f039"}.o_icon-list:before,.o_icon_list:before{content:"\f03a"}.o_icon-dedent:before,.o_icon-outdent:before{content:"\f03b"}.o_icon-indent:before{content:"\f03c"}.o_icon-video-camera:before,.o_FileResource-PODCAST_icon:before,.o_podcast_icon:before{content:"\f03d"}.o_icon-photo:before,.o_icon-image:before,.o_icon-picture-o:before{content:"\f03e"}.o_icon-pencil:before,.o_icon_notes:before{content:"\f040"}.o_icon-map-marker:before{content:"\f041"}.o_icon-adjust:before{content:"\f042"}.o_icon-tint:before{content:"\f043"}.o_icon-edit:before,.o_icon_edit:before,.o_icon_edit_file:before,.o_icon_readonly:before,.o_icon_readwrite:before,.o_icon-pencil-square-o:before,.o_FileResource-TEST_icon:before,.o_iqtest_icon:before,.o_iqself_icon:before{content:"\f044"}.o_icon-share-square-o:before{content:"\f045"}.o_icon-check-square-o:before,.o_mi_qtimc:before,.o_cl_icon:before{content:"\f046"}.o_icon-arrows:before,.o_icon_move:before{content:"\f047"}.o_icon-step-backward:before{content:"\f048"}.o_icon-fast-backward:before{content:"\f049"}.o_icon-backward:before{content:"\f04a"}.o_icon-play:before{content:"\f04b"}.o_icon-pause:before{content:"\f04c"}.o_icon-stop:before{content:"\f04d"}.o_icon-forward:before{content:"\f04e"}.o_icon-fast-forward:before{content:"\f050"}.o_icon-step-forward:before{content:"\f051"}.o_icon-eject:before{content:"\f052"}.o_icon-chevron-left:before{content:"\f053"}.o_icon-chevron-right:before,.o_icon_start:before{content:"\f054"}.o_icon-plus-circle:before{content:"\f055"}.o_icon-minus-circle:before,.o_icon_delete:before{content:"\f056"}.o_icon-times-circle:before,.o_icon_failed:before{content:"\f057"}.o_icon-check-circle:before,.o_icon_passed:before,.o_midpub:before{content:"\f058"}.o_icon-question-circle:before,.o_icon_help:before{content:"\f059"}.o_icon-info-circle:before,.o_icon_impress:before,.o_icon_info:before,.o_infomsg_icon:before{content:"\f05a"}.o_icon-crosshairs:before{content:"\f05b"}.o_icon-times-circle-o:before,.o_icon_status_unavailable:before{content:"\f05c"}.o_icon-check-circle-o:before{content:"\f05d"}.o_icon-ban:before{content:"\f05e"}.o_icon-arrow-left:before{content:"\f060"}.o_icon-arrow-right:before{content:"\f061"}.o_icon-arrow-up:before{content:"\f062"}.o_icon-arrow-down:before{content:"\f063"}.o_icon-mail-forward:before,.o_icon-share:before,.o_icon_publish:before{content:"\f064"}.o_icon-expand:before{content:"\f065"}.o_icon-compress:before{content:"\f066"}.o_icon-plus:before{content:"\f067"}.o_icon-minus:before{content:"\f068"}.o_icon-asterisk:before,.o_icon_new:before,.o_icon_mandatory:before{content:"\f069"}.o_icon-exclamation-circle:before,.o_icon_error:before{content:"\f06a"}.o_icon-gift:before,.o_ac_free_icon:before{content:"\f06b"}.o_icon-leaf:before{content:"\f06c"}.o_icon-fire:before{content:"\f06d"}.o_icon-eye:before,.o_icon_details:before,.o_icon_preview:before{content:"\f06e"}.o_icon-eye-slash:before{content:"\f070"}.o_icon-warning:before,.o_midwarn:before,.o_miderr:before,.o_icon-exclamation-triangle:before,.o_icon_warn:before{content:"\f071"}.o_icon-plane:before{content:"\f072"}.o_icon-calendar:before,.o_icon_calendar:before,.o_icon_lifecycle:before,.o_calendar_icon:before,.o_cal_icon:before{content:"\f073"}.o_icon-random:before{content:"\f074"}.o_icon-comment:before,.o_icon_status_chat:before{content:"\f075"}.o_icon-magnet:before{content:"\f076"}.o_icon-chevron-up:before,.o_icon_top:before{content:"\f077"}.o_icon-chevron-down:before{content:"\f078"}.o_icon-retweet:before,.o_icon_managed:before{content:"\f079"}.o_icon-shopping-cart:before{content:"\f07a"}.o_icon-folder:before,.o_icon_new_folder:before{content:"\f07b"}.o_icon-folder-open:before{content:"\f07c"}.o_icon-arrows-v:before{content:"\f07d"}.o_icon-arrows-h:before{content:"\f07e"}.o_icon-bar-chart-o:before{content:"\f080"}.o_icon-twitter-square:before,.o_icon_twitter:before{content:"\f081"}.o_icon-facebook-square:before,.o_icon_facebook:before{content:"\f082"}.o_icon-camera-retro:before{content:"\f083"}.o_icon-key:before,.o_icon_password:before,.o_ac_token_icon:before{content:"\f084"}.o_icon-gears:before,.o_icon_actions:before,.o_icon_settings:before,.o_icon-cogs:before{content:"\f085"}.o_icon-comments:before,.o_icon_comments:before{content:"\f086"}.o_icon-thumbs-o-up:before,.o_ms_icon:before{content:"\f087"}.o_icon-thumbs-o-down:before{content:"\f088"}.o_icon-star-half:before{content:"\f089"}.o_icon-heart-o:before{content:"\f08a"}.o_icon-sign-out:before,.o_icon_logout:before{content:"\f08b"}.o_icon-linkedin-square:before{content:"\f08c"}.o_icon-thumb-tack:before{content:"\f08d"}.o_icon-external-link:before,.o_icon_content_popup:before,.o_FileResource-SHAREDFOLDER:before,.o_tu_icon:before,.o_lti_icon:before{content:"\f08e"}.o_icon-sign-in:before,.o_icon_login:before,.o_en_icon:before{content:"\f090"}.o_icon-trophy:before,.o_icon_assessment_tool:before{content:"\f091"}.o_icon-github-square:before{content:"\f092"}.o_icon-upload:before,.o_icon_upload:before{content:"\f093"}.o_icon-lemon-o:before{content:"\f094"}.o_icon-phone:before{content:"\f095"}.o_icon-square-o:before{content:"\f096"}.o_icon-bookmark-o:before,.o_icon_bookmark_add:before{content:"\f097"}.o_icon-phone-square:before{content:"\f098"}.o_icon-twitter:before{content:"\f099"}.o_icon-facebook:before{content:"\f09a"}.o_icon-github:before{content:"\f09b"}.o_icon-unlock:before{content:"\f09c"}.o_icon-credit-card:before,.o_ac_paypal_icon:before{content:"\f09d"}.o_icon-rss:before,.o_icon_notification:before,.o_icon_rss:before{content:"\f09e"}.o_icon-hdd-o:before{content:"\f0a0"}.o_icon-bullhorn:before,.o_FileResource-BLOG_icon:before,.o_blog_icon:before{content:"\f0a1"}.o_icon-bell:before{content:"\f0f3"}.o_icon-certificate:before,.o_icon_certificate:before{content:"\f0a3"}.o_icon-hand-o-right:before{content:"\f0a4"}.o_icon-hand-o-left:before{content:"\f0a5"}.o_icon-hand-o-up:before{content:"\f0a6"}.o_icon-hand-o-down:before{content:"\f0a7"}.o_icon-arrow-circle-left:before,.o_icon_previous:before{content:"\f0a8"}.o_icon-arrow-circle-right:before,.o_icon_next:before{content:"\f0a9"}.o_icon-arrow-circle-up:before{content:"\f0aa"}.o_icon-arrow-circle-down:before{content:"\f0ab"}.o_icon-globe:before,.o_icon_language:before,.o_FileResource-WIKI_icon:before,.o_wiki_icon:before{content:"\f0ac"}.o_icon-wrench:before{content:"\f0ad"}.o_icon-tasks:before,.o_ta_icon:before{content:"\f0ae"}.o_icon-filter:before,.o_icon_filter:before{content:"\f0b0"}.o_icon-briefcase:before{content:"\f0b1"}.o_icon-arrows-alt:before{content:"\f0b2"}.o_icon-group:before,.o_ac_group_icon:before,.o_icon-users:before,.o_icon_group:before,.o_icon_membersmanagement:before,.o_cmembers_icon:before{content:"\f0c0"}.o_icon-chain:before,.o_icon-link:before,.o_icon_link:before,.o_ll_icon:before{content:"\f0c1"}.o_icon-cloud:before{content:"\f0c2"}.o_icon-flask:before{content:"\f0c3"}.o_icon-cut:before,.o_icon-scissors:before{content:"\f0c4"}.o_icon-copy:before,.o_icon_copy:before,.o_icon-files-o:before,.o_dialog_icon:before{content:"\f0c5"}.o_icon-paperclip:before{content:"\f0c6"}.o_icon-save:before,.o_icon-floppy-o:before{content:"\f0c7"}.o_icon-square:before{content:"\f0c8"}.o_icon-navicon:before,.o_icon-reorder:before,.o_icon-bars:before{content:"\f0c9"}.o_icon-list-ul:before{content:"\f0ca"}.o_icon-list-ol:before{content:"\f0cb"}.o_icon-strikethrough:before{content:"\f0cc"}.o_icon-underline:before{content:"\f0cd"}.o_icon-table:before,.o_icon_table:before{content:"\f0ce"}.o_icon-magic:before,.o_icon_wizard:before{content:"\f0d0"}.o_icon-truck:before{content:"\f0d1"}.o_icon-pinterest:before{content:"\f0d2"}.o_icon-pinterest-square:before{content:"\f0d3"}.o_icon-google-plus-square:before,.o_icon_google:before{content:"\f0d4"}.o_icon-google-plus:before{content:"\f0d5"}.o_icon-money:before{content:"\f0d6"}.o_icon-caret-down:before,.o_icon_close_tree:before,.o_icon_close_togglebox:before,.o_togglebox_wrapper .o_opener.o_in i:before{content:"\f0d7"}.o_icon-caret-up:before{content:"\f0d8"}.o_icon-caret-left:before{content:"\f0d9"}.o_icon-caret-right:before,.o_icon_open_tree:before,.o_icon_open_togglebox:before,.o_togglebox_wrapper .o_opener i:before{content:"\f0da"}.o_icon-columns:before{content:"\f0db"}.o_icon-unsorted:before,.o_icon-sort:before,.o_icon_sort:before{content:"\f0dc"}.o_icon-sort-down:before,.o_icon-sort-desc:before,.o_icon_sort_desc:before{content:"\f0dd"}.o_icon-sort-up:before,.o_icon-sort-asc:before,.o_icon_sort_asc:before{content:"\f0de"}.o_icon-envelope:before,.o_icon_message:before{content:"\f0e0"}.o_icon-linkedin:before{content:"\f0e1"}.o_icon-rotate-left:before,.o_icon-undo:before{content:"\f0e2"}.o_icon-legal:before,.o_icon-gavel:before{content:"\f0e3"}.o_icon-dashboard:before,.o_icon-tachometer:before,.o_icon_statistics_tool:before{content:"\f0e4"}.o_icon-comment-o:before,.o_icon_chat:before,.o_icon_comments_none:before,.o_icon_post:before,.o_forum_message_icon:before{content:"\f0e5"}.o_icon-comments-o:before,.o_fo_icon:before{content:"\f0e6"}.o_icon-flash:before,.o_icon-bolt:before{content:"\f0e7"}.o_icon-sitemap:before{content:"\f0e8"}.o_icon-umbrella:before{content:"\f0e9"}.o_icon-paste:before,.o_icon-clipboard:before{content:"\f0ea"}.o_icon-lightbulb-o:before{content:"\f0eb"}.o_icon-exchange:before{content:"\f0ec"}.o_icon-cloud-download:before{content:"\f0ed"}.o_icon-cloud-upload:before{content:"\f0ee"}.o_icon-user-md:before{content:"\f0f0"}.o_icon-stethoscope:before{content:"\f0f1"}.o_icon-suitcase:before{content:"\f0f2"}.o_icon-bell-o:before{content:"\f0a2"}.o_icon-coffee:before{content:"\f0f4"}.o_icon-cutlery:before{content:"\f0f5"}.o_icon-file-text-o:before,.o_filetype_odf:before,.o_filetype_rtf:before,.o_filetype_readme:before,.o_filetype_README:before,.o_filetype_log:before,.o_filetype_txt:before,.o_filetype_htm:before,.o_filetype_html:before,.o_sp_icon:before,.o_cp_item:before{content:"\f0f6"}.o_icon-building-o:before{content:"\f0f7"}.o_icon-hospital-o:before{content:"\f0f8"}.o_icon-ambulance:before{content:"\f0f9"}.o_icon-medkit:before{content:"\f0fa"}.o_icon-fighter-jet:before,.o_icon_read:before,.o_icon_to_read:before{content:"\f0fb"}.o_icon-beer:before{content:"\f0fc"}.o_icon-h-square:before{content:"\f0fd"}.o_icon-plus-square:before{content:"\f0fe"}.o_icon-angle-double-left:before,.o_icon_move_left:before{content:"\f100"}.o_icon-angle-double-right:before,.o_icon_move_right:before{content:"\f101"}.o_icon-angle-double-up:before,.o_icon_move_up:before{content:"\f102"}.o_icon-angle-double-down:before,.o_icon_move_down:before{content:"\f103"}.o_icon-angle-left:before{content:"\f104"}.o_icon-angle-right:before{content:"\f105"}.o_icon-angle-up:before{content:"\f106"}.o_icon-angle-down:before{content:"\f107"}.o_icon-desktop:before,.o_vc_icon:before,.o_vitero_icon:before,.o_openmeetings_icon:before{content:"\f108"}.o_icon-laptop:before{content:"\f109"}.o_icon-tablet:before{content:"\f10a"}.o_icon-mobile-phone:before,.o_icon-mobile:before{content:"\f10b"}.o_icon-circle-o:before,.o_projectbroker_icon:before{content:"\f10c"}.o_icon-quote-left:before{content:"\f10d"}.o_icon-quote-right:before{content:"\f10e"}.o_icon-spinner:before{content:"\f110"}.o_icon-circle:before,.o_icon_status_available:before,.o_icon_toggle:before{content:"\f111"}.o_icon-mail-reply:before,.o_icon-reply:before{content:"\f112"}.o_icon-github-alt:before{content:"\f113"}.o_icon-folder-o:before,.o_icon_coursefolder:before,.o_filetype_folder:before{content:"\f114"}.o_icon-folder-open-o:before,.o_filetype_folder_open:before,.o_bc_icon:before{content:"\f115"}.o_icon-smile-o:before{content:"\f118"}.o_icon-frown-o:before{content:"\f119"}.o_icon-meh-o:before,.o_FileResource-SURVEY_icon:before,.o_iqsurv_icon:before{content:"\f11a"}.o_icon-gamepad:before{content:"\f11b"}.o_icon-keyboard-o:before{content:"\f11c"}.o_icon-flag-o:before{content:"\f11d"}.o_icon-flag-checkered:before{content:"\f11e"}.o_icon-terminal:before{content:"\f120"}.o_icon-code:before{content:"\f121"}.o_icon-mail-reply-all:before,.o_icon-reply-all:before{content:"\f122"}.o_icon-star-half-empty:before,.o_icon-star-half-full:before,.o_icon-star-half-o:before{content:"\f123"}.o_icon-location-arrow:before{content:"\f124"}.o_icon-crop:before{content:"\f125"}.o_icon-code-fork:before{content:"\f126"}.o_icon-unlink:before,.o_icon-chain-broken:before{content:"\f127"}.o_icon-question:before{content:"\f128"}.o_icon-info:before{content:"\f129"}.o_icon-exclamation:before{content:"\f12a"}.o_icon-superscript:before{content:"\f12b"}.o_icon-subscript:before{content:"\f12c"}.o_icon-eraser:before,.o_middel:before{content:"\f12d"}.o_icon-puzzle-piece:before,.o_icon_eportfolio_add:before,.o_EPStructuredMapTemplate_icon:before,.o_ep_icon:before{content:"\f12e"}.o_icon-microphone:before{content:"\f130"}.o_icon-microphone-slash:before{content:"\f131"}.o_icon-shield:before{content:"\f132"}.o_icon-calendar-o:before{content:"\f133"}.o_icon-fire-extinguisher:before{content:"\f134"}.o_icon-rocket:before{content:"\f135"}.o_icon-maxcdn:before{content:"\f136"}.o_icon-chevron-circle-left:before{content:"\f137"}.o_icon-chevron-circle-right:before{content:"\f138"}.o_icon-chevron-circle-up:before{content:"\f139"}.o_icon-chevron-circle-down:before{content:"\f13a"}.o_icon-html5:before{content:"\f13b"}.o_icon-css3:before{content:"\f13c"}.o_icon-anchor:before{content:"\f13d"}.o_icon-unlock-alt:before{content:"\f13e"}.o_icon-bullseye:before{content:"\f140"}.o_icon-ellipsis-h:before,.o_mi_qtifib:before{content:"\f141"}.o_icon-ellipsis-v:before{content:"\f142"}.o_icon-rss-square:before{content:"\f143"}.o_icon-play-circle:before{content:"\f144"}.o_icon-ticket:before{content:"\f145"}.o_icon-minus-square:before{content:"\f146"}.o_icon-minus-square-o:before{content:"\f147"}.o_icon-level-up:before{content:"\f148"}.o_icon-level-down:before{content:"\f149"}.o_icon-check-square:before,.o_mi_qtikprim:before{content:"\f14a"}.o_icon-pencil-square:before{content:"\f14b"}.o_icon-external-link-square:before{content:"\f14c"}.o_icon-share-square:before{content:"\f14d"}.o_icon-compass:before{content:"\f14e"}.o_icon-toggle-down:before,.o_icon_show_more:before,.o_icon-caret-square-o-down:before{content:"\f150"}.o_icon-toggle-up:before,.o_icon_show_less:before,.o_icon-caret-square-o-up:before{content:"\f151"}.o_icon-toggle-right:before,.o_icon-caret-square-o-right:before{content:"\f152"}.o_icon-euro:before,.o_icon-eur:before{content:"\f153"}.o_icon-gbp:before{content:"\f154"}.o_icon-dollar:before,.o_icon_booking:before,.o_icon-usd:before{content:"\f155"}.o_icon-rupee:before,.o_icon-inr:before{content:"\f156"}.o_icon-cny:before,.o_icon-rmb:before,.o_icon-yen:before,.o_icon-jpy:before{content:"\f157"}.o_icon-ruble:before,.o_icon-rouble:before,.o_icon-rub:before{content:"\f158"}.o_icon-won:before,.o_icon-krw:before{content:"\f159"}.o_icon-bitcoin:before,.o_icon-btc:before{content:"\f15a"}.o_icon-file:before{content:"\f15b"}.o_icon-file-text:before,.o_icon_new_document:before{content:"\f15c"}.o_icon-sort-alpha-asc:before{content:"\f15d"}.o_icon-sort-alpha-desc:before{content:"\f15e"}.o_icon-sort-amount-asc:before,.o_icon_sort_menu:before{content:"\f160"}.o_icon-sort-amount-desc:before{content:"\f161"}.o_icon-sort-numeric-asc:before{content:"\f162"}.o_icon-sort-numeric-desc:before{content:"\f163"}.o_icon-thumbs-up:before{content:"\f164"}.o_icon-thumbs-down:before{content:"\f165"}.o_icon-youtube-square:before{content:"\f166"}.o_icon-youtube:before{content:"\f167"}.o_icon-xing:before{content:"\f168"}.o_icon-xing-square:before{content:"\f169"}.o_icon-youtube-play:before{content:"\f16a"}.o_icon-dropbox:before{content:"\f16b"}.o_icon-stack-overflow:before{content:"\f16c"}.o_icon-instagram:before{content:"\f16d"}.o_icon-flickr:before{content:"\f16e"}.o_icon-adn:before{content:"\f170"}.o_icon-bitbucket:before{content:"\f171"}.o_icon-bitbucket-square:before{content:"\f172"}.o_icon-tumblr:before{content:"\f173"}.o_icon-tumblr-square:before{content:"\f174"}.o_icon-long-arrow-down:before{content:"\f175"}.o_icon-long-arrow-up:before{content:"\f176"}.o_icon-long-arrow-left:before{content:"\f177"}.o_icon-long-arrow-right:before{content:"\f178"}.o_icon-apple:before{content:"\f179"}.o_icon-windows:before{content:"\f17a"}.o_icon-android:before{content:"\f17b"}.o_icon-linux:before{content:"\f17c"}.o_icon-dribbble:before{content:"\f17d"}.o_icon-skype:before{content:"\f17e"}.o_icon-foursquare:before{content:"\f180"}.o_icon-trello:before{content:"\f181"}.o_icon-female:before{content:"\f182"}.o_icon-male:before{content:"\f183"}.o_icon-gittip:before{content:"\f184"}.o_icon-sun-o:before{content:"\f185"}.o_icon-moon-o:before{content:"\f186"}.o_icon-archive:before,.o_FileResource-IMSCP_icon:before,.o_FileResource-SCORMCP_icon:before,.o_cp_icon:before,.o_scorm_icon:before{content:"\f187"}.o_icon-bug:before,.o_icon_dev:before{content:"\f188"}.o_icon-vk:before{content:"\f189"}.o_icon-weibo:before{content:"\f18a"}.o_icon-renren:before{content:"\f18b"}.o_icon-pagelines:before{content:"\f18c"}.o_icon-stack-exchange:before{content:"\f18d"}.o_icon-arrow-circle-o-right:before{content:"\f18e"}.o_icon-arrow-circle-o-left:before{content:"\f190"}.o_icon-toggle-left:before,.o_icon-caret-square-o-left:before{content:"\f191"}.o_icon-dot-circle-o:before,.o_icon_status_dnd:before,.o_mi_qtisc:before{content:"\f192"}.o_icon-wheelchair:before{content:"\f193"}.o_icon-vimeo-square:before{content:"\f194"}.o_icon-turkish-lira:before,.o_icon-try:before{content:"\f195"}.o_icon-plus-square-o:before{content:"\f196"}.o_icon-space-shuttle:before{content:"\f197"}.o_icon-slack:before{content:"\f198"}.o_icon-envelope-square:before,.o_icon_mail:before{content:"\f199"}.o_icon-wordpress:before{content:"\f19a"}.o_icon-openid:before{content:"\f19b"}.o_icon-institution:before,.o_icon-bank:before,.o_icon-university:before{content:"\f19c"}.o_icon-mortar-board:before,.o_icon-graduation-cap:before{content:"\f19d"}.o_icon-yahoo:before{content:"\f19e"}.o_icon-google:before{content:"\f1a0"}.o_icon-reddit:before{content:"\f1a1"}.o_icon-reddit-square:before{content:"\f1a2"}.o_icon-stumbleupon-circle:before{content:"\f1a3"}.o_icon-stumbleupon:before{content:"\f1a4"}.o_icon-delicious:before,.o_icon_delicious:before{content:"\f1a5"}.o_icon-digg:before,.o_icon_digg:before{content:"\f1a6"}.o_icon-pied-piper-square:before,.o_icon-pied-piper:before{content:"\f1a7"}.o_icon-pied-piper-alt:before{content:"\f1a8"}.o_icon-drupal:before{content:"\f1a9"}.o_icon-joomla:before{content:"\f1aa"}.o_icon-language:before{content:"\f1ab"}.o_icon-fax:before{content:"\f1ac"}.o_icon-building:before{content:"\f1ad"}.o_icon-child:before{content:"\f1ae"}.o_icon-paw:before{content:"\f1b0"}.o_icon-spoon:before{content:"\f1b1"}.o_icon-cube:before,.o_icon_courseeditor:before,.o_CourseModule_icon:before{content:"\f1b2"}.o_icon-cubes:before,.o_st_icon:before{content:"\f1b3"}.o_icon-behance:before{content:"\f1b4"}.o_icon-behance-square:before{content:"\f1b5"}.o_icon-steam:before{content:"\f1b6"}.o_icon-steam-square:before{content:"\f1b7"}.o_icon-recycle:before,.o_icon_recycle:before{content:"\f1b8"}.o_icon-automobile:before,.o_icon-car:before{content:"\f1b9"}.o_icon-cab:before,.o_icon-taxi:before{content:"\f1ba"}.o_icon-tree:before{content:"\f1bb"}.o_icon-spotify:before{content:"\f1bc"}.o_icon-deviantart:before{content:"\f1bd"}.o_icon-soundcloud:before{content:"\f1be"}.o_icon-database:before,.o_icon_coursedb:before{content:"\f1c0"}.o_icon-file-pdf-o:before,.o_filetype_ps:before,.o_filetype_pdf:before{content:"\f1c1"}.o_icon-file-word-o:before,.o_filetype_pages:before,.o_filetype_doc:before,.o_filetype_docx:before{content:"\f1c2"}.o_icon-file-excel-o:before,.o_filetype_xls:before,.o_filetype_xlsx:before{content:"\f1c3"}.o_icon-file-powerpoint-o:before,.o_filetype_key:before,.o_filetype_odp:before,.o_filetype_ppt:before,.o_filetype_pptx:before{content:"\f1c4"}.o_icon-file-photo-o:before,.o_icon-file-picture-o:before,.o_icon-file-image-o:before,.o_filetype_png:before,.o_filetype_tiff:before,.o_filetype_webp:before,.o_filetype_gif:before,.o_filetype_ico:before,.o_filetype_jpeg:before,.o_filetype_bmp:before,.o_filetype_odg:before,.o_filetype_eps:before,.o_filetype_jpg:before{content:"\f1c5"}.o_icon-file-zip-o:before,.o_icon-file-archive-o:before,.o_filetype_zip:before,.o_filetype_gz:before,.o_filetype_tar:before,.o_filetype_tgz:before{content:"\f1c6"}.o_icon-file-sound-o:before,.o_icon-file-audio-o:before,.o_filetype_midi:before,.o_filetype_audio:before,.o_filetype_mp3:before,.o_filetype_m3u:before,.o_filetype_wav:before{content:"\f1c7"}.o_icon-file-movie-o:before,.o_icon-file-video-o:before,.o_filetype_psd:before,.o_filetype_avi:before,.o_filetype_dvi:before,.o_filetype_mp4:before,.o_filetype_m4v:before,.o_filetype_webm:before,.o_filetype_ogg:before,.o_filetype_video:before,.o_filetype_mov:before,.o_filetype_mpeg:before,.o_filetype_mpg:before,.o_filetype_qt:before,.o_filetype_ra:before,.o_filetype_ram:before,.o_filetype_swf:before,.o_filetype_flv:before{content:"\f1c8"}.o_icon-file-code-o:before,.o_filetype_css:before,.o_filetype_js:before,.o_filetype_java:before,.o_filetype_numbers:before,.o_filetype_ods:before,.o_filetype_xml:before,.o_filetype_xsl:before,.o_filetype_bat_icon:before,.o_filetype_bat:before,.o_filetype_exe:before,.o_filetype_app:before,.o_filetype_sh:before{content:"\f1c9"}.o_icon-vine:before{content:"\f1ca"}.o_icon-codepen:before{content:"\f1cb"}.o_icon-jsfiddle:before{content:"\f1cc"}.o_icon-life-bouy:before,.o_icon-life-saver:before,.o_icon-support:before,.o_icon-life-ring:before{content:"\f1cd"}.o_icon-circle-o-notch:before{content:"\f1ce"}.o_icon-ra:before,.o_icon-rebel:before{content:"\f1d0"}.o_icon-ge:before,.o_icon-empire:before{content:"\f1d1"}.o_icon-git-square:before{content:"\f1d2"}.o_icon-git:before{content:"\f1d3"}.o_icon-hacker-news:before{content:"\f1d4"}.o_icon-tencent-weibo:before{content:"\f1d5"}.o_icon-qq:before{content:"\f1d6"}.o_icon-wechat:before,.o_icon-weixin:before{content:"\f1d7"}.o_icon-send:before,.o_icon-paper-plane:before{content:"\f1d8"}.o_icon-send-o:before,.o_icon-paper-plane-o:before{content:"\f1d9"}.o_icon-history:before,.o_icon_version:before{content:"\f1da"}.o_icon-circle-thin:before,.o_icon_courseareas:before{content:"\f1db"}.o_icon-header:before{content:"\f1dc"}.o_icon-paragraph:before{content:"\f1dd"}.o_icon-sliders:before{content:"\f1de"}.o_icon-share-alt:before{content:"\f1e0"}.o_icon-share-alt-square:before{content:"\f1e1"}.o_icon-bomb:before,.o_icon_timelimit:before{content:"\f1e2"}.o_icon_bookmark{color:#996633}.o_icon_bookmark_add{color:#999999}.o_icon_delete{color:#A87E7E}.o_icon_error{color:#d9534f}.o_icon_help{cursor:help}.o_icon_info{color:#5bc0de}.o_icon_new{color:#5cb85c}.o_icon_mandatory{color:#f0ad4e}.o_icon_managed{color:#999}.o_icon_read{color:green}.o_icon_readonly{color:red}.o_icon_status_available{color:#006633}.o_icon_status_dnd{color:#CCCC33}.o_icon_status_unavailable{color:#996633}.o_icon_to_read{color:blue}.o_icon_warn{color:#f0ad4e}.o_portrait_dummy,.o_portrait_dummy_female_big,.o_portrait_dummy_male_big,.o_portrait_anonymous{width:100px;height:100px}.o_portrait_dummy{background-image:url("../light/images/portrait/dummy.png")}.o_portrait_dummy_female_big{background-image:url("../light/images/portrait/dummy_female_big.png")}.o_portrait_dummy_male_big{background-image:url("../light/images/portrait/dummy_male_big.png")}.o_portrait_anonymous{background-image:url("../light/images/portrait/dummy.png")}.o_portrait_dummy_small,.o_portrait_dummy_female_small,.o_portrait_dummy_male_small,.o_portrait_anonymous_small{width:30px;height:30px}.o_portrait_dummy_small{background-image:url("../light/images/portrait/dummy_small.png")}.o_portrait_dummy_female_small{background-image:url("../light/images/portrait/dummy_female_small.png")}.o_portrait_dummy_male_small{background-image:url("../light/images/portrait/dummy_male_small.png")}.o_portrait_anonymous_small{background-image:url("../light/images/portrait/dummy_small.png")}a.o_chelp{padding:1px 3px;font-size:10px;line-height:1.5;border-radius:2px}div.o_chelp_wrapper{position:relative}.o_undecorated:hover,a.o_icon:hover,.o_withEllipsis .o_morelink:hover,.o_withEllipsis .o_lesslink:hover,#o_main_wrapper #o_toplink:hover,.o_button_toggle:hover,.o_noti .o_label:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_comments:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title a:hover,.o_catalog .o_level .o_meta .o_title a:hover,.o_catalog .o_sublevels .o_sublevel .o_meta .o_title a:hover,.o_repo_details .o_social .o_comments:hover,.o_undecorated:focus,a.o_icon:focus,.o_withEllipsis .o_morelink:focus,.o_withEllipsis .o_lesslink:focus,#o_main_wrapper #o_toplink:focus,.o_button_toggle:focus,.o_noti .o_label:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_comments:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title a:focus,.o_catalog .o_level .o_meta .o_title a:focus,.o_catalog .o_sublevels .o_sublevel .o_meta .o_title a:focus,.o_repo_details .o_social .o_comments:focus{text-decoration:none}.o_block,.o_course_run .o_toc .o_entry{margin:1em 0}.o_block_large,.o_button_group{margin:2em 0}.o_scrollblock{overflow-x:auto;overflow-y:hidden}.o_button_group{text-align:center}.o_button_group a,.o_button_group input,.o_button_group button{margin-right:1em}.o_button_group a:last-child,.o_button_group input:last-child,.o_button_group button:last-child{margin-right:0}.o_nowrap{white-space:nowrap}.o_titled_wrapper{margin-top:20px}.o_titled_wrapper .o_content{margin-top:20px}.o_video{display:inline-block}.o_image{display:inline-block;max-width:100%}.o_rotate_90,#o_main_wrapper #o_main_container #o_main_center #o_offcanvas_toggle{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.o_segments_content{margin-top:20px}.o_withEllipsis .o_morelink,.o_withEllipsis .o_lesslink{display:none}.o_withEllipsis.o_hasOverflow .o_morelink{display:block}.o_withEllipsis.o_hasOverflow .o_lesslink{display:none}.o_withEllipsis.o_hasOverflow.o_showOverflow{height:auto !important}.o_withEllipsis.o_hasOverflow.o_showOverflow .o_morelink{display:none}.o_withEllipsis.o_hasOverflow.o_showOverflow .o_lesslink{display:block}.o_info,.o_note,.o_form .o_desc,.o_course_run .o_statusinfo,.o_course_stats .o_desc,.o_important,.o_bc_empty,.o_course_run .o_no_scoreinfo,.o_warning,.o_form .o_warning,.o_error,.o_form .o_info,.o_togglebox_wrapper div.o_togglebox_content,div.o_qti_item_itemfeedback{margin:20px 0;padding:20px;background-color:#eee;border-left:3px solid #d4d4d4}.o_info h2,.o_note h2,.o_form .o_desc h2,.o_course_run .o_statusinfo h2,.o_course_stats .o_desc h2,.o_important h2,.o_bc_empty h2,.o_course_run .o_no_scoreinfo h2,.o_warning h2,.o_form .o_warning h2,.o_error h2,.o_form .o_info h2,.o_togglebox_wrapper div.o_togglebox_content h2,div.o_qti_item_itemfeedback h2,.o_info h3,.o_note h3,.o_form .o_desc h3,.o_course_run .o_statusinfo h3,.o_course_stats .o_desc h3,.o_important h3,.o_bc_empty h3,.o_course_run .o_no_scoreinfo h3,.o_warning h3,.o_form .o_warning h3,.o_error h3,.o_form .o_info h3,.o_togglebox_wrapper div.o_togglebox_content h3,div.o_qti_item_itemfeedback h3,.o_info h4,.o_note h4,.o_form .o_desc h4,.o_course_run .o_statusinfo h4,.o_course_stats .o_desc h4,.o_important h4,.o_bc_empty h4,.o_course_run .o_no_scoreinfo h4,.o_warning h4,.o_form .o_warning h4,.o_error h4,.o_form .o_info h4,.o_togglebox_wrapper div.o_togglebox_content h4,div.o_qti_item_itemfeedback h4,.o_info .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_info h2,.o_note .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_note h2,.o_form .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_form .o_desc h2,.o_course_run .o_statusinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_statusinfo h2,.o_course_stats .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_stats .o_desc h2,.o_important .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_important h2,.o_bc_empty .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_bc_empty h2,.o_course_run .o_no_scoreinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_no_scoreinfo h2,.o_warning .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_warning h2,.o_error .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_error h2,.o_togglebox_wrapper div.o_togglebox_content .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_togglebox_wrapper div.o_togglebox_content h2,div.o_qti_item_itemfeedback .o_cal .fc-header-title h2,.o_cal .fc-header-title div.o_qti_item_itemfeedback h2,.o_info h5,.o_note h5,.o_form .o_desc h5,.o_course_run .o_statusinfo h5,.o_course_stats .o_desc h5,.o_important h5,.o_bc_empty h5,.o_course_run .o_no_scoreinfo h5,.o_warning h5,.o_form .o_warning h5,.o_error h5,.o_form .o_info h5,.o_togglebox_wrapper div.o_togglebox_content h5,div.o_qti_item_itemfeedback h5{color:#bbbbbb}p.o_info,p.o_note,.o_form p.o_desc,.o_course_run p.o_statusinfo,.o_course_stats p.o_desc,p.o_important,p.o_bc_empty,.o_course_run p.o_no_scoreinfo,p.o_warning,.o_form p.o_warning,p.o_error,.o_form p.o_info,div.o_info,div.o_note,.o_form div.o_desc,.o_course_run div.o_statusinfo,.o_course_stats div.o_desc,div.o_important,div.o_bc_empty,.o_course_run div.o_no_scoreinfo,div.o_warning,.o_form div.o_warning,div.o_error,.o_form div.o_info,.o_togglebox_wrapper div.o_togglebox_content,div.o_qti_item_itemfeedback{margin:20px 0}.o_note,.o_form .o_desc,.o_course_run .o_statusinfo,.o_course_stats .o_desc{background-color:#f4f8fa;border-color:#5bc0de}.o_note h2,.o_form .o_desc h2,.o_course_run .o_statusinfo h2,.o_course_stats .o_desc h2,.o_note h3,.o_form .o_desc h3,.o_course_run .o_statusinfo h3,.o_course_stats .o_desc h3,.o_note h4,.o_form .o_desc h4,.o_course_run .o_statusinfo h4,.o_course_stats .o_desc h4,.o_note .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_note h2,.o_form .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_form .o_desc h2,.o_course_run .o_statusinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_statusinfo h2,.o_course_stats .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_stats .o_desc h2,.o_note h5,.o_form .o_desc h5,.o_course_run .o_statusinfo h5,.o_course_stats .o_desc h5{color:#5bc0de}p.o_note,.o_form p.o_desc,.o_course_run p.o_statusinfo,.o_course_stats p.o_desc,div.o_note,.o_form div.o_desc,.o_course_run div.o_statusinfo,.o_course_stats div.o_desc{margin:20px 0}.o_important,.o_bc_empty,.o_course_run .o_no_scoreinfo{background-color:#FFF1A4;border-color:#F4D000}.o_important h2,.o_bc_empty h2,.o_course_run .o_no_scoreinfo h2,.o_important h3,.o_bc_empty h3,.o_course_run .o_no_scoreinfo h3,.o_important h4,.o_bc_empty h4,.o_course_run .o_no_scoreinfo h4,.o_important .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_important h2,.o_bc_empty .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_bc_empty h2,.o_course_run .o_no_scoreinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_no_scoreinfo h2,.o_important h5,.o_bc_empty h5,.o_course_run .o_no_scoreinfo h5{color:#F4D000}p.o_important,p.o_bc_empty,.o_course_run p.o_no_scoreinfo,div.o_important,div.o_bc_empty,.o_course_run div.o_no_scoreinfo{margin:20px 0}.o_warning,.o_form .o_warning{background-color:#FFD5AA;border-color:#FF9E3E}.o_warning h2,.o_form .o_warning h2,.o_warning h3,.o_form .o_warning h3,.o_warning h4,.o_form .o_warning h4,.o_warning .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_warning h2,.o_warning h5,.o_form .o_warning h5{color:#FF9E3E}o.o_warning,.o_form o.o_warning,div.o_warning,.o_form div.o_warning{margin:20px 0}.o_error{background-color:#fdf7f7;border-color:#d9534f}.o_error h2,.o_error h3,.o_error h4,.o_error .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_error h2,.o_error h5{color:#d9534f}o.o_error,div.o_error{margin:20px 0}.o_border_box{border:1px solid #999;padding:1em;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px}p.o_border_box,div.o_border_box{margin:1em 0}table.b_grid{background:transparent;border-collapse:separate}table.b_grid td,table.b_grid th{padding:2px 5px;border:1px solid #888}table.b_grid thead th{background:#ccc}table.b_grid tbody th{background:#eee}table.b_border{background:transparent;border-collapse:collapse}table.b_border td,table.b_border th{padding:2px 5px;border:1px solid #888}table.b_full{width:99.5%}table td{vertical-align:top}table.b_middle{background:transparent}table.b_middle td{vertical-align:middle}.b_selected,p.b_selected,div.b_selected{font-weight:bold}.b_dimmed,p.b_dimmed,div.b_dimmed{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=40);-moz-opacity:0.4;-khtml-opacity:0.4;opacity:0.4}.b_disabled,p.b_disabled,div.b_disabled{color:#999}.b_deleted,p.b_deleted,div.b_deleted{text-decoration:line-through}.b_xsmall,sup,sub,p.b_xsmall,div.b_xsmall{font-size:80%}.b_small,small,p.b_small,div.b_small{font-size:90%}.b_large,p.b_large,div.b_large{font-size:110%}.b_xlarge,big,p.b_xlarge,div.b_xlarge{font-size:120%}.b_align_normal{text-align:left}.b_align_center{text-align:center}.b_align_inverse{text-align:right}.o_ochre{color:#c8a959}.o_blue{color:#12223F}a.b_link_extern{background:transparent url("../../openolat/images/external_link_trimmed.png") no-repeat right top;padding-right:13px}a.b_link_mailto{background:transparent url("../../openolat/images/mail_small.png") no-repeat left center;padding-left:18px}a.b_link_forward{background:transparent url("../../openolat/images/arrow_right.png") no-repeat right center;padding-right:18px}img.b_float_left{float:left;margin:0 2em 2em 0}img.b_float_right{float:right;margin:0 0 2em 2em}img.b_centered{display:block;margin:0 auto 2em auto}img.o_emoticons_angel{background:url(../light/images/emoticons/smiley-angel.png);width:16px;height:16px}img.o_emoticons_angry{background:url(../light/images/emoticons/smiley-mad.png);width:16px;height:16px}img.o_emoticons_blushing{background:url(../light/images/emoticons/smiley-red.png);width:16px;height:16px}img.o_emoticons_confused{background:url(../light/images/emoticons/smiley-confuse.png);width:16px;height:16px}img.o_emoticons_cool{background:url(../light/images/emoticons/smiley-cool.png);width:16px;height:16px}img.o_emoticons_cry{background:url(../light/images/emoticons/smiley-cry.png);width:16px;height:16px}img.o_emoticons_devil{background:url(../light/images/emoticons/smiley-evil.png);width:16px;height:16px}img.o_emoticons_grin{background:url(../light/images/emoticons/smiley-grin.png);width:16px;height:16px}img.o_emoticons_kiss{background:url(../light/images/emoticons/smiley-kiss.png);width:16px;height:16px}img.o_emoticons_ohoh{background:url(../light/images/emoticons/smiley-eek.png);width:16px;height:16px}img.o_emoticons_sad{background:url(../light/images/emoticons/smiley-sad.png);width:16px;height:16px}img.o_emoticons_sick{background:url(../light/images/emoticons/smiley-sad-blue.png);width:16px;height:16px}img.o_emoticons_smile{background:url(../light/images/emoticons/smiley.png);width:16px;height:16px}img.o_emoticons_tongue{background:url(../light/images/emoticons/smiley-razz.png);width:16px;height:16px}img.o_emoticons_ugly{background:url(../light/images/emoticons/smiley-money.png);width:16px;height:16px}img.o_emoticons_weird{background:url(../light/images/emoticons/smiley-nerd.png);width:16px;height:16px}img.o_emoticons_wink{background:url(../light/images/emoticons/smiley-wink.png);width:16px;height:16px}img.o_emoticons_worried{background:url(../light/images/emoticons/smiley-roll-blue.png);width:16px;height:16px}img.o_emoticons_up{background:url(../light/images/emoticons/thumb-up.png);width:16px;height:16px}img.o_emoticons_down{background:url(../light/images/emoticons/thumb.png);width:16px;height:16px}html{position:relative;min-height:100%}body{min-height:100%;margin-bottom:60px}#o_navbar_wrapper{z-index:4}#o_navbar_wrapper #o_navbar_container{position:relative}#o_navbar_wrapper #o_navbar_container a.o_navbar-brand{font-size:40px;vertical-align:top;font-weight:bold;color:#31729B}#o_navbar_wrapper #o_navbar_container a.o_navbar-brand:after{content:"\221E"}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs li a{padding-right:30px}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs .o_navbar_tab_close{position:absolute;top:15px;right:0.5em;padding:0;width:1em;height:1em}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs .o_navbar_tab_close i:before{color:#A87E7E}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs .o_navbar_tab_close:hover i:before{color:#CC0000}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_langchooser{color:#777;padding:15px}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_langchooser form span+div{display:inline}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_help a i{margin-right:0.4em}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_my_menu .dropdown-toggle{padding-left:45px}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_my_menu img{position:absolute;left:7px;top:10px;height:30px;width:30px}.o_navbar{position:relative;min-height:50px;margin-bottom:0;border:1px solid transparent}.o_navbar:before,.o_navbar:after{content:" ";display:table}.o_navbar:after{clear:both}.o_navbar-collapse{max-height:100%;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.o_navbar-collapse:before,.o_navbar-collapse:after{content:" ";display:table}.o_navbar-collapse:after{clear:both}.o_navbar-collapse.o_collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.o_navbar-offcanvas .o_navbar-collapse{width:auto;border-top:0;box-shadow:none;margin-top:10px;margin-right:-15px;margin-left:-15px}.o_navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.o_navbar-brand:hover,.o_navbar-brand:focus{text-decoration:none}.o_navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.o_navbar-toggle:focus{outline:none}.o_navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.o_navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.o_navbar-nav{margin:7.5px -15px}.o_navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}.o_collapse .o_navbar-nav{float:left;margin:0}.o_collapse .o_navbar-nav>li{float:left}.o_collapse .o_navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.o_collapse .o_navbar-nav.o_navbar-right:last-child{margin-right:-15px}.o_collapse.o_navbar-collapse .o_navbar-left{float:left !important}.o_collapse.o_navbar-collapse .o_navbar-right{float:right !important}.o_navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (max-width: 767px){.o_navbar-form .form-group{margin-bottom:5px}}
+ */@font-face{font-family:'FontAwesome';src:url("../../../font-awesome/fonts/fontawesome-webfont.eot?v=4.1.0");src:url("../../../font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.1.0") format("embedded-opentype"),url("../../../font-awesome/fonts/fontawesome-webfont.woff?v=4.1.0") format("woff"),url("../../../font-awesome/fonts/fontawesome-webfont.ttf?v=4.1.0") format("truetype"),url("../../../font-awesome/fonts/fontawesome-webfont.svg?v=4.1.0#fontawesomeregular") format("svg");font-weight:normal;font-style:normal}.o_icon{display:inline-block;font-family:FontAwesome;font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.o_icon-lg,.o_icon_help{font-size:1.33333em;line-height:0.75em;vertical-align:-15%}.o_icon-2x{font-size:2em}.o_icon-3x{font-size:3em}.o_icon-4x{font-size:4em}.o_icon-5x{font-size:5em}.o_icon-fw{width:1.28571em;text-align:center}.o_icon-ul{padding-left:0;margin-left:2.14286em;list-style-type:none}.o_icon-ul>li{position:relative}.o_icon-li{position:absolute;left:-2.14286em;width:2.14286em;top:0.14286em;text-align:center}.o_icon-li.o_icon-lg,.o_icon-li.o_icon_help{left:-1.85714em}.o_icon-border{padding:.2em .25em .15em;border:solid 0.08em #eee;border-radius:.1em}.pull-right,div.o_chelp_wrapper,.o_withEllipsis .o_ellipsis_links,#o_main_wrapper #o_main_container #o_main_right,.o_comments .o_comment_wrapper .o_reply,.o_comments .o_comment_wrapper .o_delete,.o_noti,.o_repo_details .o_lead .o_media{float:right}.pull-left,#o_main_wrapper #o_main_container #o_main_left,#o_navbar_imclient #o_im_message,#o_navbar_imclient #o_im_status,#o_navbar_imclient #o_im_summary,.o_comments .o_comment_wrapper .o_avatar,.o_cal_toptoolbar .o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_cal_toptoolbar_help,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper,.o_catalog .o_sublevels .o_sublevel,.o_repo_details .o_social .o_rating_wrapper{float:left}.o_icon.pull-left,#o_main_wrapper #o_main_container .o_icon#o_main_left,#o_navbar_imclient .o_icon#o_im_message,#o_navbar_imclient .o_icon#o_im_status,#o_navbar_imclient .o_icon#o_im_summary,.o_comments .o_comment_wrapper .o_icon.o_avatar,.o_cal_toptoolbar .o_icon.o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_icon.o_cal_toptoolbar_help,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_icon.o_rating_wrapper,.o_catalog .o_sublevels .o_icon.o_sublevel,.o_repo_details .o_social .o_icon.o_rating_wrapper{margin-right:.3em}.o_icon.pull-right,div.o_icon.o_chelp_wrapper,.o_withEllipsis .o_icon.o_ellipsis_links,#o_main_wrapper #o_main_container .o_icon#o_main_right,.o_comments .o_comment_wrapper .o_icon.o_reply,.o_comments .o_comment_wrapper .o_icon.o_delete,.o_icon.o_noti,.o_repo_details .o_lead .o_icon.o_media{margin-left:.3em}.o_icon-spin{-webkit-animation:spin 2s infinite linear;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@keyframes spin{0%{-webkit-transform:rotate(0deg);transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg);transform:rotate(359deg)}}.o_icon-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-moz-transform:rotate(90deg);-ms-transform:rotate(90deg);-o-transform:rotate(90deg);transform:rotate(90deg)}.o_icon-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-moz-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}.o_icon-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-moz-transform:rotate(270deg);-ms-transform:rotate(270deg);-o-transform:rotate(270deg);transform:rotate(270deg)}.o_icon-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-moz-transform:scale(-1, 1);-ms-transform:scale(-1, 1);-o-transform:scale(-1, 1);transform:scale(-1, 1)}.o_icon-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-moz-transform:scale(1, -1);-ms-transform:scale(1, -1);-o-transform:scale(1, -1);transform:scale(1, -1)}.o_icon-stack{position:relative;display:inline-block;width:2em;height:2em;line-height:2em;vertical-align:middle}.o_icon-stack-1x,.o_icon-stack-2x{position:absolute;left:0;width:100%;text-align:center}.o_icon-stack-1x{line-height:inherit}.o_icon-stack-2x{font-size:2em}.o_icon-inverse{color:#fff}.o_icon-glass:before{content:"\f000"}.o_icon-music:before{content:"\f001"}.o_icon-search:before,.o_icon_search:before{content:"\f002"}.o_icon-envelope-o:before,.o_icon_mail:before,.o_co_icon:before{content:"\f003"}.o_icon-heart:before{content:"\f004"}.o_icon-star:before,.o_icon_rating_on:before,.o_rating .o_rating_items.o_enabled .o_icon:hover:before{content:"\f005"}.o_icon-star-o:before,.o_icon_rating_off:before{content:"\f006"}.o_icon-user:before,.o_icon_user:before{content:"\f007"}.o_icon-film:before{content:"\f008"}.o_icon-th-large:before{content:"\f009"}.o_icon-th:before{content:"\f00a"}.o_icon-th-list:before{content:"\f00b"}.o_icon-check:before,.o_icon_check:before{content:"\f00c"}.o_icon-times:before,.o_icon_close:before,.o_icon_close_tab:before,.o_icon_close_tool:before{content:"\f00d"}.o_icon-search-plus:before{content:"\f00e"}.o_icon-search-minus:before{content:"\f010"}.o_icon-power-off:before{content:"\f011"}.o_icon-signal:before{content:"\f012"}.o_icon-gear:before,.o_icon_customize:before,.o_icon_edit_metadata:before,.o_icon_tool:before,.o_icon-cog:before{content:"\f013"}.o_icon-trash-o:before,.o_icon_delete_item:before{content:"\f014"}.o_icon-home:before{content:"\f015"}.o_icon-file-o:before,.o_filetype_file:before,.o_filetype_ico:before{content:"\f016"}.o_icon-clock-o:before,.o_icon_expenditure:before{content:"\f017"}.o_icon-road:before{content:"\f018"}.o_icon-download:before,.o_icon_archive_tool:before,.o_icon_download:before{content:"\f019"}.o_icon-arrow-circle-o-down:before{content:"\f01a"}.o_icon-arrow-circle-o-up:before{content:"\f01b"}.o_icon-inbox:before{content:"\f01c"}.o_icon-play-circle-o:before{content:"\f01d"}.o_icon-rotate-right:before,.o_icon-repeat:before{content:"\f01e"}.o_icon-refresh:before,.o_icon_attempt_limit:before,.o_icon_refresh:before{content:"\f021"}.o_icon-list-alt:before{content:"\f022"}.o_icon-lock:before,.o_icon_locked:before,.o_ac_membersonly_icon:before,.o_midlock:before{content:"\f023"}.o_icon-flag:before{content:"\f024"}.o_icon-headphones:before{content:"\f025"}.o_icon-volume-off:before{content:"\f026"}.o_icon-volume-down:before{content:"\f027"}.o_icon-volume-up:before{content:"\f028"}.o_icon-qrcode:before{content:"\f029"}.o_icon-barcode:before{content:"\f02a"}.o_icon-tag:before{content:"\f02b"}.o_icon-tags:before{content:"\f02c"}.o_icon-book:before{content:"\f02d"}.o_icon-bookmark:before,.o_icon_bookmark:before{content:"\f02e"}.o_icon-print:before,.o_icon_print:before{content:"\f02f"}.o_icon-camera:before{content:"\f030"}.o_icon-font:before{content:"\f031"}.o_icon-bold:before{content:"\f032"}.o_icon-italic:before{content:"\f033"}.o_icon-text-height:before{content:"\f034"}.o_icon-text-width:before{content:"\f035"}.o_icon-align-left:before,.o_mi_qtiessay:before{content:"\f036"}.o_icon-align-center:before{content:"\f037"}.o_icon-align-right:before{content:"\f038"}.o_icon-align-justify:before{content:"\f039"}.o_icon-list:before,.o_icon_list:before{content:"\f03a"}.o_icon-dedent:before,.o_icon-outdent:before{content:"\f03b"}.o_icon-indent:before{content:"\f03c"}.o_icon-video-camera:before,.o_FileResource-PODCAST_icon:before,.o_podcast_icon:before{content:"\f03d"}.o_icon-photo:before,.o_icon-image:before,.o_icon-picture-o:before{content:"\f03e"}.o_icon-pencil:before,.o_icon_notes:before{content:"\f040"}.o_icon-map-marker:before{content:"\f041"}.o_icon-adjust:before{content:"\f042"}.o_icon-tint:before{content:"\f043"}.o_icon-edit:before,.o_icon_edit:before,.o_icon_edit_file:before,.o_icon_readonly:before,.o_icon_readwrite:before,.o_icon-pencil-square-o:before,.o_FileResource-TEST_icon:before,.o_iqtest_icon:before,.o_iqself_icon:before{content:"\f044"}.o_icon-share-square-o:before{content:"\f045"}.o_icon-check-square-o:before,.o_mi_qtimc:before,.o_cl_icon:before{content:"\f046"}.o_icon-arrows:before,.o_icon_move:before{content:"\f047"}.o_icon-step-backward:before{content:"\f048"}.o_icon-fast-backward:before{content:"\f049"}.o_icon-backward:before{content:"\f04a"}.o_icon-play:before{content:"\f04b"}.o_icon-pause:before{content:"\f04c"}.o_icon-stop:before{content:"\f04d"}.o_icon-forward:before{content:"\f04e"}.o_icon-fast-forward:before{content:"\f050"}.o_icon-step-forward:before{content:"\f051"}.o_icon-eject:before{content:"\f052"}.o_icon-chevron-left:before{content:"\f053"}.o_icon-chevron-right:before,.o_icon_start:before{content:"\f054"}.o_icon-plus-circle:before{content:"\f055"}.o_icon-minus-circle:before,.o_icon_delete:before{content:"\f056"}.o_icon-times-circle:before,.o_icon_failed:before{content:"\f057"}.o_icon-check-circle:before,.o_icon_passed:before,.o_midpub:before{content:"\f058"}.o_icon-question-circle:before,.o_icon_help:before{content:"\f059"}.o_icon-info-circle:before,.o_icon_impress:before,.o_icon_info:before,.o_infomsg_icon:before{content:"\f05a"}.o_icon-crosshairs:before{content:"\f05b"}.o_icon-times-circle-o:before,.o_icon_status_unavailable:before{content:"\f05c"}.o_icon-check-circle-o:before{content:"\f05d"}.o_icon-ban:before{content:"\f05e"}.o_icon-arrow-left:before{content:"\f060"}.o_icon-arrow-right:before{content:"\f061"}.o_icon-arrow-up:before{content:"\f062"}.o_icon-arrow-down:before{content:"\f063"}.o_icon-mail-forward:before,.o_icon-share:before,.o_icon_publish:before{content:"\f064"}.o_icon-expand:before{content:"\f065"}.o_icon-compress:before{content:"\f066"}.o_icon-plus:before{content:"\f067"}.o_icon-minus:before{content:"\f068"}.o_icon-asterisk:before,.o_icon_new:before,.o_icon_mandatory:before{content:"\f069"}.o_icon-exclamation-circle:before,.o_icon_error:before{content:"\f06a"}.o_icon-gift:before,.o_ac_free_icon:before{content:"\f06b"}.o_icon-leaf:before{content:"\f06c"}.o_icon-fire:before{content:"\f06d"}.o_icon-eye:before,.o_icon_details:before,.o_icon_preview:before{content:"\f06e"}.o_icon-eye-slash:before{content:"\f070"}.o_icon-warning:before,.o_midwarn:before,.o_miderr:before,.o_icon-exclamation-triangle:before,.o_icon_warn:before{content:"\f071"}.o_icon-plane:before{content:"\f072"}.o_icon-calendar:before,.o_icon_calendar:before,.o_icon_lifecycle:before,.o_calendar_icon:before,.o_cal_icon:before{content:"\f073"}.o_icon-random:before{content:"\f074"}.o_icon-comment:before,.o_icon_status_chat:before{content:"\f075"}.o_icon-magnet:before{content:"\f076"}.o_icon-chevron-up:before,.o_icon_top:before{content:"\f077"}.o_icon-chevron-down:before{content:"\f078"}.o_icon-retweet:before,.o_icon_managed:before{content:"\f079"}.o_icon-shopping-cart:before{content:"\f07a"}.o_icon-folder:before,.o_icon_new_folder:before{content:"\f07b"}.o_icon-folder-open:before{content:"\f07c"}.o_icon-arrows-v:before{content:"\f07d"}.o_icon-arrows-h:before{content:"\f07e"}.o_icon-bar-chart-o:before{content:"\f080"}.o_icon-twitter-square:before,.o_icon_twitter:before{content:"\f081"}.o_icon-facebook-square:before,.o_icon_facebook:before{content:"\f082"}.o_icon-camera-retro:before{content:"\f083"}.o_icon-key:before,.o_icon_password:before,.o_ac_token_icon:before{content:"\f084"}.o_icon-gears:before,.o_icon_actions:before,.o_icon_settings:before,.o_icon-cogs:before{content:"\f085"}.o_icon-comments:before,.o_icon_comments:before{content:"\f086"}.o_icon-thumbs-o-up:before,.o_ms_icon:before{content:"\f087"}.o_icon-thumbs-o-down:before{content:"\f088"}.o_icon-star-half:before{content:"\f089"}.o_icon-heart-o:before{content:"\f08a"}.o_icon-sign-out:before,.o_icon_logout:before{content:"\f08b"}.o_icon-linkedin-square:before{content:"\f08c"}.o_icon-thumb-tack:before{content:"\f08d"}.o_icon-external-link:before,.o_icon_content_popup:before,.o_FileResource-SHAREDFOLDER:before,.o_tu_icon:before,.o_lti_icon:before{content:"\f08e"}.o_icon-sign-in:before,.o_icon_login:before,.o_en_icon:before{content:"\f090"}.o_icon-trophy:before,.o_icon_assessment_tool:before{content:"\f091"}.o_icon-github-square:before{content:"\f092"}.o_icon-upload:before,.o_icon_upload:before{content:"\f093"}.o_icon-lemon-o:before{content:"\f094"}.o_icon-phone:before{content:"\f095"}.o_icon-square-o:before{content:"\f096"}.o_icon-bookmark-o:before,.o_icon_bookmark_add:before{content:"\f097"}.o_icon-phone-square:before{content:"\f098"}.o_icon-twitter:before{content:"\f099"}.o_icon-facebook:before{content:"\f09a"}.o_icon-github:before{content:"\f09b"}.o_icon-unlock:before{content:"\f09c"}.o_icon-credit-card:before,.o_ac_paypal_icon:before{content:"\f09d"}.o_icon-rss:before,.o_icon_notification:before,.o_icon_rss:before{content:"\f09e"}.o_icon-hdd-o:before{content:"\f0a0"}.o_icon-bullhorn:before,.o_FileResource-BLOG_icon:before,.o_blog_icon:before{content:"\f0a1"}.o_icon-bell:before{content:"\f0f3"}.o_icon-certificate:before,.o_icon_certificate:before{content:"\f0a3"}.o_icon-hand-o-right:before{content:"\f0a4"}.o_icon-hand-o-left:before{content:"\f0a5"}.o_icon-hand-o-up:before{content:"\f0a6"}.o_icon-hand-o-down:before{content:"\f0a7"}.o_icon-arrow-circle-left:before,.o_icon_previous:before{content:"\f0a8"}.o_icon-arrow-circle-right:before,.o_icon_next:before{content:"\f0a9"}.o_icon-arrow-circle-up:before{content:"\f0aa"}.o_icon-arrow-circle-down:before{content:"\f0ab"}.o_icon-globe:before,.o_icon_language:before,.o_FileResource-WIKI_icon:before,.o_wiki_icon:before{content:"\f0ac"}.o_icon-wrench:before{content:"\f0ad"}.o_icon-tasks:before,.o_ta_icon:before{content:"\f0ae"}.o_icon-filter:before,.o_icon_filter:before{content:"\f0b0"}.o_icon-briefcase:before{content:"\f0b1"}.o_icon-arrows-alt:before{content:"\f0b2"}.o_icon-group:before,.o_ac_group_icon:before,.o_icon-users:before,.o_icon_group:before,.o_icon_membersmanagement:before,.o_cmembers_icon:before{content:"\f0c0"}.o_icon-chain:before,.o_icon-link:before,.o_icon_link:before,.o_ll_icon:before{content:"\f0c1"}.o_icon-cloud:before{content:"\f0c2"}.o_icon-flask:before{content:"\f0c3"}.o_icon-cut:before,.o_icon-scissors:before{content:"\f0c4"}.o_icon-copy:before,.o_icon_copy:before,.o_icon-files-o:before,.o_dialog_icon:before{content:"\f0c5"}.o_icon-paperclip:before{content:"\f0c6"}.o_icon-save:before,.o_icon-floppy-o:before{content:"\f0c7"}.o_icon-square:before{content:"\f0c8"}.o_icon-navicon:before,.o_icon-reorder:before,.o_icon-bars:before{content:"\f0c9"}.o_icon-list-ul:before{content:"\f0ca"}.o_icon-list-ol:before{content:"\f0cb"}.o_icon-strikethrough:before{content:"\f0cc"}.o_icon-underline:before{content:"\f0cd"}.o_icon-table:before,.o_icon_table:before{content:"\f0ce"}.o_icon-magic:before,.o_icon_wizard:before{content:"\f0d0"}.o_icon-truck:before{content:"\f0d1"}.o_icon-pinterest:before{content:"\f0d2"}.o_icon-pinterest-square:before{content:"\f0d3"}.o_icon-google-plus-square:before,.o_icon_google:before{content:"\f0d4"}.o_icon-google-plus:before{content:"\f0d5"}.o_icon-money:before{content:"\f0d6"}.o_icon-caret-down:before,.o_icon_close_tree:before,.o_icon_close_togglebox:before,.o_togglebox_wrapper .o_opener.o_in i:before{content:"\f0d7"}.o_icon-caret-up:before{content:"\f0d8"}.o_icon-caret-left:before{content:"\f0d9"}.o_icon-caret-right:before,.o_icon_open_tree:before,.o_icon_open_togglebox:before,.o_togglebox_wrapper .o_opener i:before{content:"\f0da"}.o_icon-columns:before{content:"\f0db"}.o_icon-unsorted:before,.o_icon-sort:before,.o_icon_sort:before{content:"\f0dc"}.o_icon-sort-down:before,.o_icon-sort-desc:before,.o_icon_sort_desc:before{content:"\f0dd"}.o_icon-sort-up:before,.o_icon-sort-asc:before,.o_icon_sort_asc:before{content:"\f0de"}.o_icon-envelope:before,.o_icon_message:before{content:"\f0e0"}.o_icon-linkedin:before{content:"\f0e1"}.o_icon-rotate-left:before,.o_icon-undo:before{content:"\f0e2"}.o_icon-legal:before,.o_icon-gavel:before{content:"\f0e3"}.o_icon-dashboard:before,.o_icon-tachometer:before,.o_icon_statistics_tool:before{content:"\f0e4"}.o_icon-comment-o:before,.o_icon_chat:before,.o_icon_comments_none:before,.o_icon_post:before,.o_forum_message_icon:before{content:"\f0e5"}.o_icon-comments-o:before,.o_fo_icon:before{content:"\f0e6"}.o_icon-flash:before,.o_icon-bolt:before{content:"\f0e7"}.o_icon-sitemap:before{content:"\f0e8"}.o_icon-umbrella:before{content:"\f0e9"}.o_icon-paste:before,.o_icon-clipboard:before{content:"\f0ea"}.o_icon-lightbulb-o:before{content:"\f0eb"}.o_icon-exchange:before{content:"\f0ec"}.o_icon-cloud-download:before{content:"\f0ed"}.o_icon-cloud-upload:before{content:"\f0ee"}.o_icon-user-md:before{content:"\f0f0"}.o_icon-stethoscope:before{content:"\f0f1"}.o_icon-suitcase:before{content:"\f0f2"}.o_icon-bell-o:before{content:"\f0a2"}.o_icon-coffee:before{content:"\f0f4"}.o_icon-cutlery:before{content:"\f0f5"}.o_icon-file-text-o:before,.o_filetype_odf:before,.o_filetype_rtf:before,.o_filetype_readme:before,.o_filetype_README:before,.o_filetype_log:before,.o_filetype_txt:before,.o_filetype_htm:before,.o_filetype_html:before,.o_sp_icon:before,.o_cp_item:before{content:"\f0f6"}.o_icon-building-o:before{content:"\f0f7"}.o_icon-hospital-o:before{content:"\f0f8"}.o_icon-ambulance:before{content:"\f0f9"}.o_icon-medkit:before{content:"\f0fa"}.o_icon-fighter-jet:before,.o_icon_read:before,.o_icon_to_read:before{content:"\f0fb"}.o_icon-beer:before{content:"\f0fc"}.o_icon-h-square:before{content:"\f0fd"}.o_icon-plus-square:before{content:"\f0fe"}.o_icon-angle-double-left:before,.o_icon_move_left:before{content:"\f100"}.o_icon-angle-double-right:before,.o_icon_move_right:before{content:"\f101"}.o_icon-angle-double-up:before,.o_icon_move_up:before{content:"\f102"}.o_icon-angle-double-down:before,.o_icon_move_down:before{content:"\f103"}.o_icon-angle-left:before{content:"\f104"}.o_icon-angle-right:before{content:"\f105"}.o_icon-angle-up:before{content:"\f106"}.o_icon-angle-down:before{content:"\f107"}.o_icon-desktop:before,.o_vc_icon:before,.o_vitero_icon:before,.o_openmeetings_icon:before{content:"\f108"}.o_icon-laptop:before{content:"\f109"}.o_icon-tablet:before{content:"\f10a"}.o_icon-mobile-phone:before,.o_icon-mobile:before{content:"\f10b"}.o_icon-circle-o:before,.o_projectbroker_icon:before{content:"\f10c"}.o_icon-quote-left:before{content:"\f10d"}.o_icon-quote-right:before{content:"\f10e"}.o_icon-spinner:before{content:"\f110"}.o_icon-circle:before,.o_icon_status_available:before,.o_icon_toggle:before{content:"\f111"}.o_icon-mail-reply:before,.o_icon-reply:before{content:"\f112"}.o_icon-github-alt:before{content:"\f113"}.o_icon-folder-o:before,.o_icon_coursefolder:before,.o_filetype_folder:before{content:"\f114"}.o_icon-folder-open-o:before,.o_filetype_folder_open:before,.o_bc_icon:before{content:"\f115"}.o_icon-smile-o:before{content:"\f118"}.o_icon-frown-o:before{content:"\f119"}.o_icon-meh-o:before,.o_FileResource-SURVEY_icon:before,.o_iqsurv_icon:before{content:"\f11a"}.o_icon-gamepad:before{content:"\f11b"}.o_icon-keyboard-o:before{content:"\f11c"}.o_icon-flag-o:before{content:"\f11d"}.o_icon-flag-checkered:before{content:"\f11e"}.o_icon-terminal:before{content:"\f120"}.o_icon-code:before{content:"\f121"}.o_icon-mail-reply-all:before,.o_icon-reply-all:before{content:"\f122"}.o_icon-star-half-empty:before,.o_icon-star-half-full:before,.o_icon-star-half-o:before{content:"\f123"}.o_icon-location-arrow:before{content:"\f124"}.o_icon-crop:before{content:"\f125"}.o_icon-code-fork:before{content:"\f126"}.o_icon-unlink:before,.o_icon-chain-broken:before{content:"\f127"}.o_icon-question:before{content:"\f128"}.o_icon-info:before{content:"\f129"}.o_icon-exclamation:before{content:"\f12a"}.o_icon-superscript:before{content:"\f12b"}.o_icon-subscript:before{content:"\f12c"}.o_icon-eraser:before,.o_middel:before{content:"\f12d"}.o_icon-puzzle-piece:before,.o_icon_eportfolio_add:before,.o_EPStructuredMapTemplate_icon:before,.o_ep_icon:before{content:"\f12e"}.o_icon-microphone:before{content:"\f130"}.o_icon-microphone-slash:before{content:"\f131"}.o_icon-shield:before{content:"\f132"}.o_icon-calendar-o:before{content:"\f133"}.o_icon-fire-extinguisher:before{content:"\f134"}.o_icon-rocket:before{content:"\f135"}.o_icon-maxcdn:before{content:"\f136"}.o_icon-chevron-circle-left:before{content:"\f137"}.o_icon-chevron-circle-right:before{content:"\f138"}.o_icon-chevron-circle-up:before{content:"\f139"}.o_icon-chevron-circle-down:before{content:"\f13a"}.o_icon-html5:before{content:"\f13b"}.o_icon-css3:before{content:"\f13c"}.o_icon-anchor:before{content:"\f13d"}.o_icon-unlock-alt:before{content:"\f13e"}.o_icon-bullseye:before{content:"\f140"}.o_icon-ellipsis-h:before,.o_mi_qtifib:before{content:"\f141"}.o_icon-ellipsis-v:before{content:"\f142"}.o_icon-rss-square:before{content:"\f143"}.o_icon-play-circle:before{content:"\f144"}.o_icon-ticket:before{content:"\f145"}.o_icon-minus-square:before{content:"\f146"}.o_icon-minus-square-o:before{content:"\f147"}.o_icon-level-up:before{content:"\f148"}.o_icon-level-down:before{content:"\f149"}.o_icon-check-square:before,.o_mi_qtikprim:before{content:"\f14a"}.o_icon-pencil-square:before{content:"\f14b"}.o_icon-external-link-square:before{content:"\f14c"}.o_icon-share-square:before{content:"\f14d"}.o_icon-compass:before{content:"\f14e"}.o_icon-toggle-down:before,.o_icon_show_more:before,.o_icon-caret-square-o-down:before{content:"\f150"}.o_icon-toggle-up:before,.o_icon_show_less:before,.o_icon-caret-square-o-up:before{content:"\f151"}.o_icon-toggle-right:before,.o_icon-caret-square-o-right:before{content:"\f152"}.o_icon-euro:before,.o_icon-eur:before{content:"\f153"}.o_icon-gbp:before{content:"\f154"}.o_icon-dollar:before,.o_icon_booking:before,.o_icon-usd:before{content:"\f155"}.o_icon-rupee:before,.o_icon-inr:before{content:"\f156"}.o_icon-cny:before,.o_icon-rmb:before,.o_icon-yen:before,.o_icon-jpy:before{content:"\f157"}.o_icon-ruble:before,.o_icon-rouble:before,.o_icon-rub:before{content:"\f158"}.o_icon-won:before,.o_icon-krw:before{content:"\f159"}.o_icon-bitcoin:before,.o_icon-btc:before{content:"\f15a"}.o_icon-file:before{content:"\f15b"}.o_icon-file-text:before,.o_icon_new_document:before{content:"\f15c"}.o_icon-sort-alpha-asc:before{content:"\f15d"}.o_icon-sort-alpha-desc:before{content:"\f15e"}.o_icon-sort-amount-asc:before,.o_icon_sort_menu:before{content:"\f160"}.o_icon-sort-amount-desc:before{content:"\f161"}.o_icon-sort-numeric-asc:before{content:"\f162"}.o_icon-sort-numeric-desc:before{content:"\f163"}.o_icon-thumbs-up:before{content:"\f164"}.o_icon-thumbs-down:before{content:"\f165"}.o_icon-youtube-square:before{content:"\f166"}.o_icon-youtube:before{content:"\f167"}.o_icon-xing:before{content:"\f168"}.o_icon-xing-square:before{content:"\f169"}.o_icon-youtube-play:before{content:"\f16a"}.o_icon-dropbox:before{content:"\f16b"}.o_icon-stack-overflow:before{content:"\f16c"}.o_icon-instagram:before{content:"\f16d"}.o_icon-flickr:before{content:"\f16e"}.o_icon-adn:before{content:"\f170"}.o_icon-bitbucket:before{content:"\f171"}.o_icon-bitbucket-square:before{content:"\f172"}.o_icon-tumblr:before{content:"\f173"}.o_icon-tumblr-square:before{content:"\f174"}.o_icon-long-arrow-down:before{content:"\f175"}.o_icon-long-arrow-up:before{content:"\f176"}.o_icon-long-arrow-left:before{content:"\f177"}.o_icon-long-arrow-right:before{content:"\f178"}.o_icon-apple:before,.o_icon_apple:before{content:"\f179"}.o_icon-windows:before{content:"\f17a"}.o_icon-android:before{content:"\f17b"}.o_icon-linux:before{content:"\f17c"}.o_icon-dribbble:before{content:"\f17d"}.o_icon-skype:before{content:"\f17e"}.o_icon-foursquare:before{content:"\f180"}.o_icon-trello:before{content:"\f181"}.o_icon-female:before{content:"\f182"}.o_icon-male:before{content:"\f183"}.o_icon-gittip:before{content:"\f184"}.o_icon-sun-o:before{content:"\f185"}.o_icon-moon-o:before{content:"\f186"}.o_icon-archive:before,.o_FileResource-IMSCP_icon:before,.o_FileResource-SCORMCP_icon:before,.o_cp_icon:before,.o_scorm_icon:before{content:"\f187"}.o_icon-bug:before,.o_icon_dev:before{content:"\f188"}.o_icon-vk:before{content:"\f189"}.o_icon-weibo:before{content:"\f18a"}.o_icon-renren:before{content:"\f18b"}.o_icon-pagelines:before{content:"\f18c"}.o_icon-stack-exchange:before{content:"\f18d"}.o_icon-arrow-circle-o-right:before{content:"\f18e"}.o_icon-arrow-circle-o-left:before{content:"\f190"}.o_icon-toggle-left:before,.o_icon-caret-square-o-left:before{content:"\f191"}.o_icon-dot-circle-o:before,.o_icon_status_dnd:before,.o_mi_qtisc:before{content:"\f192"}.o_icon-wheelchair:before{content:"\f193"}.o_icon-vimeo-square:before{content:"\f194"}.o_icon-turkish-lira:before,.o_icon-try:before{content:"\f195"}.o_icon-plus-square-o:before{content:"\f196"}.o_icon-space-shuttle:before{content:"\f197"}.o_icon-slack:before{content:"\f198"}.o_icon-envelope-square:before,.o_icon_mailto:before{content:"\f199"}.o_icon-wordpress:before{content:"\f19a"}.o_icon-openid:before{content:"\f19b"}.o_icon-institution:before,.o_icon-bank:before,.o_icon-university:before{content:"\f19c"}.o_icon-mortar-board:before,.o_icon-graduation-cap:before{content:"\f19d"}.o_icon-yahoo:before,.o_icon_yahoo:before{content:"\f19e"}.o_icon-google:before{content:"\f1a0"}.o_icon-reddit:before{content:"\f1a1"}.o_icon-reddit-square:before{content:"\f1a2"}.o_icon-stumbleupon-circle:before{content:"\f1a3"}.o_icon-stumbleupon:before{content:"\f1a4"}.o_icon-delicious:before,.o_icon_delicious:before{content:"\f1a5"}.o_icon-digg:before,.o_icon_digg:before{content:"\f1a6"}.o_icon-pied-piper-square:before,.o_icon-pied-piper:before{content:"\f1a7"}.o_icon-pied-piper-alt:before{content:"\f1a8"}.o_icon-drupal:before{content:"\f1a9"}.o_icon-joomla:before{content:"\f1aa"}.o_icon-language:before{content:"\f1ab"}.o_icon-fax:before{content:"\f1ac"}.o_icon-building:before{content:"\f1ad"}.o_icon-child:before{content:"\f1ae"}.o_icon-paw:before{content:"\f1b0"}.o_icon-spoon:before{content:"\f1b1"}.o_icon-cube:before,.o_icon_courseeditor:before,.o_CourseModule_icon:before{content:"\f1b2"}.o_icon-cubes:before,.o_st_icon:before{content:"\f1b3"}.o_icon-behance:before{content:"\f1b4"}.o_icon-behance-square:before{content:"\f1b5"}.o_icon-steam:before{content:"\f1b6"}.o_icon-steam-square:before{content:"\f1b7"}.o_icon-recycle:before,.o_icon_recycle:before{content:"\f1b8"}.o_icon-automobile:before,.o_icon-car:before{content:"\f1b9"}.o_icon-cab:before,.o_icon-taxi:before{content:"\f1ba"}.o_icon-tree:before{content:"\f1bb"}.o_icon-spotify:before{content:"\f1bc"}.o_icon-deviantart:before{content:"\f1bd"}.o_icon-soundcloud:before{content:"\f1be"}.o_icon-database:before,.o_icon_coursedb:before{content:"\f1c0"}.o_icon-file-pdf-o:before,.o_filetype_ps:before,.o_filetype_pdf:before{content:"\f1c1"}.o_icon-file-word-o:before,.o_filetype_pages:before,.o_filetype_doc:before,.o_filetype_docx:before{content:"\f1c2"}.o_icon-file-excel-o:before,.o_filetype_xls:before,.o_filetype_xlsx:before{content:"\f1c3"}.o_icon-file-powerpoint-o:before,.o_filetype_key:before,.o_filetype_odp:before,.o_filetype_ppt:before,.o_filetype_pptx:before{content:"\f1c4"}.o_icon-file-photo-o:before,.o_icon-file-picture-o:before,.o_icon-file-image-o:before,.o_filetype_png:before,.o_filetype_tiff:before,.o_filetype_webp:before,.o_filetype_gif:before,.o_filetype_ico:before,.o_filetype_jpeg:before,.o_filetype_bmp:before,.o_filetype_odg:before,.o_filetype_eps:before,.o_filetype_jpg:before{content:"\f1c5"}.o_icon-file-zip-o:before,.o_icon-file-archive-o:before,.o_filetype_zip:before,.o_filetype_gz:before,.o_filetype_tar:before,.o_filetype_tgz:before{content:"\f1c6"}.o_icon-file-sound-o:before,.o_icon-file-audio-o:before,.o_filetype_midi:before,.o_filetype_audio:before,.o_filetype_mp3:before,.o_filetype_m3u:before,.o_filetype_wav:before{content:"\f1c7"}.o_icon-file-movie-o:before,.o_icon-file-video-o:before,.o_filetype_psd:before,.o_filetype_avi:before,.o_filetype_dvi:before,.o_filetype_mp4:before,.o_filetype_m4v:before,.o_filetype_webm:before,.o_filetype_ogg:before,.o_filetype_video:before,.o_filetype_mov:before,.o_filetype_mpeg:before,.o_filetype_mpg:before,.o_filetype_qt:before,.o_filetype_ra:before,.o_filetype_ram:before,.o_filetype_swf:before,.o_filetype_flv:before{content:"\f1c8"}.o_icon-file-code-o:before,.o_filetype_css:before,.o_filetype_js:before,.o_filetype_java:before,.o_filetype_numbers:before,.o_filetype_ods:before,.o_filetype_xml:before,.o_filetype_xsl:before,.o_filetype_bat_icon:before,.o_filetype_bat:before,.o_filetype_exe:before,.o_filetype_app:before,.o_filetype_sh:before{content:"\f1c9"}.o_icon-vine:before{content:"\f1ca"}.o_icon-codepen:before{content:"\f1cb"}.o_icon-jsfiddle:before{content:"\f1cc"}.o_icon-life-bouy:before,.o_icon-life-saver:before,.o_icon-support:before,.o_icon-life-ring:before{content:"\f1cd"}.o_icon-circle-o-notch:before{content:"\f1ce"}.o_icon-ra:before,.o_icon-rebel:before{content:"\f1d0"}.o_icon-ge:before,.o_icon-empire:before{content:"\f1d1"}.o_icon-git-square:before{content:"\f1d2"}.o_icon-git:before{content:"\f1d3"}.o_icon-hacker-news:before{content:"\f1d4"}.o_icon-tencent-weibo:before{content:"\f1d5"}.o_icon-qq:before{content:"\f1d6"}.o_icon-wechat:before,.o_icon-weixin:before{content:"\f1d7"}.o_icon-send:before,.o_icon-paper-plane:before{content:"\f1d8"}.o_icon-send-o:before,.o_icon-paper-plane-o:before{content:"\f1d9"}.o_icon-history:before,.o_icon_version:before{content:"\f1da"}.o_icon-circle-thin:before,.o_icon_courseareas:before{content:"\f1db"}.o_icon-header:before{content:"\f1dc"}.o_icon-paragraph:before{content:"\f1dd"}.o_icon-sliders:before{content:"\f1de"}.o_icon-share-alt:before{content:"\f1e0"}.o_icon-share-alt-square:before{content:"\f1e1"}.o_icon-bomb:before,.o_icon_timelimit:before{content:"\f1e2"}.o_icon_bookmark{color:#996633}.o_icon_bookmark_add{color:#999999}.o_icon_delete{color:#A87E7E}.o_icon_error{color:#d9534f}.o_icon_help{cursor:help}.o_icon_info{color:#5bc0de}.o_icon_new{color:#5cb85c}.o_icon_mandatory{color:#f0ad4e}.o_icon_managed{color:#999}.o_icon_read{color:green}.o_icon_readonly{color:red}.o_icon_status_available{color:#006633}.o_icon_status_dnd{color:#CCCC33}.o_icon_status_unavailable{color:#996633}.o_icon_to_read{color:blue}.o_icon_warn{color:#f0ad4e}.o_portrait_dummy,.o_portrait_dummy_female_big,.o_portrait_dummy_male_big,.o_portrait_anonymous{width:100px;height:100px}.o_portrait_dummy{background-image:url("../light/images/portrait/dummy.png")}.o_portrait_dummy_female_big{background-image:url("../light/images/portrait/dummy_female_big.png")}.o_portrait_dummy_male_big{background-image:url("../light/images/portrait/dummy_male_big.png")}.o_portrait_anonymous{background-image:url("../light/images/portrait/dummy.png")}.o_portrait_dummy_small,.o_portrait_dummy_female_small,.o_portrait_dummy_male_small,.o_portrait_anonymous_small{width:30px;height:30px}.o_portrait_dummy_small{background-image:url("../light/images/portrait/dummy_small.png")}.o_portrait_dummy_female_small{background-image:url("../light/images/portrait/dummy_female_small.png")}.o_portrait_dummy_male_small{background-image:url("../light/images/portrait/dummy_male_small.png")}.o_portrait_anonymous_small{background-image:url("../light/images/portrait/dummy_small.png")}a.o_chelp{padding:1px 3px;font-size:10px;line-height:1.5;border-radius:2px}div.o_chelp_wrapper{position:relative}.o_undecorated:hover,a.o_icon:hover,.o_withEllipsis .o_morelink:hover,.o_withEllipsis .o_lesslink:hover,#o_main_wrapper #o_toplink:hover,.o_button_toggle:hover,.o_noti .o_label:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_comments:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:hover,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title a:hover,.o_catalog .o_level .o_meta .o_title a:hover,.o_catalog .o_sublevels .o_sublevel .o_meta .o_title a:hover,.o_repo_details .o_social .o_comments:hover,.o_undecorated:focus,a.o_icon:focus,.o_withEllipsis .o_morelink:focus,.o_withEllipsis .o_lesslink:focus,#o_main_wrapper #o_toplink:focus,.o_button_toggle:focus,.o_noti .o_label:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_comments:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details:focus,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title a:focus,.o_catalog .o_level .o_meta .o_title a:focus,.o_catalog .o_sublevels .o_sublevel .o_meta .o_title a:focus,.o_repo_details .o_social .o_comments:focus{text-decoration:none}.o_block,.o_course_run .o_toc .o_entry{margin:1em 0}.o_block_large,.o_button_group{margin:2em 0}.o_scrollblock{overflow-x:auto;overflow-y:hidden}.o_button_group{text-align:center}.o_button_group a,.o_button_group input,.o_button_group button{margin-right:1em}.o_button_group a:last-child,.o_button_group input:last-child,.o_button_group button:last-child{margin-right:0}.o_nowrap{white-space:nowrap}.o_titled_wrapper{margin-top:20px}.o_titled_wrapper .o_content{margin-top:20px}.o_portrait img{background-color:#eee;background-position:50% 50%;background-repeat:no-repeat}.o_portrait img.o_small{width:30px;height:30px}.o_portrait img.o_large{width:100px;height:100px}.o_video{display:inline-block}.o_image{display:inline-block;max-width:100%}.o_rotate_90,#o_main_wrapper #o_main_container #o_main_center #o_offcanvas_toggle{-webkit-transform:rotate(-90deg);-moz-transform:rotate(-90deg);-ms-transform:rotate(-90deg);-o-transform:rotate(-90deg);transform:rotate(-90deg);filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3)}.o_segments_content{margin-top:20px}.o_withEllipsis .o_morelink,.o_withEllipsis .o_lesslink{display:none}.o_withEllipsis.o_hasOverflow .o_morelink{display:block}.o_withEllipsis.o_hasOverflow .o_lesslink{display:none}.o_withEllipsis.o_hasOverflow.o_showOverflow{height:auto !important}.o_withEllipsis.o_hasOverflow.o_showOverflow .o_morelink{display:none}.o_withEllipsis.o_hasOverflow.o_showOverflow .o_lesslink{display:block}.o_info,.o_note,.o_form .o_desc,.o_course_run .o_statusinfo,.o_course_stats .o_desc,.o_important,.o_bc_empty,.o_course_run .o_no_scoreinfo,.o_warning,.o_form .o_warning,.o_error,.o_form .o_info,.o_togglebox_wrapper div.o_togglebox_content,div.o_qti_item_itemfeedback{margin:20px 0;padding:20px;background-color:#eee;border-left:3px solid #d4d4d4}.o_info h2,.o_note h2,.o_form .o_desc h2,.o_course_run .o_statusinfo h2,.o_course_stats .o_desc h2,.o_important h2,.o_bc_empty h2,.o_course_run .o_no_scoreinfo h2,.o_warning h2,.o_form .o_warning h2,.o_error h2,.o_form .o_info h2,.o_togglebox_wrapper div.o_togglebox_content h2,div.o_qti_item_itemfeedback h2,.o_info h3,.o_note h3,.o_form .o_desc h3,.o_course_run .o_statusinfo h3,.o_course_stats .o_desc h3,.o_important h3,.o_bc_empty h3,.o_course_run .o_no_scoreinfo h3,.o_warning h3,.o_form .o_warning h3,.o_error h3,.o_form .o_info h3,.o_togglebox_wrapper div.o_togglebox_content h3,div.o_qti_item_itemfeedback h3,.o_info h4,.o_note h4,.o_form .o_desc h4,.o_course_run .o_statusinfo h4,.o_course_stats .o_desc h4,.o_important h4,.o_bc_empty h4,.o_course_run .o_no_scoreinfo h4,.o_warning h4,.o_form .o_warning h4,.o_error h4,.o_form .o_info h4,.o_togglebox_wrapper div.o_togglebox_content h4,div.o_qti_item_itemfeedback h4,.o_info .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_info h2,.o_note .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_note h2,.o_form .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_form .o_desc h2,.o_course_run .o_statusinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_statusinfo h2,.o_course_stats .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_stats .o_desc h2,.o_important .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_important h2,.o_bc_empty .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_bc_empty h2,.o_course_run .o_no_scoreinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_no_scoreinfo h2,.o_warning .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_warning h2,.o_error .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_error h2,.o_togglebox_wrapper div.o_togglebox_content .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_togglebox_wrapper div.o_togglebox_content h2,div.o_qti_item_itemfeedback .o_cal .fc-header-title h2,.o_cal .fc-header-title div.o_qti_item_itemfeedback h2,.o_info h5,.o_note h5,.o_form .o_desc h5,.o_course_run .o_statusinfo h5,.o_course_stats .o_desc h5,.o_important h5,.o_bc_empty h5,.o_course_run .o_no_scoreinfo h5,.o_warning h5,.o_form .o_warning h5,.o_error h5,.o_form .o_info h5,.o_togglebox_wrapper div.o_togglebox_content h5,div.o_qti_item_itemfeedback h5{color:#bbbbbb}p.o_info,p.o_note,.o_form p.o_desc,.o_course_run p.o_statusinfo,.o_course_stats p.o_desc,p.o_important,p.o_bc_empty,.o_course_run p.o_no_scoreinfo,p.o_warning,.o_form p.o_warning,p.o_error,.o_form p.o_info,div.o_info,div.o_note,.o_form div.o_desc,.o_course_run div.o_statusinfo,.o_course_stats div.o_desc,div.o_important,div.o_bc_empty,.o_course_run div.o_no_scoreinfo,div.o_warning,.o_form div.o_warning,div.o_error,.o_form div.o_info,.o_togglebox_wrapper div.o_togglebox_content,div.o_qti_item_itemfeedback{margin:20px 0}.o_note,.o_form .o_desc,.o_course_run .o_statusinfo,.o_course_stats .o_desc{background-color:#f4f8fa;border-color:#5bc0de}.o_note h2,.o_form .o_desc h2,.o_course_run .o_statusinfo h2,.o_course_stats .o_desc h2,.o_note h3,.o_form .o_desc h3,.o_course_run .o_statusinfo h3,.o_course_stats .o_desc h3,.o_note h4,.o_form .o_desc h4,.o_course_run .o_statusinfo h4,.o_course_stats .o_desc h4,.o_note .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_note h2,.o_form .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_form .o_desc h2,.o_course_run .o_statusinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_statusinfo h2,.o_course_stats .o_desc .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_stats .o_desc h2,.o_note h5,.o_form .o_desc h5,.o_course_run .o_statusinfo h5,.o_course_stats .o_desc h5{color:#5bc0de}p.o_note,.o_form p.o_desc,.o_course_run p.o_statusinfo,.o_course_stats p.o_desc,div.o_note,.o_form div.o_desc,.o_course_run div.o_statusinfo,.o_course_stats div.o_desc{margin:20px 0}.o_important,.o_bc_empty,.o_course_run .o_no_scoreinfo{background-color:#FFF1A4;border-color:#F4D000}.o_important h2,.o_bc_empty h2,.o_course_run .o_no_scoreinfo h2,.o_important h3,.o_bc_empty h3,.o_course_run .o_no_scoreinfo h3,.o_important h4,.o_bc_empty h4,.o_course_run .o_no_scoreinfo h4,.o_important .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_important h2,.o_bc_empty .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_bc_empty h2,.o_course_run .o_no_scoreinfo .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_course_run .o_no_scoreinfo h2,.o_important h5,.o_bc_empty h5,.o_course_run .o_no_scoreinfo h5{color:#F4D000}p.o_important,p.o_bc_empty,.o_course_run p.o_no_scoreinfo,div.o_important,div.o_bc_empty,.o_course_run div.o_no_scoreinfo{margin:20px 0}.o_warning,.o_form .o_warning{background-color:#FFD5AA;border-color:#FF9E3E}.o_warning h2,.o_form .o_warning h2,.o_warning h3,.o_form .o_warning h3,.o_warning h4,.o_form .o_warning h4,.o_warning .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_warning h2,.o_warning h5,.o_form .o_warning h5{color:#FF9E3E}o.o_warning,.o_form o.o_warning,div.o_warning,.o_form div.o_warning{margin:20px 0}.o_error{background-color:#fdf7f7;border-color:#d9534f}.o_error h2,.o_error h3,.o_error h4,.o_error .o_cal .fc-header-title h2,.o_cal .fc-header-title .o_error h2,.o_error h5{color:#d9534f}o.o_error,div.o_error{margin:20px 0}.o_border_box{border:1px solid #999;padding:1em;border-radius:2px;-webkit-border-radius:2px;-moz-border-radius:2px;-o-border-radius:2px}p.o_border_box,div.o_border_box{margin:1em 0}table.b_grid{background:transparent;border-collapse:separate}table.b_grid td,table.b_grid th{padding:2px 5px;border:1px solid #888}table.b_grid thead th{background:#ccc}table.b_grid tbody th{background:#eee}table.b_border{background:transparent;border-collapse:collapse}table.b_border td,table.b_border th{padding:2px 5px;border:1px solid #888}table.b_full{width:99.5%}table td{vertical-align:top}table.b_middle{background:transparent}table.b_middle td{vertical-align:middle}.b_selected,p.b_selected,div.b_selected{font-weight:bold}.b_dimmed,p.b_dimmed,div.b_dimmed{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=40);-moz-opacity:0.4;-khtml-opacity:0.4;opacity:0.4}.b_disabled,p.b_disabled,div.b_disabled{color:#999}.b_deleted,p.b_deleted,div.b_deleted{text-decoration:line-through}.b_xsmall,sup,sub,p.b_xsmall,div.b_xsmall{font-size:80%}.b_small,small,p.b_small,div.b_small{font-size:90%}.b_large,p.b_large,div.b_large{font-size:110%}.b_xlarge,big,p.b_xlarge,div.b_xlarge{font-size:120%}.b_align_normal{text-align:left}.b_align_center{text-align:center}.b_align_inverse{text-align:right}.o_ochre{color:#c8a959}.o_blue{color:#12223F}a.b_link_extern{background:transparent url("../../openolat/images/external_link_trimmed.png") no-repeat right top;padding-right:13px}a.b_link_mailto{background:transparent url("../../openolat/images/mail_small.png") no-repeat left center;padding-left:18px}a.b_link_forward{background:transparent url("../../openolat/images/arrow_right.png") no-repeat right center;padding-right:18px}img.b_float_left{float:left;margin:0 2em 2em 0}img.b_float_right{float:right;margin:0 0 2em 2em}img.b_centered{display:block;margin:0 auto 2em auto}img.o_emoticons_angel{background:url(../light/images/emoticons/smiley-angel.png);width:16px;height:16px}img.o_emoticons_angry{background:url(../light/images/emoticons/smiley-mad.png);width:16px;height:16px}img.o_emoticons_blushing{background:url(../light/images/emoticons/smiley-red.png);width:16px;height:16px}img.o_emoticons_confused{background:url(../light/images/emoticons/smiley-confuse.png);width:16px;height:16px}img.o_emoticons_cool{background:url(../light/images/emoticons/smiley-cool.png);width:16px;height:16px}img.o_emoticons_cry{background:url(../light/images/emoticons/smiley-cry.png);width:16px;height:16px}img.o_emoticons_devil{background:url(../light/images/emoticons/smiley-evil.png);width:16px;height:16px}img.o_emoticons_grin{background:url(../light/images/emoticons/smiley-grin.png);width:16px;height:16px}img.o_emoticons_kiss{background:url(../light/images/emoticons/smiley-kiss.png);width:16px;height:16px}img.o_emoticons_ohoh{background:url(../light/images/emoticons/smiley-eek.png);width:16px;height:16px}img.o_emoticons_sad{background:url(../light/images/emoticons/smiley-sad.png);width:16px;height:16px}img.o_emoticons_sick{background:url(../light/images/emoticons/smiley-sad-blue.png);width:16px;height:16px}img.o_emoticons_smile{background:url(../light/images/emoticons/smiley.png);width:16px;height:16px}img.o_emoticons_tongue{background:url(../light/images/emoticons/smiley-razz.png);width:16px;height:16px}img.o_emoticons_ugly{background:url(../light/images/emoticons/smiley-money.png);width:16px;height:16px}img.o_emoticons_weird{background:url(../light/images/emoticons/smiley-nerd.png);width:16px;height:16px}img.o_emoticons_wink{background:url(../light/images/emoticons/smiley-wink.png);width:16px;height:16px}img.o_emoticons_worried{background:url(../light/images/emoticons/smiley-roll-blue.png);width:16px;height:16px}img.o_emoticons_up{background:url(../light/images/emoticons/thumb-up.png);width:16px;height:16px}img.o_emoticons_down{background:url(../light/images/emoticons/thumb.png);width:16px;height:16px}html{position:relative;min-height:100%}body{min-height:100%;margin-bottom:60px}#o_navbar_wrapper{z-index:4}#o_navbar_wrapper #o_navbar_container{position:relative}#o_navbar_wrapper #o_navbar_container a.o_navbar-brand{font-size:40px;vertical-align:top;font-weight:bold;color:#31729B}#o_navbar_wrapper #o_navbar_container a.o_navbar-brand:after{content:"\221E"}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs li a{padding-right:30px}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs .o_navbar_tab_close{position:absolute;top:15px;right:0.5em;padding:0;width:1em;height:1em}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs .o_navbar_tab_close i:before{color:#A87E7E}#o_navbar_wrapper #o_navbar_container .o_navbar_tabs .o_navbar_tab_close:hover i:before{color:#CC0000}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_langchooser{color:#777;padding:15px}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_langchooser form span+div{display:inline}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_help a i{margin-right:0.4em}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_my_menu .dropdown-toggle{padding-left:45px}#o_navbar_wrapper #o_navbar_container #o_navbar_tools #o_navbar_my_menu img{position:absolute;left:7px;top:10px;height:30px;width:30px}.o_navbar{position:relative;min-height:50px;margin-bottom:0;border:1px solid transparent}.o_navbar:before,.o_navbar:after{content:" ";display:table}.o_navbar:after{clear:both}.o_navbar-collapse{max-height:100%;overflow-x:visible;padding-right:15px;padding-left:15px;border-top:1px solid transparent;box-shadow:inset 0 1px 0 rgba(255,255,255,0.1);-webkit-overflow-scrolling:touch}.o_navbar-collapse:before,.o_navbar-collapse:after{content:" ";display:table}.o_navbar-collapse:after{clear:both}.o_navbar-collapse.o_collapse{display:block !important;height:auto !important;padding-bottom:0;overflow:visible !important}.o_navbar-offcanvas .o_navbar-collapse{width:auto;border-top:0;box-shadow:none;margin-top:10px;margin-right:-15px;margin-left:-15px}.o_navbar-brand{float:left;padding:15px 15px;font-size:18px;line-height:20px;height:50px}.o_navbar-brand:hover,.o_navbar-brand:focus{text-decoration:none}.o_navbar-toggle{position:relative;float:right;margin-right:15px;padding:9px 10px;margin-top:8px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}.o_navbar-toggle:focus{outline:none}.o_navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}.o_navbar-toggle .icon-bar+.icon-bar{margin-top:4px}.o_navbar-nav{margin:7.5px -15px}.o_navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:20px}.o_collapse .o_navbar-nav{float:left;margin:0}.o_collapse .o_navbar-nav>li{float:left}.o_collapse .o_navbar-nav>li>a{padding-top:15px;padding-bottom:15px}.o_collapse .o_navbar-nav.o_navbar-right:last-child{margin-right:-15px}.o_collapse.o_navbar-collapse .o_navbar-left{float:left !important}.o_collapse.o_navbar-collapse .o_navbar-right{float:right !important}.o_navbar-form{margin-left:-15px;margin-right:-15px;padding:10px 15px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);box-shadow:inset 0 1px 0 rgba(255,255,255,0.1),0 1px 0 rgba(255,255,255,0.1);margin-top:8px;margin-bottom:8px}@media (max-width: 767px){.o_navbar-form .form-group{margin-bottom:5px}}
 .o_collapse .o_navbar-form{width:auto;border:0;margin-left:0;margin-right:0;padding-top:0;padding-bottom:0;-webkit-box-shadow:none;box-shadow:none}.o_collapse .o_navbar-form.o_navbar-right:last-child{margin-right:-15px}.o_navbar-nav>li>.dropdown-menu{margin-top:0;border-top-right-radius:0;border-top-left-radius:0}.o_navbar-fixed-bottom .o_navbar-nav>li>.dropdown-menu{border-bottom-right-radius:0;border-bottom-left-radius:0}.o_navbar-btn{margin-top:8px;margin-bottom:8px}.o_navbar-btn.btn-sm,.btn-group-sm>.o_navbar-btn.btn,.btn-group-sm>a.o_navbar-btn.o_chelp{margin-top:10px;margin-bottom:10px}.o_navbar-btn.btn-xs,.btn-group-xs>.o_navbar-btn.btn,.btn-group-xs>a.o_navbar-btn.o_chelp{margin-top:14px;margin-bottom:14px}.o_navbar-text{margin-top:15px;margin-bottom:15px}.o_collapse .o_navbar-text{float:left;margin-left:15px;margin-right:15px}.o_collapse .o_navbar-text.o_navbar-right:last-child{margin-right:0}.o_navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}.o_navbar-default .o_navbar-brand{color:#777}.o_navbar-default .o_navbar-brand:hover,.o_navbar-default .o_navbar-brand:focus{color:#5e5e5e;background-color:transparent}.o_navbar-default .o_navbar-text{color:#777}.o_navbar-default .o_navbar-nav>li>a{color:#777}.o_navbar-default .o_navbar-nav>li>a:hover,.o_navbar-default .o_navbar-nav>li>a:focus{color:#333;background-color:transparent}.o_navbar-default .o_navbar-nav>.active>a,.o_navbar-default .o_navbar-nav>.active>a:hover,.o_navbar-default .o_navbar-nav>.active>a:focus{color:#555;background-color:#e7e7e7}.o_navbar-default .o_navbar-nav>.disabled>a,.o_navbar-default .o_navbar-nav>.disabled>a:hover,.o_navbar-default .o_navbar-nav>.disabled>a:focus{color:#ccc;background-color:transparent}.o_navbar-default .o_navbar-toggle{border-color:#ddd}.o_navbar-default .o_navbar-toggle:hover,.o_navbar-default .o_navbar-toggle:focus{background-color:#ddd}.o_navbar-default .o_navbar-toggle .icon-bar{background-color:#888}.o_navbar-default .o_navbar-collapse,.o_navbar-default .o_navbar-form{border-color:#e7e7e7}.o_navbar-default .o_navbar-nav>.open>a,.o_navbar-default .o_navbar-nav>.open>a:hover,.o_navbar-default .o_navbar-nav>.open>a:focus{background-color:#e7e7e7;color:#555}.o_navbar-default .o_navbar-link{color:#777}.o_navbar-default .o_navbar-link:hover{color:#333}.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>li>a{color:#777}.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>li>a:hover,.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>li>a:focus{color:#333;background-color:transparent}.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>.active>a,.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>.active>a:hover,.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>.active>a:focus{color:#555;background-color:#e7e7e7}.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>.disabled>a,.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>.disabled>a:hover,.o_navbar-offcanvas.o_navbar-default .o_navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#ccc;background-color:transparent}.o_navbar-inverse{background-color:#222;border-color:#090909}.o_navbar-inverse .o_navbar-brand{color:#999}.o_navbar-inverse .o_navbar-brand:hover,.o_navbar-inverse .o_navbar-brand:focus{color:#fff;background-color:transparent}.o_navbar-inverse .o_navbar-text{color:#999}.o_navbar-inverse .o_navbar-nav>li>a{color:#999}.o_navbar-inverse .o_navbar-nav>li>a:hover,.o_navbar-inverse .o_navbar-nav>li>a:focus{color:#fff;background-color:transparent}.o_navbar-inverse .o_navbar-nav>.active>a,.o_navbar-inverse .o_navbar-nav>.active>a:hover,.o_navbar-inverse .o_navbar-nav>.active>a:focus{color:#fff;background-color:#090909}.o_navbar-inverse .o_navbar-nav>.disabled>a,.o_navbar-inverse .o_navbar-nav>.disabled>a:hover,.o_navbar-inverse .o_navbar-nav>.disabled>a:focus{color:#444;background-color:transparent}.o_navbar-inverse .o_navbar-toggle{border-color:#333}.o_navbar-inverse .o_navbar-toggle:hover,.o_navbar-inverse .o_navbar-toggle:focus{background-color:#333}.o_navbar-inverse .o_navbar-toggle .icon-bar{background-color:#fff}.o_navbar-inverse .o_navbar-collapse,.o_navbar-inverse .o_navbar-form{border-color:#101010}.o_navbar-inverse .o_navbar-nav>.open>a,.o_navbar-inverse .o_navbar-nav>.open>a:hover,.o_navbar-inverse .o_navbar-nav>.open>a:focus{background-color:#090909;color:#fff}.o_navbar-inverse .o_navbar-nav .o_navbar-link{color:#999}.o_navbar-inverse .o_navbar-nav .o_navbar-link:hover{color:#fff}.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#090909}.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu .divider{background-color:#090909}.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>li>a{color:#999}.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>li>a:hover,.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>li>a:focus{color:#fff;background-color:transparent}.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.active>a,.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.active>a:hover,.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.active>a:focus{color:#fff;background-color:#090909}.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.disabled>a,.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.disabled>a:hover,.o_navbar-inverse .o_navbar-offcanvas.o_navbar-inverse .o_navbar-nav .open .dropdown-menu>.disabled>a:focus{color:#444;background-color:transparent}#o_main_wrapper{background:#fff;z-index:3}#o_main_wrapper #o_main_container{background:#fff}#o_main_wrapper #o_main_container #o_main_left{position:absolute}#o_main_wrapper #o_main_container #o_main_left #o_main_left_content{padding:30px}#o_main_wrapper #o_main_container #o_main_right{position:relative;background:#999}#o_main_wrapper #o_main_container #o_main_right #o_main_right_content{padding:30px}#o_main_wrapper #o_main_container #o_main_center{position:relative}@media screen and (max-width: 767px){#o_main_wrapper #o_main_container #o_main_center{margin-left:0 !important}}#o_main_wrapper #o_main_container #o_main_center #o_offcanvas_toggle{position:absolute;left:-4em;top:0;left:-2em;top:1.7em;z-index:2}#o_main_wrapper #o_main_container #o_main_center #o_main_center_content{padding:30px 15px}#o_main_wrapper #o_toplink{position:absolute;bottom:0;right:10px;text-align:center}@media (max-width: 767px){#o_main_wrapper #o_main_container #o_main_center #o_main_center_content{padding:15px}}
 #o_footer_wrapper{position:absolute;bottom:0;width:100%;z-index:2;min-height:60px;background-color:#f5f5f5;color:#999;line-height:16px}#o_footer_wrapper a{color:#999}#o_footer_wrapper a:hover{color:#000}#o_footer_wrapper #o_footer_container{position:relative;padding-top:10px;min-height:60px;background:#f5f5f5}#o_footer_wrapper #o_footer_container #o_footer_user #o_counter{white-space:nowrap}#o_footer_wrapper #o_footer_container #o_footer_user #o_username{white-space:nowrap;margin-right:1em}#o_footer_wrapper #o_footer_container #o_footer_version{text-align:right}@media (max-width: 767px){#o_footer_wrapper #o_footer_container #o_footer_version{padding-top:10px;text-align:left}}#o_footer_wrapper #o_footer_container #o_footer_powered{text-align:center}#o_footer_wrapper #o_footer_container #o_footer_powered img{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=60);-moz-opacity:0.6;-khtml-opacity:0.6;opacity:0.6}#o_footer_wrapper #o_footer_container #o_footer_powered img:hover{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=100);-moz-opacity:1;-khtml-opacity:1;opacity:1}@media (max-width: 767px){#o_footer_wrapper #o_footer_container #o_footer_powered{display:none}}
 #o_share{margin-top:10px;width:250px}#o_share a{margin:0 5px 0 0;float:left;zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=60);-moz-opacity:0.6;-khtml-opacity:0.6;opacity:0.6}#o_share a:hover{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=100);-moz-opacity:1;-khtml-opacity:1;opacity:1}body{overflow-x:hidden}.o_container_offcanvas{position:relative;max-width:1324px;-webkit-transition:all .25s ease-in-out;-moz-transition:all .25s ease-in-out;-o-transition:all .25s ease-in-out;-m-transition:all .25s ease-in-out;transition:all .25s ease-in-out}#o_offcanvas_right{position:absolute;top:0;right:-250px;width:250px;padding:15px 15px;background-color:#222;color:#999;border:1px solid #090909;min-height:100%;z-index:10;-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;-o-transition:all .25s ease-out;-m-transition:all .25s ease-out;transition:all .25s ease-out}#o_offcanvas_right:before,#o_offcanvas_right:after{content:" ";display:table}#o_offcanvas_right:after{clear:both}@media screen and (min-width: 1324px) and (max-width: 1574px){body.o_offcanvas_right_visible .o_container_offcanvas{left:-125px;max-width:1074px}}@media screen and (min-width: 1574px) and (max-width: 1824px){body.o_offcanvas_right_visible .o_container_offcanvas{left:-125px}}body.o_offcanvas_right_visible #o_offcanvas_right{right:0;-webkit-box-shadow:0px 0px 4px 3px rgba(0,0,0,0.25);box-shadow:0px 0px 4px 3px rgba(0,0,0,0.25)}@media screen and (max-width: 767px){.row-offcanvas{position:relative;-webkit-transition:all .25s ease-out;-moz-transition:all .25s ease-out;transition:all .25s ease-out}.row-offcanvas-right{right:0}.row-offcanvas-right .sidebar-offcanvas{right:-50%}.row-offcanvas-right.active{right:50%}.row-offcanvas-left{left:0}.row-offcanvas-left .sidebar-offcanvas{left:-50%}.row-offcanvas-left.active{left:50%}.sidebar-offcanvas{position:absolute;top:0;width:50%}}div.o_callout_overlay{position:fixed;top:0;left:0;width:100%;height:100%;zoom:1;background:#000;zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=1);-moz-opacity:0.01;-khtml-opacity:0.01;opacity:0.01}.alert-fixed-top,.alert-fixed-bottom{position:fixed;width:100%;z-index:1035;border-radius:0;margin:0;left:0}@media (min-width: 992px){.alert-fixed-top,.alert-fixed-bottom{width:992px;left:50%;margin-left:-496px}}
@@ -50,6 +50,6 @@ small,.small,.o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o
 .alert-fixed-bottom{bottom:0;border-width:1px 0 0 0}@media (min-width: 992px){.alert-fixed-bottom{border-top-right-radius:4px;border-top-left-radius:4px;border-width:1px 1px 0 1px}}
 .o_tree{position:relative;display:block;background-color:#fff;border:1px solid #ddd;border-top-right-radius:4px;border-top-left-radius:4px;border-bottom-right-radius:4px;border-bottom-left-radius:4px}.o_tree ul{background-color:white;margin:0;padding:0;list-style-type:none}.o_tree ul li{margin:0;padding:0}.o_tree ul li div{position:relative;margin-bottom:-1px;border-bottom:1px solid #ddd}.o_tree ul li div a.o_tree_oc_l0{position:absolute;top:8px;left:1px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l0,.o_tree ul .o_tree_level_close.b_tree_oc_l0{z-index:10}.o_tree ul li div a.o_tree_oc_l1{position:absolute;top:8px;left:16px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l1,.o_tree ul .o_tree_level_close.b_tree_oc_l1{z-index:10}.o_tree ul li div a.o_tree_oc_l2{position:absolute;top:8px;left:31px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l2,.o_tree ul .o_tree_level_close.b_tree_oc_l2{z-index:10}.o_tree ul li div a.o_tree_oc_l3{position:absolute;top:8px;left:46px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l3,.o_tree ul .o_tree_level_close.b_tree_oc_l3{z-index:10}.o_tree ul li div a.o_tree_oc_l4{position:absolute;top:8px;left:61px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l4,.o_tree ul .o_tree_level_close.b_tree_oc_l4{z-index:10}.o_tree ul li div a.o_tree_oc_l5{position:absolute;top:8px;left:76px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l5,.o_tree ul .o_tree_level_close.b_tree_oc_l5{z-index:10}.o_tree ul li div a.o_tree_oc_l6{position:absolute;top:8px;left:91px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l6,.o_tree ul .o_tree_level_close.b_tree_oc_l6{z-index:10}.o_tree ul li div a.o_tree_oc_l7{position:absolute;top:8px;left:106px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l7,.o_tree ul .o_tree_level_close.b_tree_oc_l7{z-index:10}.o_tree ul li div a.o_tree_oc_l8{position:absolute;top:8px;left:121px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l8,.o_tree ul .o_tree_level_close.b_tree_oc_l8{z-index:10}.o_tree ul li div a.o_tree_oc_l9{position:absolute;top:8px;left:136px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l9,.o_tree ul .o_tree_level_close.b_tree_oc_l9{z-index:10}.o_tree ul li div a.o_tree_oc_l10{position:absolute;top:8px;left:151px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l10,.o_tree ul .o_tree_level_close.b_tree_oc_l10{z-index:10}.o_tree ul li div a.o_tree_oc_l11{position:absolute;top:8px;left:166px;z-index:9}.o_tree ul .o_tree_level_open.b_tree_oc_l11,.o_tree ul .o_tree_level_close.b_tree_oc_l11{z-index:10}.o_tree ul li div a.o_tree_l0{display:block;padding:10px 2px 10px 14px;z-index:9}.o_tree ul li div a.o_tree_l1{display:block;padding:10px 2px 10px 29px;z-index:9}.o_tree ul li div a.o_tree_l2{display:block;padding:10px 2px 10px 44px;z-index:9}.o_tree ul li div a.o_tree_l3{display:block;padding:10px 2px 10px 59px;z-index:9}.o_tree ul li div a.o_tree_l4{display:block;padding:10px 2px 10px 74px;z-index:9}.o_tree ul li div a.o_tree_l5{display:block;padding:10px 2px 10px 89px;z-index:9}.o_tree ul li div a.o_tree_l6{display:block;padding:10px 2px 10px 104px;z-index:9}.o_tree ul li div a.o_tree_l7{display:block;padding:10px 2px 10px 119px;z-index:9}.o_tree ul li div a.o_tree_l8{display:block;padding:10px 2px 10px 134px;z-index:9}.o_tree ul li div a.o_tree_l9{display:block;padding:10px 2px 10px 149px;z-index:9}.o_tree ul li div a.o_tree_l10{display:block;padding:10px 2px 10px 164px;z-index:9}.o_tree ul li div a.o_tree_l11{display:block;padding:10px 2px 10px 179px;z-index:9}.o_tree ul span.o_tree_leaf{display:none}.o_tree ul li .badge{float:right;font-size:70%}.o_tree ul li div.o_dnd_sibling{margin:0;padding:0;border-bottom:none}.o_tree ul li a.active{font-weight:bold}.o_tree ul li a.active_parent{color:black;font-weight:bold}.o_tree .o_dnd_item{cursor:move;z-index:100}.o_tree .o_dnd_proxy{zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=40);-moz-opacity:0.4;-khtml-opacity:0.4;opacity:0.4;background-color:yellow}.o_tree .o_dnd_item.o_dnd_over{background-color:#ffff60}.o_tree .o_dnd_sibling{height:3px;width:100%}.o_tree .o_dnd_sibling.o_dnd_over{background:transparent url(../openolat/images/arrow_dd.png) top left no-repeat}.o_tree .o_dnd_l1{margin-left:0 !important}.o_tree .o_dnd_l2{margin-left:1em !important}.o_tree .o_dnd_l3{margin-left:2em !important}.o_tree .o_dnd_l4{margin-left:3em !important}.o_tree .o_dnd_l5{margin-left:4em !important}.o_tree .o_dnd_l6{margin-left:5em !important}.o_tree .o_dnd_l7{margin-left:6em !important}.o_tree .o_dnd_l8{margin-left:7em !important}.o_tree .o_dnd_l9{margin-left:8em !important}.o_tree .o_dnd_l10{margin-left:9em !important}.o_tree .o_dnd_l11{margin-left:10em !important}.o_breadcrumb{position:relative}.o_breadcrumb .o_breadcrumb_close{float:right}.o_form .o_icon_mandatory{position:absolute;right:-0.25em;line-height:1.5em}.o_form.form-horizontal .o_icon_mandatory{position:relative;right:0;line-height:inherit;margin-left:0.25em}.o_form .o_error{margin-top:1px;margin-bottom:0;padding:10px}.o_form .o_picker_wrapper{position:absolute;top:0;right:0;height:34px;width:34px;text-align:right;vertical-align:middle;line-height:34px;font-size:22px;color:#428bca}.o_form .o_picker_wrapper:hover{color:#2a6496}.o_form .o_date{position:relative;padding-right:34px}.o_form .o_filepreview{margin-bottom:10px}.o_form .o_fileinput{cursor:pointer;position:relative}.o_form .o_fileinput .o_fakechooser{position:relative;padding-right:34px;z-index:1}.o_form .o_fileinput .o_realchooser{position:absolute;top:0;left:0;z-index:2;zoom:1;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=$percent)";filter:alpha(opacity=0);-moz-opacity:0;-khtml-opacity:0;opacity:0}.o_catalog .o_catalog_delete_img{position:relative;top:-0.5em}.o_button_toggle{border:1px solid #999;border-top-right-radius:9px;border-top-left-radius:9px;border-bottom-right-radius:9px;border-bottom-left-radius:9px;background:#eee;display:inline-block;height:18px;line-height:16px;font-size:16px;text-align:left;padding:0 0.5em 0 0;margin:0}.o_button_toggle i{color:#999;text-shadow:1px 0 2px rgba(0,0,0,0.25)}.o_button_toggle span{line-height:16px;vertical-align:top;font-size:60%;text-transform:uppercase}.o_button_toggle.o_on{text-align:right;padding:0 0 0 0.5em}.o_button_toggle.o_on i{color:#428bca;text-shadow:-1px 0 2px rgba(0,0,0,0.25)}.o_table_wrapper.o_table_flexi .o_table_body{margin-top:20px}.o_table_wrapper.o_table_flexi .table{margin-top:20px}.o_table_wrapper .o_table_search{max-width:50em}.o_table_wrapper .o_table_footer .o_table_buttons{text-align:center}.o_table_wrapper .o_table_footer .o_table_buttons input{margin-right:1em}.o_table_wrapper .o_table_footer .o_table_buttons input:last-child{margin-right:0}.o_table_wrapper .o_table_footer .o_table_pagination{text-align:center}.o_table_wrapper a.b_sorting{padding:0 20px 0 0;text-decoration:none;background:url("../openolat/images/arrow-resize-090.png") no-repeat center right}.o_table_wrapper a.b_sorting_asc{padding:0 20px 0 0;text-decoration:none;background:url("../openolat/images/arrow_up.png") no-repeat center right}.o_table_wrapper a.b_sorting_desc{padding:0 20px 0 0;text-decoration:none;background:url("../openolat/images/arrow_down.png") no-repeat center right}.o_table_wrapper .o_table{margin-bottom:0}.o_table_tools{margin-left:0.5em}.o_info .table-bordered td,.o_note .table-bordered td,.o_form .o_desc .table-bordered td,.o_course_run .o_statusinfo .table-bordered td,.o_course_stats .o_desc .table-bordered td,.o_important .table-bordered td,.o_bc_empty .table-bordered td,.o_course_run .o_no_scoreinfo .table-bordered td,.o_warning .table-bordered td,.o_error .table-bordered td,.o_togglebox_wrapper div.o_togglebox_content .table-bordered td,div.o_qti_item_itemfeedback .table-bordered td,o_note .table-bordered td,o_important .table-bordered td,o_warning .table-bordered td,o_error .table-bordered td{border-color:#333}#o_navbar_imclient #o_im_message,#o_navbar_imclient #o_im_status,#o_navbar_imclient #o_im_summary{position:relative;padding:15px 3px}#o_navbar_imclient #o_im_summary{padding-right:15px}#o_navbar_imclient #o_im_status div.o_chelp_wrapper{right:0.5em}.o_flag{position:relative;top:1px;display:inline-block;line-height:1;width:16px;height:16px;background-repeat:no-repeat;background-position:0 100%}.o_flag_en{background-image:url("../light/images/flags/gb.png")}.o_flag_de{background-image:url("../light/images/flags/de.png")}.o_flag_fr{background-image:url("../light/images/flags/fr.png")}.o_flag_it{background-image:url("../light/images/flags/it.png")}.o_flag_es{background-image:url("../light/images/flags/es.png")}.o_flag_da{background-image:url("../light/images/flags/dk.png")}.o_flag_cs{background-image:url("../light/images/flags/cz.png")}.o_flag_el{background-image:url("../light/images/flags/gr.png")}.o_flag_ee{background-image:url("../light/images/flags/ee.png")}.o_flag_ru{background-image:url("../light/images/flags/ru.png")}.o_flag_pl{background-image:url("../light/images/flags/pl.png")}.o_flag_zh_CN{background-image:url("../light/images/flags/cn.png")}.o_flag_zh_TW{background-image:url("../light/images/flags/tw.png")}.o_flag_lt{background-image:url("../light/images/flags/lt.png")}.o_flag_fa{background-image:url("../light/images/flags/ir.png")}.o_flag_pt_PT{background-image:url("../light/images/flags/pt.png")}.o_flag_pt_BR{background-image:url("../light/images/flags/br.png")}.o_flag_tr{background-image:url("../light/images/flags/tr.png")}.o_flag_hu{background-image:url("../light/images/flags/hu.png")}.o_flag_sq{background-image:url("../light/images/flags/al.png")}.o_flag_in{background-image:url("../light/images/flags/id.png")}.o_flag_ar{background-image:url("../light/images/flags/eg.png")}.o_flag_rm{background-image:url("../light/images/flags/rm.png")}.o_flag_af{background-image:url("../light/images/flags/za.png")}.o_flag_vi{background-image:url("../light/images/flags/vn.png")}.o_flag_mn{background-image:url("../light/images/flags/mn.png")}.o_flag_iw{background-image:url("../light/images/flags/il.png")}.o_flag_ko{background-image:url("../light/images/flags/kr.png")}.o_flag_nl_NL{background-image:url("../light/images/flags/nl.png")}.o_flag_jp{background-image:url("../light/images/flags/jp.png")}.o_flag_nb_NO{background-image:url("../light/images/flags/no.png")}.o_flag_et_EE{background-image:url("../light/images/flags/ee.png")}.o_flag_bg{background-image:url("../light/images/flags/bg.png")}.o_flag_hi_IN_ASIA{background-image:url("../light/images/flags/in.png")}.o_flag_ar_LB{background-image:url("../light/images/flags/lb.png")}.o_flag_gl_ES{background-image:url("../light/images/flags/galicia.png")}.o_rating .o_rating_title{font-weight:bold;font-size:75%}.o_rating .o_rating_items{white-space:nowrap}.o_rating .o_rating_items .o_icon{color:#f0ad4e}.o_rating .o_rating_items .o_icon:hover{color:#428bca}.o_rating .o_rating_items .o_legend{margin-left:1em;font-size:75%;line-height:1em}.o_rating .o_rating_explanation{font-size:75%}@media (max-width: 991px){.o_rating .o_rating_title,.o_rating .o_rating_explanation{display:none}}
 .o_comments{margin-top:20px}.o_comments .o_comment_wrapper .o_avatar{margin:0 1em 0 0}.d3chart .bar{shape-rendering:crispEdges}.d3chart .bar_default_light{fill:#7eb0db}.d3chart .bar_default{fill:#428bca}.d3chart .bar_default_dark{fill:#2a6496}.d3chart .axis{font:12px sans-serif}.d3chart .axis path,.d3chart .axis line{fill:none;stroke:#000;shape-rendering:crispEdges}.o_iframedisplay iframe{width:100%}.o_singlepage .o_edit{position:absolute;top:10px;right:37px}.o_content_popup{position:absolute;top:10px;right:12px}.o_module_cp_wrapper .o_tools{position:absolute;top:10px;right:12px;text-align:right;vertical-align:middle}.o_module_cp_wrapper .o_tools .o_search_wrapper{display:inline-block;position:relative;top:-2px}.o_bc_meta .o_thumbnail{width:200px;height:200px}.o_notifications_news_wrapper .o_notifications_news_subscription{margin:10px 0}.o_notifications_news_wrapper .o_notifications_news_subscription h4 i,.o_notifications_news_wrapper .o_notifications_news_subscription .o_cal .fc-header-title h2 i,.o_cal .fc-header-title .o_notifications_news_wrapper .o_notifications_news_subscription h2 i{display:none}.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_content{margin-left:1.5em;position:relative}.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_content .o_icon{position:absolute;left:-1.5em;line-height:1.5em;top:0}.o_notifications_news_wrapper .o_notifications_news_subscription .o_notifications_news_url{margin-left:1.5em}.o_noti{margin:6px 0 6px 12px}.o_noti .o_label{cursor:help}@media (max-width: 767px){.o_noti .o_label span{display:none}}
-.o_cal_toptoolbar{margin-bottom:6px}.o_cal_toptoolbar .o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_cal_toptoolbar_help{margin-right:12px}.o_togglebox_wrapper div.o_togglebox_content{position:relative;margin:0}.o_togglebox_wrapper div.o_togglebox_content .o_hide{position:absolute;bottom:0.5em;right:1em}.typeahead,.tt-query,.tt-hint{width:396px;height:30px;padding:8px 12px;font-size:24px;line-height:30px;border:2px solid #ccc;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;outline:none}.typeahead{background-color:#fff}.typeahead:focus{border:2px solid #0097cf}.tt-query{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.tt-hint{color:#999}.tt-dropdown-menu{width:422px;margin-top:12px;padding:8px 0;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.tt-suggestion{padding:3px 20px;font-size:18px;line-height:24px}.tt-suggestion.tt-cursor{color:#fff;background-color:#0097cf}.tt-suggestion p{margin:0}.o_visual{position:absolute;top:0;left:0;overflow:hidden;height:120px;width:180px;vertical-align:middle}@media (min-width: 768px) and (max-width: 991px){.o_visual{height:80px;width:120px}}@media (max-width: 767px){.o_visual{height:50px;width:75px}}.o_visual img{width:100%;height:auto}.o_visual .o_visual_not_available{width:100%;height:100%;background-image:url("../light/images/no_preview.png");background-repeat:no-repeat;background-position:50% 50%;background-size:contain}.o_coursetable.o_rendertype_custom .o_table_row{position:relative;border:1px solid #428bca;margin-bottom:10px}.o_coursetable.o_rendertype_custom .o_table_row .o_visual{border-right:1px solid #428bca}.o_coursetable.o_rendertype_custom .o_table_row .o_access{position:absolute;top:0;right:0;height:120px;width:180px;overflow:hidden;border-left:1px solid #428bca;padding-top:0.25em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score{padding:0 1em;height:20px;line-height:20px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score{position:relative;left:2px}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social{position:absolute;width:100%;bottom:32px;height:20px;padding-left:1em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper .o_rating .o_rating_title,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper .o_rating o_rating_legend,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper .o_rating .o_rating_explanation{display:none}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_comments{margin-left:1em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings{padding:0 0 0 1em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label{margin-bottom:1em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_methods{color:#5bc0de}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{position:absolute;display:block;bottom:0;width:90px;height:30px;line-height:30px;text-align:center}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book{right:0}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{right:90px}@media (min-width: 768px) and (max-width: 991px){.o_coursetable.o_rendertype_custom .o_table_row .o_access{height:80px;width:120px}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_label{display:none}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{width:60px}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{right:60px}}@media (max-width: 767px){.o_coursetable.o_rendertype_custom .o_table_row .o_access{display:none}}.o_coursetable.o_rendertype_custom .o_table_row .o_meta{height:120px;margin:0 180px 0 180px;position:relative;padding:1em 0.5em 0.25em 1em;overflow:hidden}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title{margin:0;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title a{display:block}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_author{margin-top:0.5em;line-height:1em;font-size:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle{position:absolute;top:5px;right:40px;font-size:90%;line-height:1em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_desc{margin-top:0.5em}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_bookmark{position:absolute;top:-1px;right:15px}@media (min-width: 768px) and (max-width: 991px){.o_coursetable.o_rendertype_custom .o_table_row .o_meta{height:80px;margin:0 120px}}@media (max-width: 767px){.o_coursetable.o_rendertype_custom .o_table_row .o_meta{height:50px;margin:0 0 0 75px;padding:0 0 0 1em}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title{line-height:50px}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_author,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_bookmark,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_desc{display:none}}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_go_xs{position:absolute;top:0;right:0;padding:0 1em;height:50px;line-height:50px}.o_coursetable.o_rendertype_classic .o_rating_explanation{display:none}.o_coursetable.o_rendertype_classic .o_start,.o_coursetable.o_rendertype_classic .o_book{white-space:nowrap}.o_coursetable.o_rendertype_classic .o_repoentry_type{color:#555}.o_coursetable.o_rendertype_classic .o_repoentry_ac{color:#555}.o_catalog .o_level{position:relative;margin-bottom:10px;padding:0;border-top:1px solid #428bca;border-bottom:1px solid #428bca}.o_catalog .o_level .o_visual{height:180px}.o_catalog .o_level .o_meta{position:relative;min-height:180px;height:180px;overflow:hidden;margin:0 0 0 180px;padding:1em 0.5em 0.5em 2em}.o_catalog .o_level .o_meta .o_title{margin:0}.o_catalog .o_level .o_meta .o_title a{display:block}.o_catalog .o_level .o_meta .o_desc{padding:1em 0 0.5em 0}@media (min-width: 768px) and (max-width: 991px){.o_catalog .o_level .o_visual{height:120px}.o_catalog .o_level .o_meta{min-height:120px;height:120px;margin:0 0 0 120px}}@media (max-width: 767px){.o_catalog .o_level .o_visual{height:75px}.o_catalog .o_level .o_meta{min-height:75px;height:75px;margin:0 0 0 75px;padding:0 0 0 1em}.o_catalog .o_level .o_meta .o_title{line-height:75px}.o_catalog .o_level .o_meta .o_desc{display:none}}.o_catalog .o_sublevels{position:relative;margin-bottom:20px}.o_catalog .o_sublevels .o_sublevel{position:relative;margin:0 20px 20px 0;width:180px}.o_catalog .o_sublevels .o_sublevel:last-child{margin-right:0}.o_catalog .o_sublevels .o_sublevel .o_visual{border:1px solid #428bca;position:relative;height:180px}.o_catalog .o_sublevels .o_sublevel .o_meta{position:absolute;left:0;bottom:0;width:100%;border:1px solid #428bca;border-top:0;background-color:rgba(255,255,255,0.8)}.o_catalog .o_sublevels .o_sublevel .o_meta .o_title{margin:0;text-align:center;line-height:2em;height:2em;width:100%;overflow:hidden}.o_catalog .o_sublevels .o_sublevel .o_meta .o_title a{display:block}@media (min-width: 768px) and (max-width: 991px){.o_catalog .o_sublevels .o_sublevel{width:120px;margin:0 10px 10px 0}.o_catalog .o_sublevels .o_sublevel .o_visual{height:120px}.o_catalog .o_sublevels .o_sublevel .o_title{font-size:90%}}@media (max-width: 767px){.o_catalog .o_sublevels .o_sublevel{width:120px;margin:0 1px 1px 0}.o_catalog .o_sublevels .o_sublevel .o_visual{height:120px;width:120px}.o_catalog .o_sublevels .o_sublevel .o_title{font-size:90%}}
+.o_cal_toptoolbar{margin-bottom:6px}.o_cal_toptoolbar .o_cal_toptoolbar_sub,.o_cal_toptoolbar .o_cal_toptoolbar_help{margin-right:12px}.o_feed .o_subscription a{margin-right:1.5em}.o_feed .o_subscription form{margin-top:6px}.o_togglebox_wrapper div.o_togglebox_content{position:relative;margin:0}.o_togglebox_wrapper div.o_togglebox_content .o_hide{position:absolute;bottom:0.5em;right:1em}.typeahead,.tt-query,.tt-hint{width:396px;height:30px;padding:8px 12px;font-size:24px;line-height:30px;border:2px solid #ccc;-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;outline:none}.typeahead{background-color:#fff}.typeahead:focus{border:2px solid #0097cf}.tt-query{-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075);box-shadow:inset 0 1px 1px rgba(0,0,0,0.075)}.tt-hint{color:#999}.tt-dropdown-menu{width:422px;margin-top:12px;padding:8px 0;background-color:#fff;border:1px solid #ccc;border:1px solid rgba(0,0,0,0.2);-webkit-border-radius:8px;-moz-border-radius:8px;border-radius:8px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,0.2);-moz-box-shadow:0 5px 10px rgba(0,0,0,0.2);box-shadow:0 5px 10px rgba(0,0,0,0.2)}.tt-suggestion{padding:3px 20px;font-size:18px;line-height:24px}.tt-suggestion.tt-cursor{color:#fff;background-color:#0097cf}.tt-suggestion p{margin:0}.o_visual{position:absolute;top:0;left:0;overflow:hidden;height:120px;width:180px;vertical-align:middle}@media (min-width: 768px) and (max-width: 991px){.o_visual{height:80px;width:120px}}@media (max-width: 767px){.o_visual{height:50px;width:75px}}.o_visual img{width:100%;height:auto}.o_visual .o_visual_not_available{width:100%;height:100%;background-image:url("../light/images/no_preview.png");background-repeat:no-repeat;background-position:50% 50%;background-size:contain}.o_coursetable.o_rendertype_custom .o_table_row{position:relative;border:1px solid #428bca;margin-bottom:10px}.o_coursetable.o_rendertype_custom .o_table_row .o_visual{border-right:1px solid #428bca}.o_coursetable.o_rendertype_custom .o_table_row .o_access{position:absolute;top:0;right:0;height:120px;width:180px;overflow:hidden;border-left:1px solid #428bca;padding-top:0.25em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_state,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score{padding:0 1em;height:20px;line-height:20px;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score{position:relative;left:2px}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social{position:absolute;width:100%;bottom:32px;height:20px;padding-left:1em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper .o_rating .o_rating_title,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper .o_rating o_rating_legend,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_rating_wrapper .o_rating .o_rating_explanation{display:none}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_social .o_comments{margin-left:1em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings{padding:0 0 0 1em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_label{margin-bottom:1em}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_bookings .o_methods{color:#5bc0de}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{position:absolute;display:block;bottom:0;width:90px;height:30px;line-height:30px;text-align:center}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book{right:0}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{right:90px}@media (min-width: 768px) and (max-width: 991px){.o_coursetable.o_rendertype_custom .o_table_row .o_access{height:80px;width:120px}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_score,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_comments,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_label{display:none}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_start,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_book,.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{width:60px}.o_coursetable.o_rendertype_custom .o_table_row .o_access .o_details{right:60px}}@media (max-width: 767px){.o_coursetable.o_rendertype_custom .o_table_row .o_access{display:none}}.o_coursetable.o_rendertype_custom .o_table_row .o_meta{height:120px;margin:0 180px 0 180px;position:relative;padding:1em 0.5em 0.25em 1em;overflow:hidden}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title{margin:0;position:relative;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title a{display:block}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_author{margin-top:0.5em;line-height:1em;font-size:90%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle{position:absolute;top:5px;right:40px;font-size:90%;line-height:1em;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_desc{margin-top:0.5em}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_bookmark{position:absolute;top:-1px;right:15px}@media (min-width: 768px) and (max-width: 991px){.o_coursetable.o_rendertype_custom .o_table_row .o_meta{height:80px;margin:0 120px}}@media (max-width: 767px){.o_coursetable.o_rendertype_custom .o_table_row .o_meta{height:50px;margin:0 0 0 75px;padding:0 0 0 1em}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_title{line-height:50px}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_author,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_bookmark,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_lifecycle,.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_desc{display:none}}.o_coursetable.o_rendertype_custom .o_table_row .o_meta .o_go_xs{position:absolute;top:0;right:0;padding:0 1em;height:50px;line-height:50px}.o_coursetable.o_rendertype_classic .o_rating_explanation{display:none}.o_coursetable.o_rendertype_classic .o_start,.o_coursetable.o_rendertype_classic .o_book{white-space:nowrap}.o_coursetable.o_rendertype_classic .o_repoentry_type{color:#555}.o_coursetable.o_rendertype_classic .o_repoentry_ac{color:#555}.o_catalog .o_level{position:relative;margin-bottom:10px;padding:0;border-top:1px solid #428bca;border-bottom:1px solid #428bca}.o_catalog .o_level .o_visual{height:180px}.o_catalog .o_level .o_meta{position:relative;min-height:180px;height:180px;overflow:hidden;margin:0 0 0 180px;padding:1em 0.5em 0.5em 2em}.o_catalog .o_level .o_meta .o_title{margin:0}.o_catalog .o_level .o_meta .o_title a{display:block}.o_catalog .o_level .o_meta .o_desc{padding:1em 0 0.5em 0}@media (min-width: 768px) and (max-width: 991px){.o_catalog .o_level .o_visual{height:120px}.o_catalog .o_level .o_meta{min-height:120px;height:120px;margin:0 0 0 120px}}@media (max-width: 767px){.o_catalog .o_level .o_visual{height:75px}.o_catalog .o_level .o_meta{min-height:75px;height:75px;margin:0 0 0 75px;padding:0 0 0 1em}.o_catalog .o_level .o_meta .o_title{line-height:75px}.o_catalog .o_level .o_meta .o_desc{display:none}}.o_catalog .o_sublevels{position:relative;margin-bottom:20px}.o_catalog .o_sublevels .o_sublevel{position:relative;margin:0 20px 20px 0;width:180px}.o_catalog .o_sublevels .o_sublevel:last-child{margin-right:0}.o_catalog .o_sublevels .o_sublevel .o_visual{border:1px solid #428bca;position:relative;height:180px}.o_catalog .o_sublevels .o_sublevel .o_meta{position:absolute;left:0;bottom:0;width:100%;border:1px solid #428bca;border-top:0;background-color:rgba(255,255,255,0.8)}.o_catalog .o_sublevels .o_sublevel .o_meta .o_title{margin:0;text-align:center;line-height:2em;height:2em;width:100%;overflow:hidden}.o_catalog .o_sublevels .o_sublevel .o_meta .o_title a{display:block}@media (min-width: 768px) and (max-width: 991px){.o_catalog .o_sublevels .o_sublevel{width:120px;margin:0 10px 10px 0}.o_catalog .o_sublevels .o_sublevel .o_visual{height:120px}.o_catalog .o_sublevels .o_sublevel .o_title{font-size:90%}}@media (max-width: 767px){.o_catalog .o_sublevels .o_sublevel{width:120px;margin:0 1px 1px 0}.o_catalog .o_sublevels .o_sublevel .o_visual{height:120px;width:120px}.o_catalog .o_sublevels .o_sublevel .o_title{font-size:90%}}
 .o_repo_details{position:relative}.o_repo_details .o_lead .o_media{margin-left:2em;margin-bottom:2em}.o_repo_details .o_lead h1 i{display:none}.o_repo_details .o_overview i{margin-right:0.5em}.o_repo_details .o_overview div{margin-bottom:0.25em}.o_repo_details .o_start,.o_repo_details .o_book{margin:2em 0}.o_repo_details .o_social .o_comments{margin-left:1em}@media (max-width: 767px){.o_repo_details .o_lead p{font-size:16px}.o_repo_details .o_lead .o_media{margin-top:0}}@media (max-width: 613px){.o_repo_details .o_subcolumn{width:100%}}
-.o_midpub{color:green}.o_midwarn{color:orange}.o_miderr{color:red}.o_passed{font-weight:bold}.o_passed th{color:#333}.o_failed{font-weight:bold}.o_failed th{color:#333}.o_unknown{font-weight:bold}.o_unknown th{color:#333}.o_course_run .o_toc .o_entry .o_shorttitle{border-bottom:1px solid #999}.o_course_run .o_toc .o_entry .o_displaytitle{margin-top:5px}.o_course_run .o_toc .o_entry .o_objectives{margin-top:10px;font-style:italic}.o_st_peekview ul li{margin-bottom:0.5em}.o_cl_line{margin-bottom:10px;padding-bottom:5px}.o_cl_line.o_even{background-color:#f9f9f9}.o_course_editor .o_node_config{margin-bottom:20px}table.table.o_qti_item_kprim>thead>tr>th,table.table.o_qti_item_kprim>tbody>tr>td{border:none}td.o_qti_item_kprim_input,th.o_qti_item_kprim_input{text-align:center}div.o_qti_item_itemfeedback{background-color:#ffffff;border-color:#000000}.d3chart .bar_green{fill:#9dd53a}.d3chart .bar_red{fill:#f85032}.d3chart .bar_grey{fill:lightgrey}div.o_qti_statistics ul{list-style-type:none;padding:0;margin:0;font-size:90%}div.o_qti_statistics ul strong{font-weight:normal}div.o_qti_statistics ul li{padding-left:48px;margin-left:0;margin-bottom:10px}div.o_qti_statistics ul li.o_qti_statistics-ncorrect:before{font-size:125%;content:'\2A2F\00A0\00A0'}div.o_qti_statistics ul li.o_qti_statistics-correct:before{font-size:125%;content:'\2713\00A0\00A0'}div.o_qti_statistics ul li.o_qti_statistics-kplus:before{font-size:125%;content:'\2713\00A0\2A2F\00A0\00A0'}div.o_qti_statistics ul li.o_qti_statistics-kminus:before{font-size:125%;content:'\2A2F\00A0\2713\00A0\00A0'}div.o_qti_statistics ul li img{vertical-align:top}div.o_qti_statistics table.o_qti_statistics_figures tr{float:left}div.o_qti_statistics table.o_qti_statistics_figures tr:nth-child(2n+1){clear:left;padding-right:20px}div.o_qti_statistics table.o_qti_statistics_figures td{width:200px;padding-left:0}div.o_qti_statistics table.o_qti_statistics_figures td+td{width:100px}div.o_qti_statistics .o_qti_statistics_answer{background:#F5F5F5;padding:1px 2px;width:90%}div.o_qti_statistics div.o_qti_statistics_legend{padding-top:10px;width:470px;border:1px solid #ddd;border-radius:4px}div.o_qti_statistics div.o_qti_statistics_legend ul li .bar_green{background-color:#9dd53a}div.o_qti_statistics div.o_qti_statistics_legend ul li .bar_red{background-color:#f85032}div.o_qti_statistics div.o_qti_statistics_legend ul li .bar_grey{background-color:lightgrey}.o_qti_print div.o_qti_statistics{width:680px}@media print{div.o_qti_statistics{width:680px}}#o_dev_tool #o_dev_tool_mode{width:1em;height:1em;float:left;border:1px solid #000;margin-right:5px}a.o_dev{position:absolute;left:0;top:0;z-index:4000;background:#f0ad4e;border:1px solid #d59645;border-top:none;border-left:none;border-radius:0 0 4px 0;color:#fff}a.o_dev:hover{color:#d9534f}.o_dev_w{margin:1px}.o_dev_w .o_dev_h{color:#000;font-size:8px;line-height:10px;margin:0}.o_dev_w .o_dev_h span{background:#f4c37d;border:1px solid #f0ad4e;border-bottom:0}.o_dev_w .o_dev_c{position:relative;border:1px dotted #eee}.o_dev_w .o_dev_c .o_dev_i{position:absolute;top:0px;left:24px;height:auto;width:auto;padding:5px;border:1px solid black;display:none;margin:0px;z-index:999;font-size:11px;background-color:#BBF}.o_dev_w.o_dev_m>.o_dev_c{border:1px solid #f0ad4e;margin:0px;background-color:#f8e9d4}
+.o_midpub{color:green}.o_midwarn{color:orange}.o_miderr{color:red}.o_passed{font-weight:bold}.o_passed th{color:#333}.o_failed{font-weight:bold}.o_failed th{color:#333}.o_unknown{font-weight:bold}.o_unknown th{color:#333}.o_course_run .o_toc .o_entry .o_shorttitle{border-bottom:1px solid #999}.o_course_run .o_toc .o_entry .o_displaytitle{margin-top:5px}.o_course_run .o_toc .o_entry .o_objectives{margin-top:10px;font-style:italic}.o_st_peekview ul li{margin-bottom:0.5em}.o_cl_line{margin-bottom:10px;padding-bottom:5px}.o_cl_line.o_even{background-color:#f9f9f9}.o_cmembers .o_cmember{margin:12px 0}.o_cmembers .o_cmember .o_portrait{margin-right:6px}.o_cmembers .o_cmember .o_cmember_info_wrapper{line-height:30px}.o_cmembers .o_cmember .o_cmember_info_wrapper .o_mail{margin-left:6px}.o_course_editor .o_node_config{margin-bottom:20px}table.table.o_qti_item_kprim>thead>tr>th,table.table.o_qti_item_kprim>tbody>tr>td{border:none}td.o_qti_item_kprim_input,th.o_qti_item_kprim_input{text-align:center}div.o_qti_item_itemfeedback{background-color:#ffffff;border-color:#000000}.d3chart .bar_green{fill:#9dd53a}.d3chart .bar_red{fill:#f85032}.d3chart .bar_grey{fill:lightgrey}div.o_qti_statistics ul{list-style-type:none;padding:0;margin:0;font-size:90%}div.o_qti_statistics ul strong{font-weight:normal}div.o_qti_statistics ul li{padding-left:48px;margin-left:0;margin-bottom:10px}div.o_qti_statistics ul li.o_qti_statistics-ncorrect:before{font-size:125%;content:'\2A2F\00A0\00A0'}div.o_qti_statistics ul li.o_qti_statistics-correct:before{font-size:125%;content:'\2713\00A0\00A0'}div.o_qti_statistics ul li.o_qti_statistics-kplus:before{font-size:125%;content:'\2713\00A0\2A2F\00A0\00A0'}div.o_qti_statistics ul li.o_qti_statistics-kminus:before{font-size:125%;content:'\2A2F\00A0\2713\00A0\00A0'}div.o_qti_statistics ul li img{vertical-align:top}div.o_qti_statistics table.o_qti_statistics_figures tr{float:left}div.o_qti_statistics table.o_qti_statistics_figures tr:nth-child(2n+1){clear:left;padding-right:20px}div.o_qti_statistics table.o_qti_statistics_figures td{width:200px;padding-left:0}div.o_qti_statistics table.o_qti_statistics_figures td+td{width:100px}div.o_qti_statistics .o_qti_statistics_answer{background:#F5F5F5;padding:1px 2px;width:90%}div.o_qti_statistics div.o_qti_statistics_legend{padding-top:10px;width:470px;border:1px solid #ddd;border-radius:4px}div.o_qti_statistics div.o_qti_statistics_legend ul li .bar_green{background-color:#9dd53a}div.o_qti_statistics div.o_qti_statistics_legend ul li .bar_red{background-color:#f85032}div.o_qti_statistics div.o_qti_statistics_legend ul li .bar_grey{background-color:lightgrey}.o_qti_print div.o_qti_statistics{width:680px}@media print{div.o_qti_statistics{width:680px}}#o_dev_tool #o_dev_tool_mode{width:1em;height:1em;float:left;border:1px solid #000;margin-right:5px}a.o_dev{position:absolute;left:0;top:0;z-index:4000;background:#f0ad4e;border:1px solid #d59645;border-top:none;border-left:none;border-radius:0 0 4px 0;color:#fff}a.o_dev:hover{color:#d9534f}.o_dev_w{margin:1px}.o_dev_w .o_dev_h{color:#000;font-size:8px;line-height:10px;margin:0}.o_dev_w .o_dev_h span{background:#f4c37d;border:1px solid #f0ad4e;border-bottom:0}.o_dev_w .o_dev_c{position:relative;border:1px dotted #eee}.o_dev_w .o_dev_c .o_dev_i{position:absolute;top:0px;left:24px;height:auto;width:auto;padding:5px;border:1px solid black;display:none;margin:0px;z-index:999;font-size:11px;background-color:#BBF}.o_dev_w.o_dev_m>.o_dev_c{border:1px solid #f0ad4e;margin:0px;background-color:#f8e9d4}