Team:Tec-Monterrey/microcongreso

From 2011.igem.org

(Difference between revisions)
Line 25: Line 25:
   top:0px;
   top:0px;
   left:0px;
   left:0px;
-
  display:none;    
+
    
}
}
Line 39: Line 39:
     background-color: #FFFFFF;
     background-color: #FFFFFF;
     color: #002BB8;
     color: #002BB8;
-
     padding: 0 15px 0 0;
+
     padding: 0 10px 0 0;
 +
    text-decoration:none
 +
}
 +
.right-menu:hover a {
 +
    color: #002BB8;
 +
}
 +
.right-menu li a:hover {
 +
    color: #AAAAFF;
 +
    text-decoration:none
 +
}
 +
.left-menu:hover{
 +
background-color: #FFFFFF;
 +
 
}
}
.left-menu li a {
.left-menu li a {
     background-color: #FFFFFF;
     background-color: #FFFFFF;
     color: #002BB8;
     color: #002BB8;
-
     padding: 0 15px 0 0;
+
     padding: 0 10px 0 0;
 +
    text-decoration:none
 +
}
 +
 
 +
.left-menu:hover a {
 +
    color: #002BB8;
 +
}
 +
.left-menu li a:hover {
 +
    color: #AAAAFF;
}
}
Line 60: Line 80:
body {
body {
-
font: 11px Tahoma, Geneva, sans-serif;
+
font: 12px Tahoma, Geneva, sans-serif;
background-image: url(https://static.igem.org/mediawiki/2011/f/f4/Fondo03.png);
background-image: url(https://static.igem.org/mediawiki/2011/f/f4/Fondo03.png);
margin: 0;
margin: 0;
Line 70: Line 90:
/* ~~ Element/tag selectors ~~ */
/* ~~ Element/tag selectors ~~ */
-
ul, ol, dl { /* Due to variations between browsers, it's best practices to zero padding and margin on lists. For consistency, you can either specify the amounts you want here, or on the list items (LI, DT, DD) they contain. Remember that what you do here will cascade to the .nav list unless you write a more specific selector. */
+
ul, ol, dl {
padding: 0;
padding: 0;
margin: 0;
margin: 0;
}
}
h1, h2, h3, h4, h5, h6, p {
h1, h2, h3, h4, h5, h6, p {
-
margin-top: 0; /* removing the top margin gets around an issue where margins can escape from their containing div. The remaining bottom margin will hold it away from any elements that follow. */
+
margin-top: 0;
padding-right: 10px;
padding-right: 10px;
-
padding-left: 10px; /* adding the padding to the sides of the elements within the divs, instead of the divs themselves, gets rid of any box model math. A nested div with side padding can also be used as an alternate method. */
+
padding-left: 10px;  
}
}
-
a img { /* this selector removes the default blue border displayed in some browsers around an image when it is surrounded by a link */
+
a img {  
border: none;
border: none;
}
}
-
/* ~~ Styling for your site's links must remain in this order - including the group of selectors that create the hover effect. ~~ */
+
 
a:link {
a:link {
-
text-decoration: underline; /* unless you style your links to look extremely unique, it's best to provide underlines for quick visual identification */
+
color: #F90;
color: #F90;
}
}
Line 92: Line 112:
text-decoration: underline;
text-decoration: underline;
}
}
-
a:hover, a:active, a:focus { /* this group of selectors will give a keyboard navigator the same hover experience as the person using a mouse. */
+
a:hover, a:active, a:focus {  
text-decoration: none;
text-decoration: none;
}
}
-
/* ~~ this container surrounds all other divs giving them their percentage-based width ~~ */
+
 
.container {
.container {
width: 90%;
width: 90%;
-
max-width: 1260px;/* a max-width may be desirable to keep this layout from getting too wide on a large monitor. This keeps line length more readable. IE6 does not respect this declaration. */
+
max-width: 1260px;
-
min-width: 780px;/* a min-width may be desirable to keep this layout from getting too narrow. This keeps line length more readable in the side columns. IE6 does not respect this declaration. */
+
min-width: 780px;
background: #FFF;
background: #FFF;
-
margin: 0 auto; /* the auto value on the sides, coupled with the width, centers the layout. It is not needed if you set the .container's width to 100%. */
+
-
overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
+
overflow: hidden;  
 +
        color:#013469;
}
}
-
/* ~~ These are the columns for the layout. ~~
 
-
1) Padding is only placed on the top and/or bottom of the divs. The elements within these divs have padding on their sides. This saves you from any "box model math". Keep in mind, if you add any side padding or border to the div itself, it will be added to the width you define to create the *total* width. You may also choose to remove the padding on the element in the div and place a second div within it with no width and the padding necessary for your design.
 
-
 
-
2) No margin has been given to the columns since they are all floated. If you must add margin, avoid placing it on the side you're floating toward (for example: a right margin on a div set to float right). Many times, padding can be used instead. For divs where this rule must be broken, you should add a "display:inline" declaration to the div's rule to tame a bug where some versions of Internet Explorer double the margin.
 
-
 
-
3) Since classes can be used multiple times in a document (and an element can also have multiple classes applied), the columns have been assigned class names instead of IDs. For example, two sidebar divs could be stacked if necessary. These can very easily be changed to IDs if that's your preference, as long as you'll only be using them once per document.
 
-
 
-
4) If you prefer your nav on the right instead of the left, simply float these columns the opposite direction (all right instead of all left) and they'll render in reverse order. There's no need to move the divs around in the HTML source.
 
-
 
-
*/
 
.sidebar1 {
.sidebar1 {
float: left;
float: left;
Line 126: Line 137:
.content {
.content {
-
padding: 10px 0;
+
padding: 5px 0;
width: 80%;
width: 80%;
float: left;
float: left;
Line 132: Line 143:
}
}
-
/* ~~ This grouped selector gives the lists in the .content area space ~~ */
+
 
.content ul, .content ol {  
.content ul, .content ol {  
padding: 0 15px 15px 40px;
padding: 0 15px 15px 40px;
-
/* this padding mirrors the right padding in the headings and paragraph rule above. Padding was placed on the bottom for space between other elements on the lists and on the left to create the indention. These may be adjusted as you wish. */
 
}
}
-
/* ~~ The navigation list styles (can be removed if you choose to use a premade flyout menu like Spry) ~~ */
+
 
ul.nav {
ul.nav {
-
list-style: none; /* this removes the list marker */
+
list-style: none;  
-
border-top: 1px solid #666; /* this creates the top border for the links - all others are placed using a bottom border on the LI */
+
border-top: 0px solid #FFF;  
-
margin-bottom: 15px; /* this creates the space between the navigation on the content below */
+
margin-bottom: 15px;
}
}
ul.nav li {
ul.nav li {
-
border-bottom: 1px solid #FFF; /* this creates the button separation */
+
border-bottom: 1px solid #FFF;  
}
}
-
ul.nav a, ul.nav a:visited { /* grouping these selectors makes sure that your links retain their button look even after being visited */
+
ul.nav a, ul.nav a:visited {  
 +
 
padding: 5px 5px 5px 15px;
padding: 5px 5px 5px 15px;
-
display: block; /* this gives the link block properties causing it to fill the whole LI containing it. This causes the entire area to react to a mouse click. */
+
display: block;  
text-decoration: none;
text-decoration: none;
background: #FFF;
background: #FFF;
-
color:#013469;;
+
color:#013469;
}
}
Line 161: Line 172:
}
}
-
/* ~~miscellaneous float/clear classes~~ */
+
 
-
.fltrt {  /* this class can be used to float an element right in your page. The floated element must precede the element it should be next to on the page. */
+
.fltrt {   
float: right;
float: right;
margin-left: 8px;
margin-left: 8px;
}
}
-
.fltlft { /* this class can be used to float an element left in your page. The floated element must precede the element it should be next to on the page. */
+
.fltlft {  
float: left;
float: left;
margin-right: 8px;
margin-right: 8px;
}
}
-
.clearfloat { /* this class can be placed on a <br /> or empty div as the final element following the last floated div (within the #container) if the overflow:hidden on the .container is removed */
+
.clearfloat {  
clear:both;
clear:both;
height:0;
height:0;
Line 180: Line 191:
.panel, .panelcollapsed  
.panel, .panelcollapsed  
{
{
-
margin: 5px;
+
margin: 3px;
width: auto;
width: auto;
-moz-border-radius: 4px;
-moz-border-radius: 4px;
-webkit-border-radius: 4px;
-webkit-border-radius: 4px;
-
border-top-width: 1px;
+
border-top-width: 10px;
-
border-right-width: 1px;
+
border-right-width: 0px;
-
border-bottom-width: 1px;
+
border-bottom-width: 10px;
-
border-left-width: 1px;
+
border-left-width: 3px;
padding-bottom: 5px;
padding-bottom: 5px;
 +
        color: #013469;
}
}
Line 194: Line 206:
.panel h2, .panelcollapsed h2  
.panel h2, .panelcollapsed h2  
{
{
 +
        color: #013469;
font-weight: normal;
font-weight: normal;
margin: 0px;
margin: 0px;
-
padding: 4px;
+
padding: 0px;
-moz-border-radius: 3px;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
-webkit-border-radius: 3px;
 +
}
}
Line 219: Line 233:
{
{
overflow: hidden;
overflow: hidden;
-
font-size: 12px;
+
font-size: 14px;
}
}
Line 228: Line 242:
</style><!--[if lte IE 7]>
</style><!--[if lte IE 7]>
<style>
<style>
-
.content { margin-right: -1px; } /* this 1px negative margin can be placed on any of the columns in this layout with the same corrective effect. */
+
.content { margin-right: -1px; }
-
ul.nav a { zoom: 1; }  /* the zoom property gives IE the hasLayout trigger it needs to correct extra whiltespace between the links */
+
ul.nav a { zoom: 1; }   
</style>
</style>
<![endif]-->
<![endif]-->
Line 240: Line 254:
//url goes here
//url goes here
var imgname = new Array();
var imgname = new Array();
-
imgname[0] = "/a.jpg";
+
imgname[0] = "https://static.igem.org/mediawiki/2011/d/d0/Imagen1.png";
-
imgname[1] = "/b.jpg";
+
imgname[1] = "https://static.igem.org/mediawiki/2011/a/ad/Imagen2.png";
-
imgname[2] = "/c.jpg";
+
imgname[2] = "https://static.igem.org/mediawiki/2011/a/ac/Imagen3.png";
-
imgname[3] = "/d.jpg";
+
imgname[3] = "https://static.igem.org/mediawiki/2011/c/c5/Imagen4.png";
-
imgname[4] = "/e.jpg";
+
imgname[4] = "https://static.igem.org/mediawiki/2011/9/9e/Imagen5.png";
var name = imgname[n];
var name = imgname[n];
Line 462: Line 476:
     <a href="https://2011.igem.org/Main_Page"><img src="https://static.igem.org/mediawiki/igem.org/7/73/Logoigemsmall.png" alt="iGEM" name="logoigem" width="70" height="61" id="logoigem"></a> </p>
     <a href="https://2011.igem.org/Main_Page"><img src="https://static.igem.org/mediawiki/igem.org/7/73/Logoigemsmall.png" alt="iGEM" name="logoigem" width="70" height="61" id="logoigem"></a> </p>
  </div>  
  </div>  
-
+
 
-
+
   <div class="sidebar1">
   <div class="sidebar1">
     <ul class="nav">
     <ul class="nav">
       <p>&nbsp;</p>
       <p>&nbsp;</p>
-
       <!--this is our menu! D: hurrfff durrff herpa derpa-->
+
       <!--this is our menu! D: -->
       <li>
       <li>
       <div class="panelcollapsed">
       <div class="panelcollapsed">
Line 473: Line 486:
     <div class="panelcontent" style="">
     <div class="panelcontent" style="">
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">home</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">home</a></p>
-
<p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectdescription">abstract</a></p>
+
    <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectdescription">abstract</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">videos</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">videos</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">step by step</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">step by step</a></p>
Line 538: Line 551:
          
          
     <div style="text-align: right;background-color:#FFF;">
     <div style="text-align: right;background-color:#FFF;">
-
    <p>&nbsp;</p>
 
     <p><a href="https://2011.igem.org/Team:Tec-Monterrey"><img src="https://static.igem.org/mediawiki/igem.org/4/4f/Renderbanner2.png" alt="tec monterrey 2011" name="banner" width="513" height="155" id="banner"></a></p>
     <p><a href="https://2011.igem.org/Team:Tec-Monterrey"><img src="https://static.igem.org/mediawiki/igem.org/4/4f/Renderbanner2.png" alt="tec monterrey 2011" name="banner" width="513" height="155" id="banner"></a></p>
      
      
Line 544: Line 556:
      
      
   </div>   
   </div>   
-
+
 
-
 
+
-
   
+
-
 
+
-
 
+
    
    
     <div class="contenido">  
     <div class="contenido">  
          
          
     <div style="  
     <div style="  
-
   text-align: center;
+
   text-align: justify;
   background:url(https://static.igem.org/mediawiki/igem.org/e/ec/Topquicklink.png);
   background:url(https://static.igem.org/mediawiki/igem.org/e/ec/Topquicklink.png);
   background-repeat:no-repeat;
   background-repeat:no-repeat;
Line 564: Line 572:
     <p><img src="https://static.igem.org/mediawiki/2011/8/85/Photocongreso02.png" alt="micro congress logo" name="microcongress" width="243" height="187" id="microcongress" /></p>
     <p><img src="https://static.igem.org/mediawiki/2011/8/85/Photocongreso02.png" alt="micro congress logo" name="microcongress" width="243" height="187" id="microcongress" /></p>
     <p class="justtext">Synthetic biology has begun an era of creation and development of new and better biological systems that, through engineering, seek to modify the natural behavior of living microorganisms such as bacteria, fungi and yeasts to make them perform tasks that are designed to create high value-added products with useful applications in industry, improving at the same time the life quality of people.</p>
     <p class="justtext">Synthetic biology has begun an era of creation and development of new and better biological systems that, through engineering, seek to modify the natural behavior of living microorganisms such as bacteria, fungi and yeasts to make them perform tasks that are designed to create high value-added products with useful applications in industry, improving at the same time the life quality of people.</p>
-
     <p class="justtext">iGEM ​​(International Genetically Engineered Machine) is a competition based on synthetic biology, presented by the MIT (Massachusetts Institute of Technology), that allows professional students work in the use of biological parts to build systems operated in living cells. This year it is expected the participation of 165 teams and over 1,700 students from America, Africa, Asia and Europe, from prestigious universities such as Imperial College of London, Harvard, Yale, Cambridge, among others. </p>
+
     <p class="justtext">iGEM ​​(International Genetically Engineered Machine) is a competition based on synthetic biology, presented by the MIT (Massachusetts Institute of Technology), that allows professional students work in the use of biological parts to build systems operated in living cells. This year it is expected the participation of 165 teams and over 1,700 students from America, Africa, Asia and Europe, from prestigious universities such as Imperial College of London, Harvard, Yale, Cambridge, among others. </p>
<p><img src="https://static.igem.org/mediawiki/2011/4/4b/Photocongreso01.png" alt="teamphoto" name="teamphoto" width="400" height="271" id="teamphoto" /></p>
<p><img src="https://static.igem.org/mediawiki/2011/4/4b/Photocongreso01.png" alt="teamphoto" name="teamphoto" width="400" height="271" id="teamphoto" /></p>
-
     <p class="justtext">The number of Mexican universities participating in the contest is increasing each year; for this competition it is expected the participation of 5 teams: </p>
+
     <p class="justtext">The number of Mexican universities participating in the contest is increasing each year; for this competition it is expected the participation of 5 teams: </p>
     <p class="justtext"><br />
     <p class="justtext"><br />
-
       Tec de Monterrey - Instituto Tecnológico y de Estudios Superiores de Monterrey, campus Monterrey,from Monterrey, Nuevo León, México. </p>
+
       Tec de Monterrey - Instituto Tecnológico y de Estudios Superiores de Monterrey, campus Monterrey,from Monterrey, Nuevo León, México. </p>
-
     <p class="justtext">UANL Mty. Mexico - School of Biological Sciences. Universidad Autónoma de Nuevo León from Monterrey, Nuevo León, México. UNAM, </p>
+
     <p class="justtext">UANL Mty. Mexico - School of Biological Sciences. Universidad Autónoma de Nuevo León from Monterrey, Nuevo León, México. UNAM, </p>
     <p class="justtext">ITESM Mexico City - Institute of Applied Mathematics and Institute of Cellular Physiology at the Universidad Nacional Autónoma de Mexico (UNAM) in conjunction with the ITESM campus Mexico.</p>
     <p class="justtext">ITESM Mexico City - Institute of Applied Mathematics and Institute of Cellular Physiology at the Universidad Nacional Autónoma de Mexico (UNAM) in conjunction with the ITESM campus Mexico.</p>
-
     <p class="justtext">      ITESM_Mexico - Instituto Tecnológico y de Estudios Superiores de Monterrey, Campus Querétaro. </p>
+
     <p class="justtext">      ITESM_Mexico - Instituto Tecnológico y de Estudios Superiores de Monterrey, Campus Querétaro. </p>
     <p class="justtext">UNAM-Genomics_México - Center for Genomic Sciences, Universidad Nacional Autónoma de México (UNAM).</p>
     <p class="justtext">UNAM-Genomics_México - Center for Genomic Sciences, Universidad Nacional Autónoma de México (UNAM).</p>
<p><img src="https://static.igem.org/mediawiki/2011/9/96/Photocongreso04.png" alt="centrobiotecnologia" name="imagetec" width="463" height="306" id="imagetec" /></p>
<p><img src="https://static.igem.org/mediawiki/2011/9/96/Photocongreso04.png" alt="centrobiotecnologia" name="imagetec" width="463" height="306" id="imagetec" /></p>
-
     <p> <span class="justtext">In order to meet the other 4 Mexican teams and talk about common problems that have arisen along the competition, we organized the &quot;First Micro Congress iGEM&quot;, this June 3 and 4. This event was held at Tec de Monterrey, campus Monterrey. </span><br />
+
     <p> <span class="justtext">In order to meet the other 4 Mexican teams and talk about common problems that have arisen along the competition, we organized the &quot;First Micro Congress iGEM&quot;, this June 3 and 4. This event was held at Tec de Monterrey, campus Monterrey. </span><br />
     </p>
     </p>
     <p><img src="https://static.igem.org/mediawiki/2011/9/92/Photocongreso03.png" alt="photo" name="photo" width="408" height="263" id="photo" /><br />
     <p><img src="https://static.igem.org/mediawiki/2011/9/92/Photocongreso03.png" alt="photo" name="photo" width="408" height="263" id="photo" /><br />
    </p>
    </p>
-
     <p><span class="justtext">PhD. Manuel Zertuche, Director of the School of Biotechnology, inaugurated the event, and conveyed the best wishes for the event. <br />
+
     <p><span class="justtext">PhD. Manuel Zertuche, Director of the School of Biotechnology, inaugurated the event, and conveyed the best wishes for the event. <br />
-
       The Master in Science Sergio Garcia, a Biologist from the Universidad Autónoma de Baja California delivered the first conference. He did his Masters in Molecular Biology at the Instituto Potosino  de Investigación Científica y Tecnológica. He is currently a PhD student at Tec de Monterrey, Campus Monterrey. He has worked in Molecular Phylogeny; design, production and purification of recombinant proteins and as an instructor for Tec de Monterrey iGEM teams 2010 and 2011. The conference showed the role of instructor in the iGEM team and some tips that will help teams improve their performance. Also presented the paper &quot;Expression and purification of Deschampsia antarctica peroxidedismutase E. coli&quot;.<br />
+
       The Master in Science Sergio Garcia, a Biologist from the Universidad Autónoma de Baja California delivered the first conference. He did his Masters in Molecular Biology at the Instituto Potosino  de Investigación Científica y Tecnológica. He is currently a PhD student at Tec de Monterrey, Campus Monterrey. He has worked in Molecular Phylogeny; design, production and purification of recombinant proteins and as an instructor for Tec de Monterrey iGEM teams 2010 and 2011. The conference showed the role of instructor in the iGEM team and some tips that will help teams improve their performance. Also presented the paper &quot;Expression and purification of Deschampsia antarctica peroxidedismutase E. coli&quot;.<br />
     </span></p>
     </span></p>
-
     <p class="justtext"> PhD. Jorge Benavides, Chemical Engineer from the Universidad Autónoma de Nuevo León, presented the second conference. He did his Masters in Biotechnology and a Ph.D. in Engineering Science with specialty in Biotechnology at the Tec de Monterrey, campus Monterrey. Member of the Research Chair in Bioprocess of ITESM. He specializes in the development of bioprocesses for the production, recovery and purification of biotechnological compounds of commercial interest, the proteomic characterization of crude extracts through combinatorial strategies and expression of heterologous proteins in recombinant expression systems. The conference was titled &quot;Trends and Applications of Biotechnology&quot;, where the means of separation, aqueous phases and some applications such as contact lenses, were discussed.<br />
+
     <p class="justtext"> PhD. Jorge Benavides, Chemical Engineer from the Universidad Autónoma de Nuevo León, presented the second conference. He did his Masters in Biotechnology and a Ph.D. in Engineering Science with specialty in Biotechnology at the Tec de Monterrey, campus Monterrey. Member of the Research Chair in Bioprocess of ITESM. He specializes in the development of bioprocesses for the production, recovery and purification of biotechnological compounds of commercial interest, the proteomic characterization of crude extracts through combinatorial strategies and expression of heterologous proteins in recombinant expression systems. The conference was titled &quot;Trends and Applications of Biotechnology&quot;, where the means of separation, aqueous phases and some applications such as contact lenses, were discussed.<br />
       </p>
       </p>
-
     <p class="justtext">Manuel Tiscareño presented the conference &quot;Importation of Biological Material to Mexico.&quot; He holds a degree in International Relations from the Universidad Autonoma de Nuevo León. He has served as Branch Assistant Manager of Kentucky Fried Chicken, and is currently manager of Customs Import and Export of FEDEX. This conference had great teachings on the importation of &quot;BioBricks&quot;: standard parts of genetic material with structure and function defined, necessary to make new biological systems. <br />
+
     <p class="justtext">Manuel Tiscareño presented the conference &quot;Importation of Biological Material to Mexico.&quot; He holds a degree in International Relations from the Universidad Autonoma de Nuevo León. He has served as Branch Assistant Manager of Kentucky Fried Chicken, and is currently manager of Customs Import and Export of FEDEX. This conference had great teachings on the importation of &quot;BioBricks&quot;: standard parts of genetic material with structure and function defined, necessary to make new biological systems. <br />
-
       Mr. Tiscareño taught us that cannot be imported, by courier and parcel companies, products falling within the criteria of &quot;difficult to identify&quot; such as dust, gases and liquids. They should be released through the following ways: </p>
+
       Mr. Tiscareño taught us that cannot be imported, by courier and parcel companies, products falling within the criteria of &quot;difficult to identify&quot; such as dust, gases and liquids. They should be released through the following ways: </p>
-
     <p class="justtext">Commit to a customs agent in the city for the release of the products into various points of entry. This agent classifies the package within the different areas of classification that exist in the Tax Administration System (SAT) and the Mexican customs laws. Depending on the physics characteristics, use and function that are present in the product, the package is classified. For example, the value of a pen with an integrated clock will depend on which is the main component, in order to be classified as office or as a decoration item. In this case it must be proportional to the broker's invoice product as well as having a detailed and formal description of it. <br />
+
     <p class="justtext">Commit to a customs agent in the city for the release of the products into various points of entry. This agent classifies the package within the different areas of classification that exist in the Tax Administration System (SAT) and the Mexican customs laws. Depending on the physics characteristics, use and function that are present in the product, the package is classified. For example, the value of a pen with an integrated clock will depend on which is the main component, in order to be classified as office or as a decoration item. In this case it must be proportional to the broker's invoice product as well as having a detailed and formal description of it. <br />
-
       Register with FedEx Custom Broker. This method of release of packages consists in a small amount of money included in the total cost of shipping a package sent by FedEx. This corresponds to an amount paid to a broker who is in each inner harbor where the parcel is located. It works like a broker customs, however it is possible that the broker can be busy due to the increase of problematic packages. <br />
+
       Register with FedEx Custom Broker. This method of release of packages consists in a small amount of money included in the total cost of shipping a package sent by FedEx. This corresponds to an amount paid to a broker who is in each inner harbor where the parcel is located. It works like a broker customs, however it is possible that the broker can be busy due to the increase of problematic packages. <br />
-
       Use a trading company. A person who is already expert in the field of importations can lend its name and create a trading company, although there could be problems of packet loss, theft of merchandise, etc. <br />
+
       Use a trading company. A person who is already expert in the field of importations can lend its name and create a trading company, although there could be problems of packet loss, theft of merchandise, etc. <br />
       Re-route the package to the American side border, to let a broker customs release the packages with the patent and charge conferred discharged by the ITESM.</p>
       Re-route the package to the American side border, to let a broker customs release the packages with the patent and charge conferred discharged by the ITESM.</p>
-
     <p class="justtext"> Regarding the visit to the FEMSA Biotechnology Center, Tec-Monterrey team was able to show to the attending teams the FEMSA Biotechnology Center, which is dedicated to generating research, transfer knowledge and design business models in biotechnology and food areas. It has the most innovative infrastructure equipment in laboratories, pilot plants and business incubators in the related areas. <br />
+
     <p class="justtext"> Regarding the visit to the FEMSA Biotechnology Center, Tec-Monterrey team was able to show to the attending teams the FEMSA Biotechnology Center, which is dedicated to generating research, transfer knowledge and design business models in biotechnology and food areas. It has the most innovative infrastructure equipment in laboratories, pilot plants and business incubators in the related areas. <br />
     </p>
     </p>
-
     <p class="justtext"><span class="justtext">That night, the teams visited the restaurant Sierra Madre Brewing Co.. This restaurant specializes in brewing within the same establishment and the menu caters to all tastes.</span><br />
+
     <p class="justtext"><span class="justtext">That night, the teams visited the restaurant Sierra Madre Brewing Co.. This restaurant specializes in brewing within the same establishment and the menu caters to all tastes.</span><br />
     </p>
     </p>
     <p><img src="https://static.igem.org/mediawiki/2011/c/c8/Photocongress05.png" alt="photo2" name="photo2" width="407" height="303" id="photo2" /></p>
     <p><img src="https://static.igem.org/mediawiki/2011/c/c8/Photocongress05.png" alt="photo2" name="photo2" width="407" height="303" id="photo2" /></p>
     <p><br />
     <p><br />
-
       <span class="justtext">The next day began with a talk by PhD. Jose Manuel Aguilar, who showed us the work: &quot;Design of recombinant antigens of A/H1N1/2009 influenza virus.&quot; PhD. José Manuel Aguilar is a biologist specialized in molecular biology and professor of Genetic Engineering and Proteins Engineering courses.</span></p>
+
       <span class="justtext">The next day began with a talk by PhD. Jose Manuel Aguilar, who showed us the work: &quot;Design of recombinant antigens of A/H1N1/2009 influenza virus.&quot; PhD. José Manuel Aguilar is a biologist specialized in molecular biology and professor of Genetic Engineering and Proteins Engineering courses.</span></p>
-
     <p class="justtext">      Adán López commissioned the second conference, to deliver the lecture              &quot;Project Management&quot;. This one will serve us greatly in the future because the recommendations Dr. López gave us about creating a Gantt diagram of an array of responsibilities and lifecycle of projects. He taught us that planning a project arises obvious time and material problems, which can be solved before reaching a big mess. </p>
+
     <p class="justtext">      Adán López commissioned the second conference, to deliver the lecture              &quot;Project Management&quot;. This one will serve us greatly in the future because the recommendations Dr. López gave us about creating a Gantt diagram of an array of responsibilities and lifecycle of projects. He taught us that planning a project arises obvious time and material problems, which can be solved before reaching a big mess. </p>
     <p><img src="https://static.igem.org/mediawiki/2011/2/28/Photocongreso06.png" alt="photo3" name="photo3" width="515" height="303" id="photo3" /><br />
     <p><img src="https://static.igem.org/mediawiki/2011/2/28/Photocongreso06.png" alt="photo3" name="photo3" width="515" height="303" id="photo3" /><br />
       </p>
       </p>
-
     <p><span class="justtext">Finally, we performed a bioethical PANEL aimed to discuss the bioethical implications involved in synthetic biology. This panel presented the following expositors: </span></p>
+
     <p><span class="justtext">Finally, we performed a bioethical PANEL aimed to discuss the bioethical implications involved in synthetic biology. This panel presented the following expositors: </span></p>
     <p class="justtext">PhD Guy Cardineau, Plant Molecular Biology Specialist.<br />
     <p class="justtext">PhD Guy Cardineau, Plant Molecular Biology Specialist.<br />
-
       PhD Elsy Molina, who has taught courses in Plant Physiology, General Genetics, Biology, Science, Ecology and Sustainable Development, Biostatistics and Experimental Design. </p>
+
       PhD Elsy Molina, who has taught courses in Plant Physiology, General Genetics, Biology, Science, Ecology and Sustainable Development, Biostatistics and Experimental Design. </p>
-
     <p class="justtext">      PhD Francisco Serrano, a PhD in Philosophy from the Universidad Complutense de Madrid. His doctoral thesis was based on the subject: &quot;Science, reality and method in the work of Linus Pauling.&quot; He is currently professor at ITESM and coordinator of scientific-technological perspective Campus Monterrey. He is the author of many studies on ethics and history of science among them includes the book: Molecular Biology. Philosophical issues and implications. The Panel moderator served the MC. Johari Salgado Gallegos, professor of Laboratory of Genetic Engineering. <br />
+
     <p class="justtext">      PhD Francisco Serrano, a PhD in Philosophy from the Universidad Complutense de Madrid. His doctoral thesis was based on the subject: &quot;Science, reality and method in the work of Linus Pauling.&quot; He is currently professor at ITESM and coordinator of scientific-technological perspective Campus Monterrey. He is the author of many studies on ethics and history of science among them includes the book: Molecular Biology. Philosophical issues and implications. The Panel moderator served the MC. Johari Salgado Gallegos, professor of Laboratory of Genetic Engineering. <br />
     </p>
     </p>
-
     <p class="justtext"> We thank PhD. Marco Antonio Rito, our project instructor, and ITESM Biotechnology department, for all the support that has given to us. <br />
+
     <p class="justtext"> We thank PhD. Marco Antonio Rito, our project instructor, and ITESM Biotechnology department, for all the support that has given to us. <br />
We also would like to thank our sponsors Promega, Uniparts, AgroBio, Accura Monterrey, and IECSA for giving us a chance to participate in iGEM 2011. </p>
We also would like to thank our sponsors Promega, Uniparts, AgroBio, Accura Monterrey, and IECSA for giving us a chance to participate in iGEM 2011. </p>
     <p><img src="https://static.igem.org/mediawiki/2011/3/3c/Photocongreso07.png" alt="photo4" name="photo4" width="532" height="291" id="photo4" /><br />
     <p><img src="https://static.igem.org/mediawiki/2011/3/3c/Photocongreso07.png" alt="photo4" name="photo4" width="532" height="291" id="photo4" /><br />
Line 615: Line 623:
    
    
    
    
-
   <!--uncomment this part in sub pages so you may edit properly-->
+
    
-
  <!--
+
-
  <h1>Instructions</h1>
+
-
<p>Be aware that the CSS for these layouts is heavily commented. If you do most of your work in Design view, have a peek at the code to get tips on working with the CSS for the liquid layouts. You can remove these comments before you launch your site. To learn more about the techniques used in these CSS Layouts, read this article at Adobe's Developer Center - <a href="http://www.adobe.com/go/adc_css_layouts">http://www.adobe.com/go/adc_css_layouts</a>.</p>
+
-
    <h2>Clearing</h2>
+
-
    <p>Because all the columns are floated, this layout uses overflow:hidden on the .container. This clearing technique forces the .container to understand where the columns end in order to show any borders or background colors you place on the .container. If you have a large element that protrudes outside the .container, it will appear to be cut off. You also won't be able to use negative margins or absolute positioning with negative values to pull elements outside the .container or they will also won't display outside the .container.</p>
+
-
    <p>If you need to use these properties, you'll need to use a different clearing method. The most reliable will be to add a &lt;br class=&quot;clearfloat&quot; /&gt; or &lt;div  class=&quot;clearfloat&quot;&gt;&lt;/div&gt; after your final floated column (but before the .container closes). This will have the same clearing effect.</p>
+
-
    <h3>Footer</h3>
+
-
    <p>Adding a footer following the columns, yet still inside the .container, will cause this overflow:hidden clearing method to fail. You can place a .footer into a second .container outside the first one with no detrimental effects. The simplest choice may be to start with a layout containing headers and footers and remove the header to utilize the clearing methods in that layout type.</p>
+
-
    <h4>Internet Explorer Conditional Comments</h4>
+
-
    <p>These liquid layouts contain an Internet Explorer Conditional Comment (IECC) to correct two issues. </p>
+
-
    <ol>
+
-
      <li>Browsers are inconsistent in the way they round div sizes in percent-based layouts. If the browser must render a number like 144.5px or 564.5px, they have to round it to the nearest whole number. Safari and Opera round down, Internet Explorer rounds up and Firefox rounds one column up and one down filling the container completely. These rounding issues can cause inconsistencies in some layouts. In this IECC there is a 1px negative margin to fix IE. You may move it to any of the columns (and on either the left or right) to suit your layout needs.</li>
+
-
      <li>The zoom property was added to the anchor within the navigation list since, in some cases, extra white space will be rendered in IE6 and IE7. Zoom gives IE its proprietary hasLayout property to fix this issue.</li>
+
-
    </ol>
+
-
    <h4>Backgrounds</h4>
+
-
    <p>By nature, the background color on any div will only show for the length of the content. This means if you're using a background color or border to create the look of a side column, it won't extend all the way to the footer but will stop when the content ends. If the .content div will always contain more content, you can place a border on the .content div to divide it from the column.end .content </p>-->
+
</div>
</div>
   <!-- end .container --></div>
   <!-- end .container --></div>

Revision as of 06:46, 14 July 2011

wiki

iGEM

1st MICRO CONGRESS iGEM 2011

 

micro congress logo

Synthetic biology has begun an era of creation and development of new and better biological systems that, through engineering, seek to modify the natural behavior of living microorganisms such as bacteria, fungi and yeasts to make them perform tasks that are designed to create high value-added products with useful applications in industry, improving at the same time the life quality of people.

iGEM ​​(International Genetically Engineered Machine) is a competition based on synthetic biology, presented by the MIT (Massachusetts Institute of Technology), that allows professional students work in the use of biological parts to build systems operated in living cells. This year it is expected the participation of 165 teams and over 1,700 students from America, Africa, Asia and Europe, from prestigious universities such as Imperial College of London, Harvard, Yale, Cambridge, among others.

teamphoto

The number of Mexican universities participating in the contest is increasing each year; for this competition it is expected the participation of 5 teams:


Tec de Monterrey - Instituto Tecnológico y de Estudios Superiores de Monterrey, campus Monterrey,from Monterrey, Nuevo León, México.

UANL Mty. Mexico - School of Biological Sciences. Universidad Autónoma de Nuevo León from Monterrey, Nuevo León, México. UNAM,

ITESM Mexico City - Institute of Applied Mathematics and Institute of Cellular Physiology at the Universidad Nacional Autónoma de Mexico (UNAM) in conjunction with the ITESM campus Mexico.

ITESM_Mexico - Instituto Tecnológico y de Estudios Superiores de Monterrey, Campus Querétaro.

UNAM-Genomics_México - Center for Genomic Sciences, Universidad Nacional Autónoma de México (UNAM).

centrobiotecnologia

In order to meet the other 4 Mexican teams and talk about common problems that have arisen along the competition, we organized the "First Micro Congress iGEM", this June 3 and 4. This event was held at Tec de Monterrey, campus Monterrey.

photo

PhD. Manuel Zertuche, Director of the School of Biotechnology, inaugurated the event, and conveyed the best wishes for the event.
The Master in Science Sergio Garcia, a Biologist from the Universidad Autónoma de Baja California delivered the first conference. He did his Masters in Molecular Biology at the Instituto Potosino de Investigación Científica y Tecnológica. He is currently a PhD student at Tec de Monterrey, Campus Monterrey. He has worked in Molecular Phylogeny; design, production and purification of recombinant proteins and as an instructor for Tec de Monterrey iGEM teams 2010 and 2011. The conference showed the role of instructor in the iGEM team and some tips that will help teams improve their performance. Also presented the paper "Expression and purification of Deschampsia antarctica peroxidedismutase E. coli".

PhD. Jorge Benavides, Chemical Engineer from the Universidad Autónoma de Nuevo León, presented the second conference. He did his Masters in Biotechnology and a Ph.D. in Engineering Science with specialty in Biotechnology at the Tec de Monterrey, campus Monterrey. Member of the Research Chair in Bioprocess of ITESM. He specializes in the development of bioprocesses for the production, recovery and purification of biotechnological compounds of commercial interest, the proteomic characterization of crude extracts through combinatorial strategies and expression of heterologous proteins in recombinant expression systems. The conference was titled "Trends and Applications of Biotechnology", where the means of separation, aqueous phases and some applications such as contact lenses, were discussed.

Manuel Tiscareño presented the conference "Importation of Biological Material to Mexico." He holds a degree in International Relations from the Universidad Autonoma de Nuevo León. He has served as Branch Assistant Manager of Kentucky Fried Chicken, and is currently manager of Customs Import and Export of FEDEX. This conference had great teachings on the importation of "BioBricks": standard parts of genetic material with structure and function defined, necessary to make new biological systems.
Mr. Tiscareño taught us that cannot be imported, by courier and parcel companies, products falling within the criteria of "difficult to identify" such as dust, gases and liquids. They should be released through the following ways:

Commit to a customs agent in the city for the release of the products into various points of entry. This agent classifies the package within the different areas of classification that exist in the Tax Administration System (SAT) and the Mexican customs laws. Depending on the physics characteristics, use and function that are present in the product, the package is classified. For example, the value of a pen with an integrated clock will depend on which is the main component, in order to be classified as office or as a decoration item. In this case it must be proportional to the broker's invoice product as well as having a detailed and formal description of it.
Register with FedEx Custom Broker. This method of release of packages consists in a small amount of money included in the total cost of shipping a package sent by FedEx. This corresponds to an amount paid to a broker who is in each inner harbor where the parcel is located. It works like a broker customs, however it is possible that the broker can be busy due to the increase of problematic packages.
Use a trading company. A person who is already expert in the field of importations can lend its name and create a trading company, although there could be problems of packet loss, theft of merchandise, etc.
Re-route the package to the American side border, to let a broker customs release the packages with the patent and charge conferred discharged by the ITESM.

Regarding the visit to the FEMSA Biotechnology Center, Tec-Monterrey team was able to show to the attending teams the FEMSA Biotechnology Center, which is dedicated to generating research, transfer knowledge and design business models in biotechnology and food areas. It has the most innovative infrastructure equipment in laboratories, pilot plants and business incubators in the related areas.

That night, the teams visited the restaurant Sierra Madre Brewing Co.. This restaurant specializes in brewing within the same establishment and the menu caters to all tastes.

photo2


The next day began with a talk by PhD. Jose Manuel Aguilar, who showed us the work: "Design of recombinant antigens of A/H1N1/2009 influenza virus." PhD. José Manuel Aguilar is a biologist specialized in molecular biology and professor of Genetic Engineering and Proteins Engineering courses.

Adán López commissioned the second conference, to deliver the lecture "Project Management". This one will serve us greatly in the future because the recommendations Dr. López gave us about creating a Gantt diagram of an array of responsibilities and lifecycle of projects. He taught us that planning a project arises obvious time and material problems, which can be solved before reaching a big mess.

photo3

Finally, we performed a bioethical PANEL aimed to discuss the bioethical implications involved in synthetic biology. This panel presented the following expositors:

PhD Guy Cardineau, Plant Molecular Biology Specialist.
PhD Elsy Molina, who has taught courses in Plant Physiology, General Genetics, Biology, Science, Ecology and Sustainable Development, Biostatistics and Experimental Design.

PhD Francisco Serrano, a PhD in Philosophy from the Universidad Complutense de Madrid. His doctoral thesis was based on the subject: "Science, reality and method in the work of Linus Pauling." He is currently professor at ITESM and coordinator of scientific-technological perspective Campus Monterrey. He is the author of many studies on ethics and history of science among them includes the book: Molecular Biology. Philosophical issues and implications. The Panel moderator served the MC. Johari Salgado Gallegos, professor of Laboratory of Genetic Engineering.

We thank PhD. Marco Antonio Rito, our project instructor, and ITESM Biotechnology department, for all the support that has given to us.
We also would like to thank our sponsors Promega, Uniparts, AgroBio, Accura Monterrey, and IECSA for giving us a chance to participate in iGEM 2011.

photo4