<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Group</LimeSurveyDocType>
 <DBVersion>178</DBVersion>
 <languages>
  <language>en</language>
 </languages>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
   <fieldname>randomization_group</fieldname>
   <fieldname>grelevance</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[38]]></gid>
    <sid><![CDATA[159229]]></sid>
    <group_name><![CDATA[A]]></group_name>
    <group_order><![CDATA[33]]></group_order>
    <description/>
    <language><![CDATA[en]]></language>
    <randomization_group/>
    <grelevance/>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>parent_qid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>gid</fieldname>
   <fieldname>type</fieldname>
   <fieldname>title</fieldname>
   <fieldname>question</fieldname>
   <fieldname>preg</fieldname>
   <fieldname>help</fieldname>
   <fieldname>other</fieldname>
   <fieldname>mandatory</fieldname>
   <fieldname>question_order</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
   <fieldname>relevance</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[136]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a1]]></title>
    <question><![CDATA[a1]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[137]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a2]]></title>
    <question><![CDATA[a2]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[138]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a3]]></title>
    <question><![CDATA[<script type="text/javascript" charset="utf-8">

        $(document).ready(function() {
                // Call the "sideBySide" function with number of rows, columns and start position
                sideBySide(4, 4, 3);
        });

        function sideBySide(rows, columns, startQuestion) {

                /*********** Display multiple questions side by side ***********/

                if ($('div.qRow1').length == 0) {

                        var rowNum = 0;
                        var colNum = 1;
                        var rowList = new Array();

                        //////// Add question classes for later use ////////

                        // Loop through all questions and add row and column specific classes
                        $('div[id^="question"]').each(function(i) {
                                if(i >= (startQuestion-1) && rowNum < rows) { // This IF condition only needed if there are questions before or following the "inline" questions
                                        $(this).addClass('qRow'+rowNum+'').addClass('qCol'+colNum+'').addClass('inlineQuestion');
                                        if(rowNum == 0 && colNum > 1) {
                                                $(this).addClass('columnLabel');
                                        }  
                                        if(rowNum > 0 && colNum == 1) {
                                                $(this).addClass('rowLabel');
                                        }
                                        else if(rowNum > 0 && colNum > 1) {
                                                $(this).addClass('questionCell');
                                        }
                                        if(colNum == columns) {
                                                rowList.push('qRow'+rowNum+'');
                                                rowNum++;
                                                colNum = 1;
                                        }
                                        else {
                                                colNum++;
                                        }
                                }
                                else {
                                        $(this).addClass('normalQuestion');
                                }
                        });

                        //////// Survey layout manipulation ////////

                        // Fix the width of the survey
                        $('table.outerframe').css({
                                'width': '850px'
                        });

                        // Wrap each "row" in a wrapper div
                        $(rowList).each(function(i) {
                                $('.'+this+'').wrapAll('<div id="inlineWrapper'+i+'" class="inlineRow" />');
                        });

                        // Style the wrapper divs
                        $('.inlineRow').css({
                                'width': '800px',
                                'margin': '0 auto 0 auto',
                                'clear': 'both'
                        });

                        $( '.inlineRow:first' ).css({
                                'margin-top': '10px'
                        });

                        // Get all the questions to sit politely side by side
                        $( '.inlineQuestion' ).css({
                                'float': 'left',
                                'height':'41px',
                                'overflow':'hidden',
                                'margin-bottom': '-8px'
                        });
                        $( '.inlineQuestion .questionhelp' ).hide();
                        $( '.inlineQuestion .survey-question-help' ).parent().hide();
                   
                        // A little space under the last row
                        $( '.inlineRow:last .inlineQuestion' ).css({
                                'margin-bottom': '10px'
                        });

                        // Any questions not displayed inline (this is only needed if there are questions following the "inline" questions)
                        $( '.normalQuestion' ).css({
                                'clear': 'both'
                        });

                        //////// Column manipulation ////////

                        // Set the column widths - can be set individually if necessary
                        // Must add up to less than 100%
                        $( '.qCol1' ).css({
                                'width': '12%'
                        });

                        $( '.qCol2, .qCol3, .qCol4, .qCol5' ).css({
                                'width': '22%'
                        });

                        //////// Question manipulation ////////

                        // Hide the answer element in boilerplate questions
                        $( 'div.boilerplate td.answer' ).parent().hide();

                        // Hide the question text elements in non-boilerplate questions
                        $('div.questionCell td.questiontext').parent().hide();

                        // Push the question tables to 100%
                        $( 'div.inlineRow table' ).css({
                                'width': '100%'
                        });

                        // Get everything to line up nicely vertically
                        $( '.inlineQuestion td.questiontext, .inlineQuestion td.answer p' ).css({
                                'text-align': 'center'
                        });

                        // Adjust cell heights so everything lines up nicely horizontally
                        $( '.inlineQuestion td.answer, .inlineQuestion td.questiontext' ).css({
                                'height':'35px',
                                'overflow':'hidden',
                                'padding':'0.5em'
                        });
                        $( '#inlineWrapper0 .inlineQuestion' ).css({ 'height':'50px' });
                        $( '#inlineWrapper0 td.questiontext' ).css({
                                'height':'50px'
                        });

                        // Yes-no question styles
                        $( 'div.yes-no ul' ).css({
                                'text-align': 'center',
                                'font-size': '90%',
                                'margin': '0',
                                'padding-bottom': '5px'
                        });
                        $( 'div.yes-no li' ).css({
                                'padding-right': '1.5em'
                        });
                        $( 'div.yes-no td.answer' ).css({
                                'padding-bottom': '0'
                        });

                        // Short-text question styles
                        $( 'div.text-short input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });

                        // Numeric question styles
                        $( 'div.numeric input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });
                        $( 'div.numeric p.tip' ).css({
                                'display': 'none'
                        });

                        // Get rid of the margins around select boxes
                        $( 'p.question' ).css({ 'margin':'0' });
                }
        }
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[139]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a4]]></title>
    <question><![CDATA[a4]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[140]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a5]]></title>
    <question><![CDATA[a5]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[141]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a6]]></title>
    <question><![CDATA[a6]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[142]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a7]]></title>
    <question><![CDATA[1]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[143]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[a8]]></title>
    <question><![CDATA[1]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[144]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a9]]></title>
    <question><![CDATA[1]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[145]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a10]]></title>
    <question><![CDATA[1]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[146]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a11]]></title>
    <question><![CDATA[2]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[11]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[147]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[a12]]></title>
    <question><![CDATA[2]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[12]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[148]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a13]]></title>
    <question><![CDATA[2]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[13]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[149]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a14]]></title>
    <question><![CDATA[2]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[14]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[150]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a15]]></title>
    <question><![CDATA[3]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[15]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[151]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[a16]]></title>
    <question><![CDATA[3]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[16]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[152]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a17]]></title>
    <question><![CDATA[3]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[17]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[153]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a18]]></title>
    <question><![CDATA[8]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[18]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[154]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[a19]]></title>
    <question><![CDATA[a19]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[19]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[155]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a20]]></title>
    <question><![CDATA[<script type="text/javascript" charset="utf-8">

        $(document).ready(function() {
                // Call the "sideBySide" function with number of rows, columns and start position
                sideBySide(3, 4, 20);
        });

        function sideBySide(rows, columns, startQuestion) {

                /*********** Display multiple questions side by side ***********/

                if ($('div.qRow1').length == 0) {

                        var rowNum = 0;
                        var colNum = 1;
                        var rowList = new Array();

                        //////// Add question classes for later use ////////

                        // Loop through all questions and add row and column specific classes
                        $('div[id^="question"]').each(function(i) {
                                if(i >= (startQuestion-1) && rowNum < rows) { // This IF condition only needed if there are questions before or following the "inline" questions
                                        $(this).addClass('qRow'+rowNum+'').addClass('qCol'+colNum+'').addClass('inlineQuestion');
                                        if(rowNum == 0 && colNum > 1) {
                                                $(this).addClass('columnLabel');
                                        }  
                                        if(rowNum > 0 && colNum == 1) {
                                                $(this).addClass('rowLabel');
                                        }
                                        else if(rowNum > 0 && colNum > 1) {
                                                $(this).addClass('questionCell');
                                        }
                                        if(colNum == columns) {
                                                rowList.push('qRow'+rowNum+'');
                                                rowNum++;
                                                colNum = 1;
                                        }
                                        else {
                                                colNum++;
                                        }
                                }
                                else {
                                        $(this).addClass('normalQuestion');
                                }
                        });

                        //////// Survey layout manipulation ////////

                        // Fix the width of the survey
                        $('table.outerframe').css({
                                'width': '850px'
                        });

                        // Wrap each "row" in a wrapper div
                        $(rowList).each(function(i) {
                                $('.'+this+'').wrapAll('<div id="inlineWrapper'+i+'" class="inlineRow" />');
                        });

                        // Style the wrapper divs
                        $('.inlineRow').css({
                                'width': '800px',
                                'margin': '0 auto 0 auto',
                                'clear': 'both'
                        });

                        $( '.inlineRow:first' ).css({
                                'margin-top': '10px'
                        });

                        // Get all the questions to sit politely side by side
                        $( '.inlineQuestion' ).css({
                                'float': 'left',
                                'height':'41px',
                                'overflow':'hidden',
                                'margin-bottom': '-8px'
                        });
                        $( '.inlineQuestion .questionhelp' ).hide();
                        $( '.inlineQuestion .survey-question-help' ).parent().hide();
                   
                        // A little space under the last row
                        $( '.inlineRow:last .inlineQuestion' ).css({
                                'margin-bottom': '10px'
                        });

                        // Any questions not displayed inline (this is only needed if there are questions following the "inline" questions)
                        $( '.normalQuestion' ).css({
                                'clear': 'both'
                        });

                        //////// Column manipulation ////////

                        // Set the column widths - can be set individually if necessary
                        // Must add up to less than 100%
                        $( '.qCol1' ).css({
                                'width': '12%'
                        });

                        $( '.qCol2, .qCol3, .qCol4, .qCol5' ).css({
                                'width': '22%'
                        });

                        //////// Question manipulation ////////

                        // Hide the answer element in boilerplate questions
                        $( 'div.boilerplate td.answer' ).parent().hide();

                        // Hide the question text elements in non-boilerplate questions
                        $('div.questionCell td.questiontext').parent().hide();

                        // Push the question tables to 100%
                        $( 'div.inlineRow table' ).css({
                                'width': '100%'
                        });

                        // Get everything to line up nicely vertically
                        $( '.inlineQuestion td.questiontext, .inlineQuestion td.answer p' ).css({
                                'text-align': 'center'
                        });

                        // Adjust cell heights so everything lines up nicely horizontally
                        $( '.inlineQuestion td.answer, .inlineQuestion td.questiontext' ).css({
                                'height':'35px',
                                'overflow':'hidden',
                                'padding':'0.5em'
                        });
                        $( '#inlineWrapper0 .inlineQuestion' ).css({ 'height':'50px' });
                        $( '#inlineWrapper0 td.questiontext' ).css({
                                'height':'50px'
                        });

                        // Yes-no question styles
                        $( 'div.yes-no ul' ).css({
                                'text-align': 'center',
                                'font-size': '90%',
                                'margin': '0',
                                'padding-bottom': '5px'
                        });
                        $( 'div.yes-no li' ).css({
                                'padding-right': '1.5em'
                        });
                        $( 'div.yes-no td.answer' ).css({
                                'padding-bottom': '0'
                        });

                        // Short-text question styles
                        $( 'div.text-short input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });

                        // Numeric question styles
                        $( 'div.numeric input' ).css({
                                'width': '125px',
                                'margin-left': '0'
                        });
                        $( 'div.numeric p.tip' ).css({
                                'display': 'none'
                        });

                        // Get rid of the margins around select boxes
                        $( 'p.question' ).css({ 'margin':'0' });
                }
        }
</script>]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[20]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[156]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a21]]></title>
    <question><![CDATA[a21]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[21]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[157]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a22]]></title>
    <question><![CDATA[a22]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[22]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[158]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a23]]></title>
    <question><![CDATA[a23]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[23]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[159]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a24]]></title>
    <question><![CDATA[a]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[24]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[160]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[a25]]></title>
    <question><![CDATA[a]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[25]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[161]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[a26]]></title>
    <question><![CDATA[a]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[26]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[162]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[a27]]></title>
    <question><![CDATA[a]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[27]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[163]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[a28]]></title>
    <question><![CDATA[b]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[28]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[164]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[a29]]></title>
    <question><![CDATA[b]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[29]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[165]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[a30]]></title>
    <question><![CDATA[b]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[30]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[166]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[a31]]></title>
    <question><![CDATA[b]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[31]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
   <row>
    <qid><![CDATA[167]]></qid>
    <parent_qid><![CDATA[0]]></parent_qid>
    <sid><![CDATA[159229]]></sid>
    <gid><![CDATA[38]]></gid>
    <type><![CDATA[D]]></type>
    <title><![CDATA[a32]]></title>
    <question><![CDATA[a32]]></question>
    <preg/>
    <help/>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[32]]></question_order>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
    <relevance><![CDATA[1]]></relevance>
   </row>
  </rows>
 </questions>
</document>
