<?xml version="1.0" encoding="UTF-8"?>
<document>
 <LimeSurveyDocType>Survey</LimeSurveyDocType>
 <DBVersion>143</DBVersion>
 <languages>
  <language>en</language>
 </languages>
 <answers>
  <fields>
   <fieldname>qid</fieldname>
   <fieldname>code</fieldname>
   <fieldname>answer</fieldname>
   <fieldname>assessment_value</fieldname>
   <fieldname>sortorder</fieldname>
   <fieldname>language</fieldname>
   <fieldname>scale_id</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[199]]></qid>
    <code><![CDATA[1]]></code>
    <answer><![CDATA[Option 1]]></answer>
    <assessment_value><![CDATA[0]]></assessment_value>
    <sortorder><![CDATA[1]]></sortorder>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[199]]></qid>
    <code><![CDATA[2]]></code>
    <answer><![CDATA[Option 2]]></answer>
    <assessment_value><![CDATA[0]]></assessment_value>
    <sortorder><![CDATA[2]]></sortorder>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[204]]></qid>
    <code><![CDATA[1]]></code>
    <answer><![CDATA[Option 1]]></answer>
    <assessment_value><![CDATA[0]]></assessment_value>
    <sortorder><![CDATA[1]]></sortorder>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[204]]></qid>
    <code><![CDATA[2]]></code>
    <answer><![CDATA[Option 2]]></answer>
    <assessment_value><![CDATA[0]]></assessment_value>
    <sortorder><![CDATA[2]]></sortorder>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[209]]></qid>
    <code><![CDATA[1]]></code>
    <answer><![CDATA[Option 1]]></answer>
    <assessment_value><![CDATA[0]]></assessment_value>
    <sortorder><![CDATA[1]]></sortorder>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
   <row>
    <qid><![CDATA[209]]></qid>
    <code><![CDATA[2]]></code>
    <answer><![CDATA[Option 2]]></answer>
    <assessment_value><![CDATA[0]]></assessment_value>
    <sortorder><![CDATA[2]]></sortorder>
    <language><![CDATA[en]]></language>
    <scale_id><![CDATA[0]]></scale_id>
   </row>
  </rows>
 </answers>
 <groups>
  <fields>
   <fieldname>gid</fieldname>
   <fieldname>sid</fieldname>
   <fieldname>group_name</fieldname>
   <fieldname>group_order</fieldname>
   <fieldname>description</fieldname>
   <fieldname>language</fieldname>
  </fields>
  <rows>
   <row>
    <gid><![CDATA[63]]></gid>
    <sid><![CDATA[52381]]></sid>
    <group_name><![CDATA[Page 1]]></group_name>
    <group_order><![CDATA[0]]></group_order>
    <description><![CDATA[]]></description>
    <language><![CDATA[en]]></language>
   </row>
  </rows>
 </groups>
 <questions>
  <fields>
   <fieldname>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>parent_qid</fieldname>
   <fieldname>scale_id</fieldname>
   <fieldname>same_default</fieldname>
  </fields>
  <rows>
   <row>
    <qid><![CDATA[190]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B1]]></title>
    <question><![CDATA[<script type="text/javascript" charset="utf-8">
	
	$(document).ready(function() {
		
		/*********** 
		Display multiple questions side by side
		***********/
		
		//////// Define question attributes for later use ////////
		
		// Give questions row specific attributes so we can easily manipulate them by row
		$('#question190, #question191, #question192, #question193, #question194').attr('name', 'qRow1');
		$('#question195, #question196, #question197, #question198, #question199').attr('name', 'qRow2');
		$('#question200, #question201, #question202, #question203, #question204').attr('name', 'qRow3');
		$('#question205, #question206, #question207, #question208, #question209').attr('name', 'qRow4');
		
		// Give questions column specific attributes so we can easily manipulate them by column
		// I know, not the correct use of "rel" attribute but...too bad!
		$('#question190, #question195, #question200, #question205').attr('rel', 'qCol1');
		$('#question191, #question196, #question201, #question206').attr('rel', 'qCol2');
		$('#question192, #question197, #question202, #question207').attr('rel', 'qCol3');
		$('#question193, #question198, #question203, #question208').attr('rel', 'qCol4');
		$('#question194, #question199, #question204, #question209').attr('rel', 'qCol5');
		
		//////// Survey layout manipulation ////////
		
		// Fix the width of the survey
		$( 'table.outerframe' ).css({
			'width': '900px'
		});
				 
		// Wrap each row in a div
		// This is kinda verbose but IE won't let me use jQuery shortcuts
		var el = document.createElement('div');
		el.setAttribute('id','inlineWrapper1');
		document.body.appendChild(el);
		$('div[name="qRow1"]').wrapAll($('#inlineWrapper1'));
 
		el.setAttribute('id','inlineWrapper2');
		document.body.appendChild(el);
		$('div[name="qRow2"]').wrapAll($('#inlineWrapper2'));

		el.setAttribute('id','inlineWrapper3');
		document.body.appendChild(el);
		$('div[name="qRow3"]').wrapAll($('#inlineWrapper3'));

		el .setAttribute('id','inlineWrapper4');
		document.body.appendChild(el );
		$('div[name="qRow4"]').wrapAll($('#inlineWrapper4'));		
		
		// Style the wrapper divs
		$( '#inlineWrapper1, #inlineWrapper2, #inlineWrapper3, #inlineWrapper4' ).css({
			'width': '850px',
			'margin': '0 auto 0 auto',
			'clear': 'both'
		});
		
		// Get all the questions to sit politely side by side
		$( 'div[name="qRow1"], div[name="qRow2"], div[name="qRow3"], div[name="qRow4"]' ).css({
			'float': 'left'    
		});
		
		//////// Column manipulation ////////
		
		// Set the column widths - can be set individually if necessary
		// Must add up to less than 100%
		$( 'div[rel="qCol1"]' ).css({
			'width': '12%'
		});
		$( 'div[rel="qCol2"], div[rel="qCol3"], div[rel="qCol4"], div[rel="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.text-short td.questiontext, div.list-dropdown td.questiontext, div.yes-no td.questiontext, div.numeric td.questiontext').parent().hide();
		
		// Push the question tables to 100%
		$( 'div[name="qRow1"] table, div[name="qRow2"] table, div[name="qRow3"] table, div[name="qRow4"] table' ).css({
			'width': '100%'
		});
		
		// Get everything to line up nicely vertically
		$( 'td.questiontext, td.answer p' ).css({
			'text-align': 'center'
		});
		
		// Adjust cell heights so everything lines up nicely horizontally
		$( 'td.answer, td.questiontext' ).css({
			'height':'35px'
		});
		
		// Yes-no question styles
		$( 'div.yes-no ul' ).css({
			'text-align': 'center',
			'font-size': '90%',
			'margin': '0',
			'padding-bottom': '5px'
		});
		$( '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'});
		
		// Reduce the space caused by the question help table
		$( 'div[name="qRow1"], div[name="qRow2"], div[name="qRow3"]' ).css({
			'margin-bottom': '-8px'
		});	
		
	});

</script>]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[0]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[191]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B2]]></title>
    <question><![CDATA[Yes/No]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[1]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[192]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B3]]></title>
    <question><![CDATA[Short text]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[2]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[193]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B4]]></title>
    <question><![CDATA[Numeric]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[3]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[194]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B5]]></title>
    <question><![CDATA[Dropdown list]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[4]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[195]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B6]]></title>
    <question><![CDATA[A)]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[5]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[196]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[Q1-1]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[6]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[197]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[Q1-2]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[7]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[198]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[Q1-3]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[8]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[199]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[!]]></type>
    <title><![CDATA[Q1-4]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[9]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[200]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B7]]></title>
    <question><![CDATA[B)]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[10]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[201]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[Q2-1]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[11]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[202]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[Q2-2]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[12]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[203]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[Q2-3]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[13]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[204]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[!]]></type>
    <title><![CDATA[Q2-4]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[14]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[205]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[X]]></type>
    <title><![CDATA[B8]]></title>
    <question><![CDATA[C)]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[15]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[206]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[Y]]></type>
    <title><![CDATA[Q3-1]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[16]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[207]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[S]]></type>
    <title><![CDATA[Q3-2]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[17]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[208]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[N]]></type>
    <title><![CDATA[Q3-3]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[18]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
   <row>
    <qid><![CDATA[209]]></qid>
    <sid><![CDATA[52381]]></sid>
    <gid><![CDATA[63]]></gid>
    <type><![CDATA[!]]></type>
    <title><![CDATA[Q3-4]]></title>
    <question><![CDATA[]]></question>
    <preg><![CDATA[]]></preg>
    <help><![CDATA[]]></help>
    <other><![CDATA[N]]></other>
    <mandatory><![CDATA[N]]></mandatory>
    <question_order><![CDATA[19]]></question_order>
    <language><![CDATA[en]]></language>
    <parent_qid><![CDATA[0]]></parent_qid>
    <scale_id><![CDATA[0]]></scale_id>
    <same_default><![CDATA[0]]></same_default>
   </row>
  </rows>
 </questions>
 <question_attributes>
  <fields>
   <fieldname>qaid</fieldname>
   <fieldname>qid</fieldname>
   <fieldname>attribute</fieldname>
   <fieldname>value</fieldname>
  </fields>
  <rows>
   <row>
    <qaid><![CDATA[7270]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[hidden]]></attribute>
    <value><![CDATA[0]]></value>
   </row>
   <row>
    <qaid><![CDATA[7271]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[page_break]]></attribute>
    <value><![CDATA[0]]></value>
   </row>
   <row>
    <qaid><![CDATA[7272]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7273]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_action]]></attribute>
    <value><![CDATA[1]]></value>
   </row>
   <row>
    <qaid><![CDATA[7274]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_message]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7275]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_message_delay]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7276]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_disable_next]]></attribute>
    <value><![CDATA[0]]></value>
   </row>
   <row>
    <qaid><![CDATA[7277]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_message_style]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7278]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_timer_style]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7279]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7280]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_display_time]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7281]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_message]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7282]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_style]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7577]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_disable_prev]]></attribute>
    <value><![CDATA[0]]></value>
   </row>
   <row>
    <qaid><![CDATA[7578]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_countdown_message]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7579]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_2]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7580]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_2_display_time]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7581]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_2_message]]></attribute>
    <value><![CDATA[]]></value>
   </row>
   <row>
    <qaid><![CDATA[7582]]></qaid>
    <qid><![CDATA[190]]></qid>
    <attribute><![CDATA[time_limit_warning_2_style]]></attribute>
    <value><![CDATA[]]></value>
   </row>
  </rows>
 </question_attributes>
 <surveys>
  <fields>
   <fieldname>sid</fieldname>
   <fieldname>admin</fieldname>
   <fieldname>expires</fieldname>
   <fieldname>startdate</fieldname>
   <fieldname>adminemail</fieldname>
   <fieldname>private</fieldname>
   <fieldname>faxto</fieldname>
   <fieldname>format</fieldname>
   <fieldname>template</fieldname>
   <fieldname>language</fieldname>
   <fieldname>additional_languages</fieldname>
   <fieldname>datestamp</fieldname>
   <fieldname>usecookie</fieldname>
   <fieldname>notification</fieldname>
   <fieldname>allowregister</fieldname>
   <fieldname>allowsave</fieldname>
   <fieldname>autonumber_start</fieldname>
   <fieldname>autoredirect</fieldname>
   <fieldname>allowprev</fieldname>
   <fieldname>printanswers</fieldname>
   <fieldname>ipaddr</fieldname>
   <fieldname>refurl</fieldname>
   <fieldname>publicstatistics</fieldname>
   <fieldname>publicgraphs</fieldname>
   <fieldname>listpublic</fieldname>
   <fieldname>htmlemail</fieldname>
   <fieldname>tokenanswerspersistence</fieldname>
   <fieldname>assessments</fieldname>
   <fieldname>usecaptcha</fieldname>
   <fieldname>bounce_email</fieldname>
   <fieldname>usetokens</fieldname>
   <fieldname>attributedescriptions</fieldname>
   <fieldname>emailresponseto</fieldname>
   <fieldname>tokenlength</fieldname>
  </fields>
  <rows>
   <row>
    <sid><![CDATA[52381]]></sid>
    <admin><![CDATA[Tony Partner]]></admin>
    <expires><![CDATA[]]></expires>
    <startdate><![CDATA[]]></startdate>
    <adminemail><![CDATA[tpartner@partnersinc.biz]]></adminemail>
    <private><![CDATA[Y]]></private>
    <faxto><![CDATA[]]></faxto>
    <format><![CDATA[G]]></format>
    <template><![CDATA[default]]></template>
    <language><![CDATA[en]]></language>
    <additional_languages><![CDATA[]]></additional_languages>
    <datestamp><![CDATA[N]]></datestamp>
    <usecookie><![CDATA[N]]></usecookie>
    <notification><![CDATA[1]]></notification>
    <allowregister><![CDATA[N]]></allowregister>
    <allowsave><![CDATA[Y]]></allowsave>
    <autonumber_start><![CDATA[0]]></autonumber_start>
    <autoredirect><![CDATA[N]]></autoredirect>
    <allowprev><![CDATA[Y]]></allowprev>
    <printanswers><![CDATA[N]]></printanswers>
    <ipaddr><![CDATA[N]]></ipaddr>
    <refurl><![CDATA[N]]></refurl>
    <publicstatistics><![CDATA[N]]></publicstatistics>
    <publicgraphs><![CDATA[N]]></publicgraphs>
    <listpublic><![CDATA[N]]></listpublic>
    <htmlemail><![CDATA[Y]]></htmlemail>
    <tokenanswerspersistence><![CDATA[N]]></tokenanswerspersistence>
    <assessments><![CDATA[N]]></assessments>
    <usecaptcha><![CDATA[D]]></usecaptcha>
    <bounce_email><![CDATA[tpartner@partnersinc.biz]]></bounce_email>
    <usetokens><![CDATA[N]]></usetokens>
    <attributedescriptions><![CDATA[]]></attributedescriptions>
    <emailresponseto><![CDATA[]]></emailresponseto>
    <tokenlength><![CDATA[15]]></tokenlength>
   </row>
  </rows>
 </surveys>
 <surveys_languagesettings>
  <fields>
   <fieldname>surveyls_survey_id</fieldname>
   <fieldname>surveyls_language</fieldname>
   <fieldname>surveyls_title</fieldname>
   <fieldname>surveyls_description</fieldname>
   <fieldname>surveyls_welcometext</fieldname>
   <fieldname>surveyls_endtext</fieldname>
   <fieldname>surveyls_url</fieldname>
   <fieldname>surveyls_urldescription</fieldname>
   <fieldname>surveyls_email_invite_subj</fieldname>
   <fieldname>surveyls_email_invite</fieldname>
   <fieldname>surveyls_email_remind_subj</fieldname>
   <fieldname>surveyls_email_remind</fieldname>
   <fieldname>surveyls_email_register_subj</fieldname>
   <fieldname>surveyls_email_register</fieldname>
   <fieldname>surveyls_email_confirm_subj</fieldname>
   <fieldname>surveyls_email_confirm</fieldname>
   <fieldname>surveyls_dateformat</fieldname>
  </fields>
  <rows>
   <row>
    <surveyls_survey_id><![CDATA[52381]]></surveyls_survey_id>
    <surveyls_language><![CDATA[en]]></surveyls_language>
    <surveyls_title><![CDATA[Demo - Inline questions]]></surveyls_title>
    <surveyls_description><![CDATA[]]></surveyls_description>
    <surveyls_welcometext><![CDATA[]]></surveyls_welcometext>
    <surveyls_endtext><![CDATA[]]></surveyls_endtext>
    <surveyls_url><![CDATA[]]></surveyls_url>
    <surveyls_urldescription><![CDATA[]]></surveyls_urldescription>
    <surveyls_email_invite_subj><![CDATA[Invitation to participate in survey]]></surveyls_email_invite_subj>
    <surveyls_email_invite><![CDATA[Dear {FIRSTNAME},

You have been invited to participate in a survey.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}]]></surveyls_email_invite>
    <surveyls_email_remind_subj><![CDATA[Reminder to participate in survey]]></surveyls_email_remind_subj>
    <surveyls_email_remind><![CDATA[Dear {FIRSTNAME},

Recently we invited you to participate in a survey.

We note that you have not yet completed the survey, and wish to remind you that the survey is still available should you wish to take part.

The survey is titled:
"{SURVEYNAME}"

"{SURVEYDESCRIPTION}"

To participate, please click on the link below.

Sincerely,

{ADMINNAME} ({ADMINEMAIL})

----------------------------------------------
Click here to do the survey:
{SURVEYURL}]]></surveyls_email_remind>
    <surveyls_email_register_subj><![CDATA[Survey registration confirmation]]></surveyls_email_register_subj>
    <surveyls_email_register><![CDATA[Dear {FIRSTNAME},

You, or someone using your email address, have registered to participate in an online survey titled {SURVEYNAME}.

To complete this survey, click on the following URL:

{SURVEYURL}

If you have any questions about this survey, or if you did not register to participate and believe this email is in error, please contact {ADMINNAME} at {ADMINEMAIL}.]]></surveyls_email_register>
    <surveyls_email_confirm_subj><![CDATA[Confirmation of completed survey]]></surveyls_email_confirm_subj>
    <surveyls_email_confirm><![CDATA[Dear {FIRSTNAME},

This email is to confirm that you have completed the survey titled {SURVEYNAME} and your response has been saved. Thank you for participating.

If you have any further questions about this email, please contact {ADMINNAME} at {ADMINEMAIL}.

Sincerely,

{ADMINNAME}]]></surveyls_email_confirm>
    <surveyls_dateformat><![CDATA[1]]></surveyls_dateformat>
   </row>
  </rows>
 </surveys_languagesettings>
</document>
