// ************************************************************************ //
// Only for use by the consent of GasBuddy Organization Inc.                //
// For assistance/questions, please visit www.GasBuddy.com, or email        //
// webmaster@gasbuddy.com                                                   //
// ************************************************************************ //

// Use the variables in this file to set the look and feel of the output
var font_color, row_color, header_font_color, header_bg_color, table_width, td_class, tr_class, font_face, use_font_tag, use_css;

// if cascading style sheets are being used, set use_css = 'y' (lower case), 
//	and set each element to its' corresponding class in the stylesheet
//	(i.e. - td_class is the class for the <td> tag)
use_css = 'n'; // set to 'y' to use cascading style sheets (instead of the <font> tag)
th_class = '';
td_class = 'smred';
tr_class = '';  // for the table body line (<tr> tag)
tr_header_class = ''; // for the table header line  (<tr> tag)
table_class = '';

// if the <font> tag is to be used, set use_font_tag = 'y' (lower case)
use_font_tag = 'y'; // set to 'y' to use the font tag (instead of css)
font_face = 'verdana';
font_size = '-1';

// set the colors for the prices tables - for use if using the <font> tag
font_color = '#000000';
row_color ='#ffffcc';
header_font_color ='#ffffcc';
header_bg_color = '#990000';

// set the width of the prices table
table_width = 400;