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 8c41629272837cdf0bd5bcd5db842372c9125eca..ad7db41500a1faa29eb6d1b6f04d0bd67425a01e 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,7 +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.control.generic.folder.FolderHelper;
+import org.olat.core.gui.util.CSSHelper;
 import org.olat.core.id.OLATResourceable;
 import org.olat.core.id.context.ContextEntry;
 import org.olat.core.id.context.StateEntry;
@@ -209,9 +209,8 @@ public class CheckListRunController extends FormBasicController implements Contr
 			String filename = checkbox.getFilename();
 			String name = "file_" + checkbox.getCheckboxId();
 			downloadLink = uifactory.addFormLink(name, "download", filename, null, formLayout, Link.LINK | Link.NONTRANSLATED);
-			String type = FolderHelper.extractFileType(filename, getLocale());
-			if (!FolderHelper.isKnownFileType(type)) { type = "file"; }
-			downloadLink.setElementCssClass("b_with_small_icon_left b_filetype_" + type);
+			String css = CSSHelper.createFiletypeIconCssClassFor(filename);
+			downloadLink.setIconLeftCSS("o_icon o_icon-fw " + css);
 			((Link)downloadLink.getComponent()).setTarget("_blank");
 		}
 		
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 042952595ab627376110043d3180201b104dfcc5..dd2304610b290861fa76084348b87bf742956cb5 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,93 +1,114 @@
-#if($hasScoreField || $hasPassedField || $hasCommentField)
-<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($hasScoreField || $hasPassedField)
+	<div class="panel panel-default o_personal">
+	  	<div class="panel-heading">$r.translate("score.title")</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><td>$r.translate("passed.cut"):</td>
-					<td>$passedCutValue</td></tr>
+			<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
+				</td>
+			</tr>
 			#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
+		</tbody>
+		</table>				
+	</div>
+#end
 
-	#if ($hasCommentField)
-		<h4>$r.translate("comment.title")</h4>
-		#if($comment)
-			$comment
-		#else
-			<div class="o_course_run_scoreinfo_noinfo">$r.translate("comment.nocomment")</div>
-		#end
-	#end
-</div>
+#if ($hasCommentField)		
+	<div class="panel panel-default o_comment">
+	  	<div class="panel-heading">$r.translate("comment.title")</div>
+		<div class="panel-body">
+			#if($comment)
+				$comment
+			#else
+				<div class="o_noinfo">$r.translate("comment.nocomment")</div>
+			#end
+  		</div>
+	</div>
 #end
 
+
 #if($infoTextUser)
-	<div class="o_course_run_disclaimer">
-		<h4>$r.translate("info.title")</h4>
-		$r.formatLatexFormulas($infoTextUser)
+	<div class="panel panel-default o_disclaimer">
+	  	<div class="panel-heading">$r.translate("info.title")</div>
+		<div class="panel-body">
+			$r.formatLatexFormulas($infoTextUser)
+  		</div>
 	</div>
 #end
 
 #if($dueDate)
-	<div class="o_course_run_deadline">
-		<p>$r.translate("run.due.date.desc")</p>
-		<p class="o_cl_duedate #if($afterDueDate) o_cl_duedate_passed #end">$r.translate("run.due.date", $r.formatDateAndTime($dueDate))</p>
+	<div class="panel panel-default o_duedate #if($afterDueDate) o_duedate_passed #end">
+	  	<div class="panel-heading">$r.translate("config.due.date")</div>
+		<div class="panel-body">
+			<p>
+				$r.translate("run.due.date.desc")
+			</p>
+			<p class="#if($afterDueDate) o_passed #else o_failed #end">
+				$r.translate("run.due.date", $r.formatDateAndTime($dueDate))
+			</p>
+  		</div>
 	</div>
 #end
 
-<div class="o_cl">
-<div class="b_clearfix">
-	<div class="b_c25l"><h5>$r.translate("run.mark")</h5></div>
-	<div class="b_c75r"><h5>$r.translate("run.info")</h5></div>
+<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="b_clearfix o_cl_line #if($velocityCount %2 == 0) o_even #else o_odd #end">
-		<div class="b_c25l o_cl_cb">
+	<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="b_c75r">
-			<div class="b_cl_title">
-				<b>$checkbox.title</b> #if($withScore && $checkbox.pointsAvailable) $r.translate("box.points.info", $checkbox.points) #end
-			</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>
+				#end
+			</h5>
 			#if($checkbox.description)
 				<div class="o_cl_desc">$checkbox.description</div>
 			#end
 			#if($checkbox.checkbox.filename)
-				<div class="o_cl_file">Download: $r.render($checkbox.downloadName)</div>
+				<div class="o_cl_file">$r.render($checkbox.downloadName)</div>
 			#end
 		</div>
 	</div>
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 1bea31332769785c81d15d38bbf77dc59c8838ad..da2328d15f39ed3ce9286bb08bc7c3a40df2dc29 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
@@ -1,101 +1,109 @@
 #if ($enableScoreInfo)
-	<div class="o_course_run_scoreinfo">
-		<h4>$r.translate("score.title")</h4>		
-		<table>
-			<tbody>				
-		#if ($hasResults)
-				<tr>
-					<td>			
-						$r.translate("score.yourscore"): 
-					</td>
+	#if ($hasResults)
+		<div class="panel panel-default o_personal">
+		  	<div class="panel-heading">$r.translate("score.title")</div>
+			<table class="table">
+			<tbody>
+				<tr class="o_attempts">
+					<th>$r.translate("attempts.yourattempts")</th>
 					<td>
-						$score
-					</td>
-				</tr>
-				<tr>
-					<td>			
-						$r.translate("passed.yourpassed"): 
-					</td>
+						$attempts
+					</td> 
+				</tr> 
+				<tr class="o_score">
+					<th>$r.translate("score.yourscore")</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
-					</td>
-				</tr>
-				#if ($comment)
-				<tr>
-					<td>			
-						$r.translate("comment.yourcomment"): 
-					</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>
-						$comment
+					#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.translate("passed.noinfo")
+					#end
 					</td>
 				</tr>
-				#end
-			</tbody>
-		</table>				
-			
-		#else
 			</tbody>
-		</table>
-		<div class="o_course_run_scoreinfo_noinfo">$r.translate("score.noscoreinfoyet")</div>
-		#end
-	</div>##END o_course_run_scoreinfo
-#end
-
-#if($showResultsOnHomePage && $attempts >0)	
-	<h4>$r.translate("showResults.title")</h4> 
-	  	#if($showResultsVisible)
-			#if ($showResults)
-				$r.render("command.hideResults")					  				  
-			#else
-				$r.render("command.showResults")
-			#end
-			
-	       	#if ($showResults)
-				#if ($displayreporting)
-					<br />
-					<h4>$r.translate("showResults.detailed")</h4>
-					<div class="b_small">
-						$!resreporting
-					</div>
-			    #end
-	       	#end
-	  	#else
-		  	$visibilityPeriod
+			</table>				
+		</div>
+	
+		#if ($comment)		
+		<div class="panel panel-default o_comment">
+		  	<div class="panel-heading">$r.translate("comment.yourcomment")</div>
+			<div class="panel-body">
+				$comment
+	  		</div>
+		</div>
 		#end
-#end ##END of if showResultsOnHomePage ...
-
-#if ($showResultsVisible && $showResults)
 
-#else
-	#if ($hasDisc)
-		<div class="o_course_run_disclaimer">
-			$r.render("disc")
+	#else
+		<div class="o_no_scoreinfo">
+			$r.translate("score.noscoreinfoyet")
 		</div>
 	#end
+#end
 	
-	<div class="o_course_run_statusinfo">
-		<p>
-			$r.translate("Intro.self")
-		</p>
-		<p>	
-			$r.translate("info.selfassessment")
-		</p>
+#if($showResultsOnHomePage && $attempts >0)	
+	<div class="panel panel-default o_results">
+	  	<div class="panel-heading">$r.translate("showResults.title")</div>
+		<div class="panel-body">
+		  	#if($showResultsVisible)
+				#if ($showResults)
+					$r.render("command.hideResults")					  				  
+				#else
+					$r.render("command.showResults")
+				#end				
+		       	#if ($showResults)
+					#if ($displayreporting)
+						<br />
+						<h4>$r.translate("showResults.detailed")</h4>
+						<div id="o_qti_results" class="small">
+							$!resreporting
+						</div>
+				    #end
+		       	#end
+		  	#else
+			  	$visibilityPeriod
+			#end
+  		</div>
 	</div>
-			
-	<div class="b_button_group">
-		$r.render("start")
-	</div>	
 #end
+
+#if ($hasDisc)
+<div class="panel panel-default o_disclaimer">
+  	<div class="panel-heading">$r.translate("disclaimer")</div>
+	<div class="panel-body">
+	$r.render("disc")
+ 		</div>
+</div>
+#end
+
+<div class="o_statusinfo">
+	<p>
+		$r.translate("Intro.self")
+	</p>
+	<p>	
+		$r.translate("info.selfassessment")
+	</p>
+</div>
+		
+<div class="o_button_group">
+	$r.render("start")
+</div>	
 	
 #if($changeLog)
-	<p />	
+<div class=o_box">
 	#o_togglebox_start("o_course_run_changelog" $r.translate("changelog.title"))
-	<pre>
+    <pre class="small">	
 $changeLog
 	</pre>
 	#o_togglebox_end()
+</div>
 #end
\ No newline at end of file
diff --git a/src/main/java/org/olat/course/nodes/iq/_content/surveyrun.html b/src/main/java/org/olat/course/nodes/iq/_content/surveyrun.html
index 5aa3892809bb3f0f9a26a639305eb0932b1e7ecb..90107e6e2ef1dfa2da6d60b4be30d7d4f0a18966 100644
--- a/src/main/java/org/olat/course/nodes/iq/_content/surveyrun.html
+++ b/src/main/java/org/olat/course/nodes/iq/_content/surveyrun.html
@@ -1,35 +1,38 @@
-	#if ($hasDisc)
-		<div class="o_course_run_disclaimer">
-			$r.render("disc")
-		</div>
-	#end
+#if ($hasDisc)
+	<div class="panel panel-default o_disclaimer">
+	  	<div class="panel-heading">$r.translate("disclaimer")</div>
+		<div class="panel-body">
+		$r.render("disc")
+  		</div>
+	</div>
+#end
 	
 	
-	#if ($attempts == 0)
-		<div class="o_course_run_statusinfo">
-			<p>
-				$r.translate("Intro.surv")	
-			</p>
-			<p>	
-				$r.translate("info.survey")
-			</p>
-		</div>
-				
-		<div class="b_button_group">
-			$r.render("start")
-		</div>	
-	#else
-		<div class="o_course_run_statusinfo">
-			$r.translate("info.survey.alreadydone")
-		</div>
-	#end
+#if ($attempts == 0)
+	<div class="o_statusinfo">
+		<p>
+			$r.translate("Intro.surv")	
+		</p>
+		<p>	
+			$r.translate("info.survey")
+		</p>
+	</div>
+			
+	<div class="o_button_group">
+		$r.render("start")
+	</div>	
+#else
+	<div class="o_statusinfo">
+		$r.translate("info.survey.alreadydone")
+	</div>
+#end
 	
 	
-	#if($changeLog)
-		<p />	
-		#o_togglebox_start("o_course_run_changelog" $r.translate("changelog.title"))
-		<pre>
+#if($changeLog)
+	<p />	
+	#o_togglebox_start("o_course_run_changelog" $r.translate("changelog.title"))
+	<pre class="small">
 $changeLog
-		</pre>
-		#o_togglebox_end()
-	#end
\ No newline at end of file
+	</pre>
+	#o_togglebox_end()
+#end
\ No newline at end of file
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 bde7fecb550fa5c71c505892c40c94d2b4907f68..86d9ac9dc6186bcc2703fbf03c50e3050cb9cf23 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
@@ -16,15 +16,11 @@
 				</tr> 
 				<tr class="o_attempts">
 					<th>$r.translate("attempts.yourattempts")</th>
-					<td>
-						$attempts
-					</td> 
+					<td>$attempts</td> 
 				</tr> 
 				<tr class="o_score">
 					<th>$r.translate("score.yourscore")</th>
-					<td>
-						$score
-					</td> 
+					<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>
@@ -138,19 +134,21 @@
 #end
 
 #if ($log && $showChangelog)
-    <p /> 
+<div class=o_box">
     #o_togglebox_start("o_course_run_log" $r.translate("log.title"))
     <pre class="small">
 $log
     </pre>
     #o_togglebox_end()
-  #end
+</div>    
+#end
     
-  #if($changeLog)
-    <p /> 
+#if($changeLog)
+<div class=o_box">
     #o_togglebox_start("o_course_run_changelog" $r.translate("changelog.title"))
     <pre class="small">
 $changeLog
     </pre>
     #o_togglebox_end()
-  #end
\ No newline at end of file
+</div>
+#end
\ No newline at end of file
diff --git a/src/main/webapp/static/themes/light/modules/_course.scss b/src/main/webapp/static/themes/light/modules/_course.scss
index 60748ec0d72f26437c8a8b7095f4b653018453ee..4995de9b50ba23d2a88165ad3c7c08607ff27098 100644
--- a/src/main/webapp/static/themes/light/modules/_course.scss
+++ b/src/main/webapp/static/themes/light/modules/_course.scss
@@ -59,6 +59,9 @@
 		color: $text-color		
 	}
 }		
+.o_noinfo {
+	@extend .text-muted;
+}		
 
 
 .o_course_run {
@@ -85,7 +88,6 @@
 	.o_statusinfo {
 		@extend .o_note;
 	}
-	
 }
 
 .o_st_peekview {
@@ -94,4 +96,13 @@
 			margin-bottom: 0.5em;
 		}
 	}
-}
\ No newline at end of file
+}
+
+.o_cl_line {
+	margin-bottom: $padding-large-vertical;
+	padding-bottom: $padding-small-vertical;
+	&.o_even {
+		background-color: $table-bg-accent;
+	}
+}
+
diff --git a/src/main/webapp/static/themes/light/theme.css b/src/main/webapp/static/themes/light/theme.css
index 6106b793b1f2b71705e897934b5b848ddf590058..46f6e871a388dd019346e76d70f6ab5e27922967 100644
--- a/src/main/webapp/static/themes/light/theme.css
+++ b/src/main/webapp/static/themes/light/theme.css
@@ -23,7 +23,7 @@
  *  @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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h1 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h2 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h3 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h4 .o_togglebox_hide,.o_cal .fc-header-title h2 .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .o_cal .fc-header-title h2 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h5 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h6 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h1 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h2 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h3 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h4 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h5 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h6 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h1 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h1 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h2 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h2 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h3 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h3 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h4 .o_togglebox_hide,.o_cal .fc-header-title h2 .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .o_cal .fc-header-title h2 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h4 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h5 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h5 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox h6 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox .h6 .o_togglebox_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 .o_togglebox_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_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox blockquote .o_togglebox_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 .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox blockquote .o_togglebox_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 .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .blockquote-reverse .o_togglebox_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 .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox blockquote.pull-right .o_togglebox_hide:before,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_hide:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox #o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_hide:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_hide:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_hide:before,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox blockquote.o_noti .o_togglebox_hide:before,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_repo_details .o_lead blockquote.o_media .o_togglebox_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 .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .blockquote-reverse .o_togglebox_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 .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox blockquote.pull-right .o_togglebox_hide:after,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_hide:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox #o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_hide:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_hide:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_hide:after,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox blockquote.o_noti .o_togglebox_hide:after,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_repo_details .o_lead blockquote.o_media .o_togglebox_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}}
+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 .o_togglebox_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 .o_togglebox_hide,.o_togglebox_wrapper div.o_togglebox blockquote .o_togglebox_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 .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox blockquote .o_togglebox_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 .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .blockquote-reverse .o_togglebox_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 .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox blockquote.pull-right .o_togglebox_hide:before,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_hide:before,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox #o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_hide:before,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_hide:before,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_hide:before,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox blockquote.o_noti .o_togglebox_hide:before,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:before,.o_togglebox_wrapper div.o_togglebox .o_repo_details .o_lead blockquote.o_media .o_togglebox_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 .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .blockquote-reverse .o_togglebox_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 .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox blockquote.pull-right .o_togglebox_hide:after,.o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_withEllipsis blockquote.o_ellipsis_links .o_togglebox_hide:after,#o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox #o_main_wrapper #o_main_container blockquote#o_main_right .o_togglebox_hide:after,.o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_reply .o_togglebox_hide:after,.o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_comments .o_comment_wrapper blockquote.o_delete .o_togglebox_hide:after,blockquote.o_noti .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox blockquote.o_noti .o_togglebox_hide:after,.o_repo_details .o_lead blockquote.o_media .o_togglebox_wrapper div.o_togglebox .o_togglebox_hide:after,.o_togglebox_wrapper div.o_togglebox .o_repo_details .o_lead blockquote.o_media .o_togglebox_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}}
@@ -52,4 +52,4 @@ small,.small,.o_comments .o_comment_wrapper h5,.o_comments .o_comment_wrapper .o
 .o_comments{margin-top:20px}.o_comments .o_comment_wrapper .o_avatar{margin:0 1em 0 0}.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{position:relative;margin:0}.o_togglebox_wrapper div.o_togglebox .o_togglebox_hide{position:absolute;bottom:0.5em;right:1em}.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_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}#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_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}#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}