Team:Tec-Monterrey/microcongreso

From 2011.igem.org

(Difference between revisions)
 
(30 intermediate revisions not shown)
Line 1: Line 1:
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<html xmlns="http://www.w3.org/1999/xhtml"><head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
 +
 +
<title>wiki</title>
<title>wiki</title>
<style type="text/css">
<style type="text/css">
<!--
<!--
#top-section {
#top-section {
-
  background-color: #ffffff;
+
      height: 100px;
-
  height: 100px;
+
   border: none;
   border: none;
-
 
   height:20px
   height:20px
}
}
Line 15: Line 15:
   position: absolute;
   position: absolute;
   display: none;
   display: none;
-
   background-color:#000000;
+
    
 +
}
 +
#footer-box {
 +
display:none;
 +
}
 +
 
 +
 
 +
#catlinks {
 +
    display:none;
}
}
#search-controls {
#search-controls {
   display: none;
   display: none;
-
}
 
-
  #menubar.left-menu {
 
-
  position: absolute;
 
-
  top:0px;
 
-
  left:0px;
 
-
  display:none; 
 
}
}
-
#menubar.right-menu {
+
#menubar { background: none repeat transparent; }
-
  background-color: #FFFFFF;
+
 
-
  position: absolute;
+
 
-
  top:0px;
+
#menubar ul li a { color: white; }
-
  right:0px;
+
-
}
 
.right-menu li a {
.right-menu li a {
-
    background-color: #FFFFFF;
+
color: black;
-
    color: #002BB8;
+
background: none repeat transparent;
-
    padding: 0 15px 0 0;
+
-
}
+
-
.left-menu li a {
+
-
    background-color: #FFFFFF;
+
-
    color: #002BB8;
+
-
    padding: 0 15px 0 0;
+
}
}
 +
#content {
 +
    background: none repeat scroll 0 0 transparent;
 +
    border-left: 0 solid;
 +
    border-right: 0 solid;
 +
}
 +
#content{
 +
    width: 80%;
 +
}
#headover ul{
#headover ul{
Line 60: Line 62:
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/4/43/Lefondoleposter.png);
 +
        background-repeat:no-repeat;
 +
      background-size: 100%;
margin: 0;
margin: 0;
padding: 0;
padding: 0;
margin-left: 10%;
margin-left: 10%;
margin-right: 10%;
margin-right: 10%;
-
color: #013469;
+
color: #FFFFF;
}
}
/* ~~ 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 96:
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: 100%;
-
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;
+
overflow: hidden;  
-
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%. */
+
  color:#FFF;
-
overflow: hidden; /* this declaration makes the .container clear all floated columns within it. */
+
}
}
-
/* ~~ 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;
-
width: 20%;
+
width: 15%;
-
background: #FFF;
+
        padding-bottom: 10px;
-
padding-bottom: 10px;
+
background-color:#04191d;
 +
-moz-border-radius: 8px;
 +
-webkit-border-radius: 8px;
}
}
.content {
.content {
-
padding: 10px 0;
+
padding: none;
width: 80%;
width: 80%;
float: left;
float: left;
-
background: #FFF;
+
}
}
-
/* ~~ 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:none;  
-
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: 0px solid #04191d;  
 +
 
}
}
-
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;
+
color:#FFF;
-
color:#013469;;
+
}
}
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {  
ul.nav a:hover, ul.nav a:active, ul.nav a:focus {  
-
background: #f6af1b; /*float amarillo*/
+
background: #339dff; /*float amarillo*/
color: #FFF;
color: #FFF;
}
}
-
/* ~~miscellaneous float/clear classes~~ */
+
.frame {
-
.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. */
+
font:12px arial;
 +
width:700;
 +
height:350;
 +
max-height: 350px;
 +
border:none;
 +
overflow:auto;
 +
border:0px solid black;
 +
padding:5;
 +
}
 +
.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 185:
.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: #FFF;
}
}
 +
 +
 +
table {
 +
    background: none repeat scroll 0 0 transparent}
 +
/* panel heading */
/* panel heading */
.panel h2, .panelcollapsed h2  
.panel h2, .panelcollapsed h2  
{
{
 +
        color: #FFF;
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;
 +
border-bottom: 0px solid #04191d;
 +
}
}
/* panel heading on rollover */
/* panel heading on rollover */
.panel h2:hover, .panelcollapsed h2:hover {
.panel h2:hover, .panelcollapsed h2:hover {
-
background-color: #FC3;
+
background-color: #339dff;
color: #FFF;
color: #FFF;
}
}
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 236: Line 250:
<!--
<!--
-
function changeImg(n) {
+
 
-
+
 
-
//url goes here
+
 
-
var imgname = new Array();
+
i = 0
-
imgname[0] = "/a.jpg";
+
var speed = 10
-
imgname[1] = "/b.jpg";
+
 
-
imgname[2] = "/c.jpg";
+
function scrollDown() {
-
imgname[3] = "/d.jpg";
+
i = i + speed
-
imgname[4] = "/e.jpg";
+
var div = document.getElementById("frame1")
-
+
div.scrollTop = i
-
var name = imgname[n];
+
if (i > div.scrollHeight - 300) {i = 350}
-
document.getElementById('imagered').src=name;
+
t1=setTimeout("scrollDown()",100)
}
}
 +
function scrollUp() {
 +
i = i - speed
 +
var div = document.getElementById("frame1")
 +
div.scrollTop = i
 +
if (i < 0) {i = 0}
 +
t1=setTimeout("scrollUp()",100)
 +
}
 +
 +
// -----------------------------------------------------------------------------------------------
// -----------------------------------------------------------------------------------------------
Line 336: Line 359:
var direction = (!expanding ? -1 : 1);
var direction = (!expanding ? -1 : 1);
 +
if (direction > 0)
 +
collapseAll();
setTimeout(function(){animateStep(panelContent,1,stepHeight,direction)}, PANEL_ANIMATION_DELAY);
setTimeout(function(){animateStep(panelContent,1,stepHeight,direction)}, PANEL_ANIMATION_DELAY);
}
}
Line 451: Line 476:
</script>
</script>
-
</head><body>
+
</head>
-
 
+
<body>
<div class="container">
<div class="container">
   
   
<div class="topbar">  
<div class="topbar">  
-
     <div style="background-color:#FFF;">
+
     <div style="filter:alpha(opacity=70);opacity:.7;">
-
 
+
   
-
<!--this will hold the search bar languages and logos -->
+
 
-
    <p> <img src="https://static.igem.org/mediawiki/igem.org/2/20/Logotec.png" alt="ITESM" name="teclogo" width="146" height="52" id="teclogo">  
+
<img src="https://static.igem.org/mediawiki/2011/2/20/Logotec.png" alt="ITESM" name="teclogo" width="146" height="52" id="teclogo">  
-
    <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/2011/7/73/Logoigemsmall.png" alt="iGEM" name="logoigem" width="70" height="61" id="logoigem"></a>
-
</div>  
+
    <p>&nbsp;</p>
-
+
    <p>&nbsp;</p>
-
+
  </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 499:
     <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/video">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/stepbystep">step by step</a></p>
            
            
          
          
Line 486: Line 512:
   <h2>PROJECT</h2>
   <h2>PROJECT</h2>
     <div class="panelcontent" style="">
     <div class="panelcontent" style="">
-
<p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectdescription">description</a></p>
+
   
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">parts</a></p>
+
              <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectoverview">overview</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">modeling</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectparts">parts</a></p>
 +
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectmodeling">genetic frame</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectresults/methods">methods</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectresults">results</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/teamha">human approach</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectprotocols">protocols</a><p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/safetypage">safety</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/safetypage">safety</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">notebook</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/projectnotebook">notebook</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">results</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/sampledata">sample data</a></p>
-
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey">achievements</a></p>
+
          </div>
-
    </div>
+
</div>
</div>
       </li>
       </li>
Line 502: Line 532:
   <h2>TEAM</h2>
   <h2>TEAM</h2>
     <div class="panelcontent">
     <div class="panelcontent">
-
<p><a href="https://2011.igem.org/Team:Tec-Monterrey">members</a></p>
+
 
-
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey">gallery</a></p>
+
    <p><a href="https://2011.igem.org/Team:Tec-Monterrey/teammembers">members</a></p>
-
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey">profile</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/teaminstallations">headquarters</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">installations</a></p>
+
-
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey">human approach</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/microcongreso">micro congress</a></p>
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/microcongreso">micro congress</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">friends</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/teamfriends">friends</a></p>
-
    </div>
+
</div>
</div>
</div>
-
       </li><li>
+
       </li>
 +
  <li>
       <div class="panelcollapsed">
       <div class="panelcollapsed">
-
  <h2>EXTRAS</h2>
+
        <h2>EXTRAS</h2>
     <div class="panelcontent">
     <div class="panelcontent">
-
<p><a href="https://2011.igem.org/Team:Tec-Monterrey">site map</a></p>
+
<p><a href="https://2011.igem.org/Team:Tec-Monterrey/sitemap">site map</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">sponsors</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/sponsorsplatinum">sponsors platinum</a></p>
-
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey">follow us!</a></p>
+
             <p><a href="https://2011.igem.org/Team:Tec-Monterrey/sponsorsgold">sponsors gold</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/sponsorssilver">sponsors silver</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/specialthanks">special thanks</a></p>
 +
            <p><a href="https://2011.igem.org/Team:Tec-Monterrey/followus">follow us!</a></p>
     </div>
     </div>
-
</div>
+
  </div>
       </li>
       </li>
     </ul>
     </ul>
-
     <p>&nbsp;</p>
+
      
-
    <p>&nbsp;</p>
+
-
    <p>&nbsp;</p>
+
-
<p>&nbsp;</p>
+
-
    <p>&nbsp;</p>
+
-
    <p>&nbsp;</p>
+
-
<p>&nbsp;</p>
+
-
<p>&nbsp;</p>
+
</div>
</div>
    
    
<div class="content">
<div class="content">
-
  <!--in sub pages, this divisions should be comments! :D-->
+
<div style="  
-
 
+
text-align:center;">
-
  <div class="banner">
+
-
       
+
-
    <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>
+
-
   
+
-
    </div>
+
-
   
+
-
  </div> 
+
   
   
-
 
+
<!--in sub pages, this divisions should be comments! :D-->
 +
        <div style="
 +
padding:25px 50px;
 +
background-color:#04191d;
 +
color:#333;
 +
text-align:left;
 +
margin:5px 30px;">
 +
 +
</head>
 +
 
 +
<body>
 +
<div align="justify">
 +
<div style="-moz-border-radius: 4px;-webkit-border-radius: 4px;">
 +
<div class="frame" id="frame1" style="background-color:#e5e5e5;">
 +
<br>
      
      
-
 
+
<center> 
-
 
+
<br>
-
 
+
 
-
    <div class="contenido">  
+
<center><img src="https://static.igem.org/mediawiki/2011/7/7b/Microcongress01.png" alt="" name="" width="300" height="50" id="tgo"> </center>
-
       
+
 
-
    <div style="  
+
-
  text-align: center;
+
<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>
-
  background:url(https://static.igem.org/mediawiki/igem.org/e/ec/Topquicklink.png);
+
</center>
-
  background-repeat:no-repeat;
+
 
-
        background-position:top;
+
<br>
-
  background-color:#FFF;">
+
     <p class="textojustif"> 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>
-
   
+
<br>
-
    <p>1st MICRO CONGRESS iGEM 2011</p>
+
<p class="textojustif">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>&nbsp;</p>
+
<br>
-
    <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>
+
<center>
-
     <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><img src="https://static.igem.org/mediawiki/2011/4/4b/Photocongreso01.png" alt="teamphoto" name="teamphoto" width="350" height="240" id="teamphoto" /></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>
+
</center>
-
<p><img src="https://static.igem.org/mediawiki/2011/4/4b/Photocongreso01.png" alt="teamphoto" name="teamphoto" width="400" height="271" id="teamphoto" /></p>
+
  <br>
-
    <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>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 />
+
     <br/>
-
      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><b>Tec Monterrey</b> - Instituto Tecnológico y de Estudios Superiores de Monterrey, Campus Monterrey,from Monterrey, Nuevo León, México. </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><b>UANL Mty. Mexico</b> - 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 - Instituto Tecnológico y de Estudios Superiores de Monterrey, Campus Querétaro. </p>
+
     <p><b>ITESM Mexico City</b> - 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">UNAM-Genomics_México - Center for Genomic Sciences, Universidad Nacional Autónoma de México (UNAM).</p>
+
     <p><b>ITESM_Mexico</b> - Instituto Tecnológico y de Estudios Superiores de Monterrey, Campus Querétaro. </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 class="justtext"><b>UNAM-Genomics_Mexico</b> - Center for Genomic Sciences, Universidad Nacional Autónoma de México (UNAM).</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 />
+
 
 +
<br>
 +
<center>
 +
<p><img src="https://static.igem.org/mediawiki/2011/9/96/Photocongreso04.png" alt="centrobiotecnologia" name="imagetec" width="350" height="270" id="imagetec" /></p>
 +
</center>
 +
<br>
 +
    <p> In order to meet the other 4 Mexican teams and talk about common problems that had arisen along the competition, we organized the &quot;First Micro Congress iGEM&quot;, this June 3 and 4. This event was held at <b>Tec de Monterrey, Campus Monterrey</b>. </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 />
+
<br>
-
  </p>
+
<center>
-
    <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><img src="https://static.igem.org/mediawiki/2011/9/92/Photocongreso03.png" alt="photo" name="photo" width="350" height="242" id="photo" /><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 />
+
</center>
 +
<br>
 +
<p><b>PhD. Manuel Zertuche</b>, Director of the School of Biotechnology, inaugurated the event, and conveyed the best wishes for the event. <br />
 +
<br>
 +
       The <b>Master in Science Sergio Garcia</b>, 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. He also presented the paper &quot;Expression and purification of Deschampsia antarctica peroxidedismutase <i>E. coli</i>".<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 />
+
<br>
 +
     <p class="justtext"> <b>PhD. Jorge Benavides</b>, 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 Engineering 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 />
+
<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>
+
     <p class="justtext"><b>Manuel Tiscareño</b> 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">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 />
+
<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 />
+
       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>
-
       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 />
+
<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 />
 +
<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 />
 +
<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 />
+
<br>
 +
<br>
 +
     <p class="justtext"> Regarding the visit to the <b>FEMSA Biotechnology Center</b>, 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 />
+
<br>
 +
     <p class="justtext"><span class="justtext">That night, the teams visited the restaurant <b>Sierra Madre Brewing Co.</b>. 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>
+
<br>
-
     <p><br />
+
<center>
-
      <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><img src="https://static.igem.org/mediawiki/2011/c/c8/Photocongress05.png" alt="photo2" name="photo2" width="350" height="270" id="photo2" /></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>
-
     <p><img src="https://static.igem.org/mediawiki/2011/2/28/Photocongreso06.png" alt="photo3" name="photo3" width="515" height="303" id="photo3" /><br />
+
</center>
 +
<br />
 +
 
 +
<br>
 +
    <p class="textojustif">The next day began with a talk by <b>PhD. Jose Manuel Aguilar</b>, 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.</p>
 +
<br>
 +
  <p class="justtext"><b>Adán López</b> 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>
 +
 
 +
<br>
 +
<center>
 +
     <p><img src="https://static.igem.org/mediawiki/2011/2/28/Photocongreso06.png" alt="photo3" name="photo3" width="350" height="230" 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>
+
</center>
-
     <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>
+
<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><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"><b>PhD Guy Cardineau</b>, Plant Molecular Biology Specialist.<br />
 +
       <b>PhD Elsy Molina</b>, who has taught courses in Plant Physiology, General Genetics, Biology, Science, Ecology and Sustainable Development, Biostatistics and Experimental Design. </p>
 +
     <p class="justtext"><b>PhD Francisco Serrano</b>, 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 />
+
<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>
+
     <p class="justtext"> We thank <b>PhD. Marco Antonio Rito</b>, our project instructor, and ITESM Biotechnology department, for all the support that has given to us. <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 />
+
<br>
 +
We also would like to thank our sponsors <b>Promega</b>, <b>Uniparts</b>, <b>AgroBio</b>, <b>Accura Monterrey</b>, and <b>IECSA</b> for giving us a chance to participate in iGEM 2011. </p>
 +
<br>
 +
 
 +
<center>
 +
     <p><img src="https://static.igem.org/mediawiki/2011/3/3c/Photocongreso07.png" alt="photo4" name="photo4" width="350" height="190" id="photo4" /><br />
     </p>
     </p>
-
    <p>      <br />
+
</center>
-
      <br />
+
-
    </p>
+
-
    </div> 
+
-
 
+
-
 
+
-
 
+
-
  <!--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>
+
-
  <!-- end .container --></div>
+
-
</div></div></body></html>
+
<br></p>
 +
</p>
 +
 
 +
 
 +
 
 +
</div>
 +
<hr>
 +
<br/>
 +
<input type="button" value="  Up  " onmouseover="scrollUp()" onmouseout="clearTimeout(t1)">
 +
<input type="button" value=" Down " onmouseover="scrollDown()" onmouseout="clearTimeout(t1)">
 +
</div></body></html>

Latest revision as of 21:19, 20 October 2011

wiki

iGEM

 

 



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 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_Mexico - 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 had 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. He 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 Engineering 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