-@import 'choiceTrueOrFalse.less';
\ No newline at end of file
+@import 'choiceTrueOrFalse.less';
+@import 'choiceSingle.less';
+@import 'choiceMulti.less';
\ No newline at end of file
 
--- /dev/null
+.exercise-multi {
+    input {
+        margin-right: 15px;
+    }
+    ul {
+        margin: 0;
+    }
+    li {
+        list-style-type: none;
+    }
+}
\ No newline at end of file
 
 });
 
 var RadioView = function(checked, name, onValueChange) {
-    this.dom = $('<input type="radio" style="float: left; margin-right: 40px;">')
+    this.dom = $('<input type="radio">')
             .attr('checked', checked)
             .attr('name', name);
     this.dom.on('change', function() {
 
--- /dev/null
+.exercise-single {
+    input {
+        margin-right: 15px;
+    }
+    ul {
+        margin: 0;
+    }
+    li {
+        list-style-type: none;
+    }
+}
\ No newline at end of file