Team:Gaston Day School

From 2014.igem.org

(Difference between revisions)
 
(208 intermediate revisions not shown)
Line 2: Line 2:
<html>
<html>
<head>
<head>
-
<style type="text/css">
+
<link href='http://fonts.googleapis.com/css?family=Open+Sans' rel='stylesheet' type='text/css'>
-
body
+
<link href='http://fonts.googleapis.com/css?family=Ubuntu:500' rel='stylesheet' type='text/css'>
-
{
+
-
font-size: 80%; font-family: 'Lucida Grande', Verdana, Arial, Sans-Serif; background-image: url("http://newevolutiondesigns.com/images/freebies/retro-wallpaper-1.jpg"); width:100%;
+
<style>
 +
.firstHeading {
 +
display:none;
}
}
-
ul#tabs
+
body {
-
{
+
padding: 0px;
-
list-style-type: none; padding: 0 0 0 0;  
+
margin: 0px;
 +
 
 +
}
 +
 +
            [class*='col-'] {
 +
float: left;
 +
padding-right: 20px;
}
}
-
ul#tabs li
+
.grid-pad {
-
{
+
padding: 20px 0px 20px 20px;
-
display: inline;  
+
}
}
-
ul#tabs li a
+
.sub-grid-pad {
-
{
+
padding: 20px 0px 20px 0px;
-
color: #42454a; background-color: #fefefe; border: 1px solid #000000; border-bottom: none; padding: 0em;text-decoration: none;  
+
}
}
-
ul#tabs li a:hover
+
.grid-pad > .row > [class*='col-']:last-of-type, .grid-pad > [class*='col-']:last-of-type {
-
{  
+
padding-right: 20px;
-
background-color: #ffffff;  
+
}
}
-
ul#tabs li a.selected
+
.col-1-1 {
-
{
+
width: 100%;
-
color: #000; background-color: #ffffff; font-weight: bold; padding: 0.7em 0.3em 0.38em 0.3em;  
+
}
}
-
                       
+
.col-1-2, .col-2-4, .col-3-6, .col-5-10 {
-
div.tabContent
+
width: 50%;
-
{
+
-
border: 1px solid #000000; background-color: #ffffff; float: left; border-radius: 5px; width: 100%; padding: 0.5em;
+
}
}
-
div.tabContent.hide
+
.col-1-3, .col-2-6, .col-3-9 {
-
{  
+
width: 33.33%;
-
display: none;  
+
}
}
-
div.right
+
.col-2-3, .col-4-6, .col-6-9 {
-
{
+
width: 66.66%;
-
float:right;
+
-
Width: 33%;
+
-
background-color:#ffffff;
+
-
border: 1px solid #000000;
+
-
border-radius: 5px;
+
}
}
-
div.rightcontent
+
 
-
{
+
.col-1-4, .col-2-8 {
-
padding: 3px;
+
width: 25%;
}
}
-
div.middle
+
 
-
{
+
.col-3-4 {
-
float:left;
+
width: 75%;
-
background-color:#ffffff;
+
-
border: 1px solid #000000;
+
-
border-radius: 5px;
+
}
}
-
div.middlecontent
+
 
-
{
+
.col-1-5, .col-2-10 {
-
padding: 3px;
+
width: 20%;
}
}
-
</style>
 
-
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
+
.col-2-5, .col-4-10 {
 +
width: 40%;
 +
}
-
<script>
+
.col-3-5, .col-6-10 {
-
<!-- Tabs -->
+
width: 60%;
-
var tabLinks = new Array();
+
}
-
var contentDivs = new Array();
+
-
function init()
+
.col-4-5, .col-8-10 {
-
{
+
width: 80%;
-
// Grab the tab links and content divs from the page
+
}
-
var tabListItems = document.getElementById('tabs').childNodes;
+
-
for ( var i = 0; i < tabListItems.length; i++ )
+
-
{
+
-
if ( tabListItems[i].nodeName == "LI" )
+
-
{
+
-
var tabLink = getFirstChildWithTagName( tabListItems[i], 'A' );
+
-
var id = getHash( tabLink.getAttribute('href') );
+
-
tabLinks[id] = tabLink;
+
-
contentDivs[id] = document.getElementById( id );
+
-
}
+
-
}
+
-
// Assign onclick events to the tab links, and
+
.col-1-6 {
-
// highlight the first tab
+
width: 16.66%;
-
var i = 0;
+
}
-
for ( var id in tabLinks )
+
.col-5-6 {
-
{
+
width: 83.33%;
-
tabLinks[id].onmouseover = showTab;
+
}
-
tabLinks[id].onfocus = function() { this.blur() };
+
-
if ( i == 0 ) tabLinks[id].className = 'selected';
+
-
i++;
+
-
}
+
-
// Hide all content divs except the first
+
.col-1-7 {
-
var i = 0;
+
width: 14.28%;
 +
}
-
for ( var id in contentDivs )
+
.col-2-7 {
-
{
+
width: 28.57%;
-
if ( i != 0 ) contentDivs[id].className = 'tabContent hide';
+
-
i++;
+
-
}
+
}
}
-
function showTab()
+
.col-3-7 {
-
{
+
width: 42.85%;
-
var selectedId = getHash( this.getAttribute('href') );
+
}
-
// Highlight the selected tab, and dim all others.
+
.col-4-7 {
-
// Also show the selected content div, and hide all others.
+
width: 57.14%;
-
for ( var id in contentDivs )
+
-
{
+
-
if ( id == selectedId )
+
-
{
+
-
tabLinks[id].className = 'selected';
+
-
contentDivs[id].className = 'tabContent';
+
-
}
+
-
else
+
-
{
+
-
tabLinks[id].className = '';
+
-
contentDivs[id].className = 'tabContent hide';
+
-
}
+
-
}
+
-
// Stop the browser following the link
+
-
return false;
+
}
}
-
function getFirstChildWithTagName( element, tagName )
+
.col-5-7 {
-
{
+
width: 71.42%;
-
for ( var i = 0; i < element.childNodes.length; i++ )
+
-
{
+
-
if ( element.childNodes[i].nodeName == tagName )
+
-
return element.childNodes[i];
+
-
}
+
}
}
-
function getHash( url )
+
.col-6-7 {
-
{
+
width: 85.71%;
-
var hashPos = url.lastIndexOf ( '#' );
+
-
return url.substring( hashPos + 1 );
+
}
}
-
</script>
 
-
</head>
+
.col-1-8 {
-
+
width: 12.5%;
-
<body onload="init()" background-image=" url("http://images.dailytech.com/nimage/Nyan_Cat_Wide.jpg")">
+
}
-
<!--main content -->
+
-
<!--navigation menu
+
-
<td align="center" colspan="3">
+
-
<table  width="100%">
+
.col-2-8 {
-
<tr heigth="15px"></tr>
+
width: 25%;
-
<tr heigth="75px">
+
}
-
//Home
+
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7> 
+
-
<a href="https://2014.igem.org/Team:Gaston_Day_School"style="color:#000000">Home </a>
+
-
</td>
+
-
+
-
//Team
+
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Team"style="color:#000000"> Team </a>
+
-
</td>
+
-
//Team Profile
+
.col-3-8 {
-
<td style="border:1px solid black;" align="center"  height ="45px"  onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
width: 37.5%;
-
<a href="https://igem.org/Team.cgi?year=2014&team_name=Gaston_Day_School"style="color:#000000"> Official Team Profile </a>
+
}
-
</td>
+
-
//Project
+
.col-4-8 {
-
<td style="border:1px solid black" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7> 
+
width: 50%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Project"style="color:#000000"> Project</a>
+
}
-
</td>
+
-
//Parts
+
.col-5-8 {
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
width: 62.5%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Parts"style="color:#000000"> Parts</a>
+
}
-
</td>
+
-
//Modeling
+
.col-6-8 {
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
width: 75%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Modeling"style="color:#000000"> Modeling</a>
+
}
-
</td>
+
-
//Notebook
+
.col-7-8 {
-
<td style="border:1px solid black;" align="center" height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7> 
+
width: 87.5%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Notebook"style="color:#000000"> Notebook</a>
+
}
-
</td>
+
-
//Safety
+
.col-1-9 {
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
width: 11.11%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Safety"style=" color:#000000"> Safety </a>
+
}
-
</td>
+
-
//Attributions
+
.col-2-9 {
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
width: 22.22%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Attributions"style="color:#000000"> Attributions </a>
+
}
-
</td>
+
-
//Measurement Track
+
.col-4-9 {
-
<td style="border:1px solid black;" align="center"  height ="45px" onMouseOver="this.bgColor='#d3d3d3'" onMouseOut="this.bgColor='#e7e7e7'" bgColor=#e7e7e7>
+
width: 44.44%;
-
<a href="https://2014.igem.org/Team:Gaston_Day_School/Measurementtrack"style="color:#000000"> Measurement Track </a>
+
}
-
</td>
+
-
<td align ="center"> <a href="https://2014.igem.org/Main_Page"> <img src="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png" width="55px"></a> </td>
+
.col-5-9 {
-
</tr>
+
width: 55.55%;
-
</table>
+
}
-
end navigation menu -->
+
.col-7-9 {
-
+
width: 77.77%;
-
+
}
-
<!--Tabs(NOT SLIDESHOW!) -->
+
-
<div style="padding-left: 10px;">
+
-
<ul id="tabs">
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School#home">Home</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Team#team">Members</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Project#project">Project</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Measurementtrack#measure">Measurement Track</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Parts#parts">Parts</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Modeling#models">Models</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Notebook#notebook">Notebook</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Safety#safety">Safety</a></li>
+
-
<li><a href="https://2014.igem.org/Team:Gaston_Day_School/Attributions#attrib">Attributions</a></li>
+
-
<!--
+
-
<li><a href="https://2014.igem.org/Main_Page#igem"><img
+
-
src="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png" width="55px" position="absolute"></a></li>
+
-
-->
+
-
</ul>
+
-
<!--Tab Content-->
+
-
<div class="tabContent" id="home">
+
.col-8-9 {
-
<h2>Home</h2>
+
width: 88.88%;
-
        <p>Home</p>
+
}
-
</div>
+
-
<div class="tabContent" id="team">
+
.col-1-10 {
-
<h2>Team Members</h2>
+
width: 10%;
-
<p>Team Members</p>
+
}
-
</div>
+
-
<div class="tabContent" id="project">
+
.col-3-10 {
-
<h2>Project</h2>
+
width: 30%;
-
<p>Project</p>
+
}
-
</div>
+
-
<div class="tabContent" id="measure">
+
.col-7-10 {
-
<h2>Measurement Track</h2>
+
width: 70%;
-
<p>Measurement Track</p>
+
}
-
</div>
+
-
<div class="tabContent" id="parts">
+
.col-9-10 {
-
<h2>Parts</h2>
+
width: 90%;
-
<p>Parts</p>
+
}
-
</div>
+
-
<div class="tabContent" id="models">
+
.grid:after {
-
<h2>Models</h2>
+
content: "";
-
<p>Models</p>
+
display: table;
-
</div>
+
clear: both;
 +
}
-
<div class="tabContent" id="notebook">
+
*, *:after, *:before {
-
<h2>Notebook</h2>
+
-webkit-box-sizing: border-box;
-
<p>Notebook</p>
+
-moz-box-sizing: border-box;
-
</div>
+
box-sizing: border-box;
 +
}
-
<div class="tabContent" id="safety">
+
[class*='col-']:last-of-type {
-
<h2>Safety</h2>
+
padding-right: 0;
-
<p>Safety  </p>
+
}
-
</div>
+
-
<div class="tabContent" id="attrib">
+
.mainshow {
-
<h2>Attributes</h2>
+
color: #081D38;
-
<p>Attributes </p>
+
box-shadow: 0px 0px 25px #888888;
-
</div>
+
            background-image: url(https://static.igem.org/mediawiki/2014/a/a6/Header.png);
-
<!--
+
            background-size: contain;
-
<div class="tabContent" id="igem">
+
}
-
        <h2>Homepage</h2>
+
           
-
<p>Go to, ja!</p>
+
            .show {
-
</div>
+
background-color:#FFFFFF;
-
-->
+
color: #081D38;
-
</div>
+
box-shadow: 0px 0px 25px #888888;
-
                        <div class="right">
+
}
-
                        <div class="rightcontent">
+
-
                          <h2>LOOK AT ME!!!!!!!!!!!</h2>
+
-
                          <p>The standard Lorem Ipsum passage, used since the 1500s
+
-
"Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."
 
-
Section 1.10.32 of "de Finibus Bonorum et Malorum", written by Cicero in 45 BC
+
.hide {
 +
background-color: auto;
 +
}
-
"Sed ut perspiciatis unde omnis iste natus error sit voluptatem accusantium doloremque laudantium, totam rem aperiam, eaque ipsa quae ab illo inventore veritatis et quasi architecto beatae vitae dicta sunt explicabo. Nemo enim ipsam voluptatem quia voluptas sit aspernatur aut odit aut fugit, sed quia consequuntur magni dolores eos qui ratione voluptatem sequi nesciunt. Neque porro quisquam est, qui dolorem ipsum quia dolor sit amet, consectetur, adipisci velit, sed quia non numquam eius modi tempora incidunt ut labore et dolore magnam aliquam quaerat voluptatem. Ut enim ad minima veniam, quis nostrum exercitationem ullam corporis suscipit laboriosam, nisi ut aliquid ex ea commodi consequatur? Quis autem vel eum iure reprehenderit qui in ea voluptate velit esse quam nihil molestiae consequatur, vel illum qui dolorem eum fugiat quo voluptas nulla pariatur?"
+
#pad {
 +
padding: 5px;
 +
}
-
1914 translation by H. Rackham
+
body {
 +
background-color:#DFEDFF;
 +
}
-
"But I must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give you a complete account of the system, and expound the actual teachings of the great explorer of the truth, the master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do not know how to pursue pleasure rationally encounter consequences that are extremely painful. Nor again is there anyone who loves or pursues or desires to obtain pain of itself, because it is pain, but because occasionally circumstances occur in which toil and pain can procure him some great pleasure. To take a trivial example, which of us ever undertakes laborious physical exercise, except to obtain some advantage from it? But who has any right to find fault with a man who chooses to enjoy a pleasure that has no annoying consequences, or one who avoids a pain that produces no resultant pleasure?"
+
#head {
 +
font-family: 'Open Sans', sans-serif;
 +
}
-
Section 1.10.33 of "de Finibus Bonorum et Malorum", written by Cicero in 45 BC
+
#mainhead {
 +
font-family:'Ubuntu', sans-serif;
 +
font-size: 35px;
 +
}
-
"At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores et quas molestias excepturi sint occaecati cupiditate non provident, similique sunt in culpa qui officia deserunt mollitia animi, id est laborum et dolorum fuga. Et harum quidem rerum facilis est et expedita distinctio. Nam libero tempore, cum soluta nobis est eligendi optio cumque nihil impedit quo minus id quod maxime placeat facere possimus, omnis voluptas assumenda est, omnis dolor repellendus. Temporibus autem quibusdam et aut officiis debitis aut rerum necessitatibus saepe eveniet ut et voluptates repudiandae sint et molestiae non recusandae. Itaque earum rerum hic tenetur a sapiente delectus, ut aut reiciendis voluptatibus maiores alias consequatur aut perferendis doloribus asperiores repellat."
+
a{text-decoration:none;}
-
1914 translation by H. Rackham
+
#navbar > div > a > p.show {
 +
box-shadow: 10px 10px 5px #888888;
 +
}
-
"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains."</p>
+
.currentpage {
-
                        </div>
+
background-color:#FFFFFF;
-
                  </div>
+
color: #081D38;
-
                  <div class="middle">
+
box-shadow: 0px 0px 25px #888888;
-
                        <div class="middlecontent">
+
}
-
"On the other hand, we denounce with righteous indignation and dislike men who are so beguiled and demoralized by the charms of pleasure of the moment, so blinded by desire, that they cannot foresee the pain and trouble that are bound to ensue; and equal blame belongs to those who fail in their duty through weakness of will, which is the same as saying through shrinking from toil and pain. These cases are perfectly simple and easy to distinguish. In a free hour, when our power of choice is untrammelled and when nothing prevents our being able to do what we like best, every pleasure is to be welcomed and every pain avoided. But in certain circumstances and owing to the claims of duty or the obligations of business it will frequently occur that pleasures have to be repudiated and annoyances accepted. The wise man therefore always holds in these matters to this principle of selection: he rejects pleasures to secure other greater pleasures, or else he endures pains to avoid worse pains."
+
 
-
                      </div>
+
#navbar > div > a :hover{
-
                  </div>    
+
background-color: #C1CDCd;
 +
color: #081D38;
 +
}
 +
 
 +
#navbar > div > a:active > p.show {
 +
box-shadow: 0px 0px 25px #888888;
 +
}
 +
 +
.image-wrapper
 +
{
 +
position: relative;
 +
}
 +
 
 +
.scale-image
 +
{
 +
height: 100%;
 +
width: 100%;
 +
}
 +
</style>
 +
</head>
 +
 +
<body class="transform">
 +
<div class="row">
 +
            <h1 id="mainhead" style="color:#072751" class="show" align="center"> Development of Tools for the Switch to Isobutanol as a Biofuel</h1>
 +
            <h2 style="color:#072751">>Home</h2>
 +
</div>
 +
       
 +
        <div class="row">
 +
            <img href="https://static.igem.org/mediawiki/2014/a/a6/Header.png">
 +
</div>
 +
               
 +
<div class="grid-pad" align="center" id="navbar">
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School#home"><p class="currentpage" id="pad">Home<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Team#team">
 +
<p class="show" id="pad">Members<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Project#project">
 +
<p class="show" id="pad">Project<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Parts#parts">
 +
<p class="show" id="pad">Parts<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Modeling#models">
 +
<p class="show" id="pad">Models<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Notebook#notebook">
 +
<p class="show" id="pad">Notebook<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Safety#safety">
 +
<p class="show" id="pad">Safety<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Team:Gaston_Day_School/Attributions#attrib">
 +
<p class="show" id="pad">Attributions<p></a>
 +
</div>
 +
<div class="col-1-9">
 +
<a href="https://2014.igem.org/Main_Page">
 +
<p class="show" id="pad"><img src="https://static.igem.org/mediawiki/igem.org/6/60/Igemlogo_300px.png" width="19px" position="absolute"><p></a>
 +
</div>
 +
</div>
 +
 +
<div class="col-1-10">
 +
<p class="hide" id="pad"></p>
 +
</div>
 +
 
 +
<div class="col-8-10">
 +
<div class="grid-pad">
 +
<div class="col-1-1">
 +
<div class="show" id="pad">
 +
<h2 id="head">School Description</h2>
 +
<p id="pad">
 +
                            Founded in 1967, Gaston Day School is a non-sectarian, college preparatory institution for grades Pre-K through 12. Throughout its history, nearly 100% of Gaston Day School's graduating classes have entered four-year colleges and universities. Located in Gastonia, North Carolina, the school serves communities in a five-county area: Gaston, Lincoln, Cleveland, Mecklenburg and York counties. Enrollment is approximately five hundred students. Gaston Day School is accredited by the Southern Association of Colleges and Schools. The school is a member of the Southern Association of Independent Schools, the National Association of Independent Schools, and the North Carolina Association of Independent Schools.The students on the team are in grades 10-12, and each member has completed (or is currently enrolled in) Honors Biology, Honors Chemistry, Honors Physics, AP Biology, AP Chemistry, AP Physics or some combination thereof.
 +
                        </p>
 +
</div>
 +
</div>
 +
</div>
 +
           
 +
            <div class="grid-pad">
 +
<div class="col-1-1">
 +
<h2 id="head">Abstract</h2>
 +
<p class="show" id="pad">
 +
                    There are several issues in the switch from petroleum to alternative fuels. One problem the world faces is what to do with existing wastes such as leaking coal ash ponds. Another issue is the efficient production of an alcohol that is effective as a fuel, easy and inexpensive to produce, and will function within the current infrastructure. This year, we improved the sensitivity of our cadmium detector using sensitivity tuners. We are developing a strain of E. coli resistant to isobutanol, and we are cloning GlmY, GlmZ, and IlvM which are genes involved in the isobutanol production pathway. Addition of sensitivity tuners has improved the cadmium detector approximately four-fold, from 10mM to 2.5mM, which is still over the federal limit. The isobutanol resistant strain of E. coli can tolerate three times as much isobutanol as the original strain. Finally, we have successfully isolated the GlmZ coding region and have cloned it into the BioBrick vector.
 +
                    </p>
 +
</div>
 +
</div>
 +
           
 +
            <div class="grid-pad">
 +
                <div class="col-1-2">
 +
                    <a href="https://2014.igem.org/Team:Gaston_Day_School/biofuels#biofuels">
 +
                        <h2 id="head">Biofuels</h2>
 +
                    </a>
 +
                    <p class="show" id="pad">
 +
                        The rising cost of petroleum, coupled with the environmental concerns that go with its use, have led to a recent increase in biofuel research. Developments in using bacteria to produce biofuels such as isobutanol and ethanol have come with this research. These alcohols are favored because they can easily be swapped into our current infrastructure of car and truck engines. At Gaston Day School, we have decided to launch a biofuel-focused project. To create the alcohols, we developed alcohol-resistant strains of E. coli through artificial selection. We are also using PCR to amplify and ligate the genes GlmZ, GlmY, and IlmV, which are used in native alcohol production. The combination of these genes and the alcohol resistant strains are the first steps in our new biofuels project.  
 +
                    </p>
 +
                </div>
 +
                <div class="col-1-2">
 +
                    <a href="https://2014.igem.org/Team:Gaston_Day_School/cadmiumdetector#cadmiumdetector">
 +
                        <h2 id="head">Cadmium Detector</h2>
 +
                    </a>
 +
                    <p class="show" id="pad">
 +
                        The surrounding areas of Duke Energy’s Buck Steam Station have unintentionally been affected with millions of tons of coal ash containing multiple toxic chemicals including cadmium. The release of this ash has caused the water to become a hazardous with the potential to cause a wide range of health issues: flu-like symptoms, kidney damage,  fragile bones, and possibly death through prolonged exposure. To minimize the damage caused by cadmium in water both locally and globally, our 2012 team created several heavy metal detectors, but in 2013 we decided to concentrate on the cadmium detector. The detector responds to the presence of cadmium with green fluorescence. Next, the team worked to increase the sensitivity levels of our detector. Our detector needed to be able to respond to cadmium at low enough levels that the detection would be useful and the presence of cadmium would not already be apparent. This year, we completed the addition of the 2007 Cambridge team's sensitivity tuners to our detector. The sensitivity tuners amplify the signal received by the detector. At the end of last year, after adding the sensitivity tuners, we began to see indications of a peak at lower levels of cadmium than we had previously thought. To define that peak, we used test points that were closer together. We discovered a peak of fluorescence and identified our detection points.
 +
                    </p>
 +
                </div>
 +
            </div>
 +
        </div>
 +
       
 +
<div class="col-1-10">
 +
<p class="hide" id="pad"></p>
 +
</div>
</body>
</body>
</html>
</html>

Latest revision as of 01:35, 18 October 2014

Development of Tools for the Switch to Isobutanol as a Biofuel

>Home

Founded in 1967, Gaston Day School is a non-sectarian, college preparatory institution for grades Pre-K through 12. Throughout its history, nearly 100% of Gaston Day School's graduating classes have entered four-year colleges and universities. Located in Gastonia, North Carolina, the school serves communities in a five-county area: Gaston, Lincoln, Cleveland, Mecklenburg and York counties. Enrollment is approximately five hundred students. Gaston Day School is accredited by the Southern Association of Colleges and Schools. The school is a member of the Southern Association of Independent Schools, the National Association of Independent Schools, and the North Carolina Association of Independent Schools.The students on the team are in grades 10-12, and each member has completed (or is currently enrolled in) Honors Biology, Honors Chemistry, Honors Physics, AP Biology, AP Chemistry, AP Physics or some combination thereof.

There are several issues in the switch from petroleum to alternative fuels. One problem the world faces is what to do with existing wastes such as leaking coal ash ponds. Another issue is the efficient production of an alcohol that is effective as a fuel, easy and inexpensive to produce, and will function within the current infrastructure. This year, we improved the sensitivity of our cadmium detector using sensitivity tuners. We are developing a strain of E. coli resistant to isobutanol, and we are cloning GlmY, GlmZ, and IlvM which are genes involved in the isobutanol production pathway. Addition of sensitivity tuners has improved the cadmium detector approximately four-fold, from 10mM to 2.5mM, which is still over the federal limit. The isobutanol resistant strain of E. coli can tolerate three times as much isobutanol as the original strain. Finally, we have successfully isolated the GlmZ coding region and have cloned it into the BioBrick vector.

The rising cost of petroleum, coupled with the environmental concerns that go with its use, have led to a recent increase in biofuel research. Developments in using bacteria to produce biofuels such as isobutanol and ethanol have come with this research. These alcohols are favored because they can easily be swapped into our current infrastructure of car and truck engines. At Gaston Day School, we have decided to launch a biofuel-focused project. To create the alcohols, we developed alcohol-resistant strains of E. coli through artificial selection. We are also using PCR to amplify and ligate the genes GlmZ, GlmY, and IlmV, which are used in native alcohol production. The combination of these genes and the alcohol resistant strains are the first steps in our new biofuels project.

The surrounding areas of Duke Energy’s Buck Steam Station have unintentionally been affected with millions of tons of coal ash containing multiple toxic chemicals including cadmium. The release of this ash has caused the water to become a hazardous with the potential to cause a wide range of health issues: flu-like symptoms, kidney damage, fragile bones, and possibly death through prolonged exposure. To minimize the damage caused by cadmium in water both locally and globally, our 2012 team created several heavy metal detectors, but in 2013 we decided to concentrate on the cadmium detector. The detector responds to the presence of cadmium with green fluorescence. Next, the team worked to increase the sensitivity levels of our detector. Our detector needed to be able to respond to cadmium at low enough levels that the detection would be useful and the presence of cadmium would not already be apparent. This year, we completed the addition of the 2007 Cambridge team's sensitivity tuners to our detector. The sensitivity tuners amplify the signal received by the detector. At the end of last year, after adding the sensitivity tuners, we began to see indications of a peak at lower levels of cadmium than we had previously thought. To define that peak, we used test points that were closer together. We discovered a peak of fluorescence and identified our detection points.