I think your issue is a path issue.
remove this from your index.php code
../../texaswebworks/
what your looking for >
Code:
<link href="<?php echo "../../texaswebworks/$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css";?>" rel="stylesheet" type="text/css" media="all" />
look like this >
Code:
<link href="<?php echo "$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css";?>" rel="stylesheet" type="text/css" media="all" />