// ************************************************************************ //
//  Copyright GasBuddy Organization Inc                                     //
//  Only for use with the consent of GasBuddy Organization Inc.             //
//  For assistance/questions, please visit www.GasBuddy.com, or email       //
//  feedback@gasbuddy.com                                                   //
// ************************************************************************ //
// TIPS
// ----
// Use the variables in this file to set the look and feel of the output
// Make sure that the files "gasbuddy_preferences.js" and "gasbuddy_gas_prices.js"
//   are on YOUR web server.
// If you are using cascading style sheets, some of the settings in this file
//   could potentially be automatically overridden.

var font_color, row_color, header_font_color, header_bg_color;
var 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 = '';
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 = 'Arial';
font_size = '4';
// set the colors for the prices tables - for use if using the <font> tag
font_color = '#000000';
row_color = '#EEEEFF';
header_font_color ='#FFFFFF';
header_bg_color = '#003366';

// set the width of the prices table
table_width = 600;

